These are the most common methods for working with the API tutorial.
TutorialEssentialsApi tutorialEssentialsApi = client.getTutorialEssentialsApi();TutorialEssentialsApi
This method tests whether users who are working through the Getting Started guides have set up their configurations correctly.
CompletableFuture<ApiResponse<Void>> developerTutorialAsync()This endpoint requires oauth2_authorization_code OR oauth2_client_credentials
ai, create, delete, edit, email, interact, private, promo_codes, public, purchase, purchased, scim, stats, upload, video_files
ai, create, delete, edit, email, interact, private, promo_codes, public, purchase, purchased, scim, stats, upload, video_files
200
void
tutorialEssentialsApi.developerTutorialAsync().thenAccept(result -> {
// TODO success callback handler
System.out.println(result);
}).exceptionally(exception -> {
// TODO failure callback handler
exception.printStackTrace();
return null;
});