Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.4 KB

File metadata and controls

54 lines (33 loc) · 1.4 KB

Tutorial Essentials

These are the most common methods for working with the API tutorial.

TutorialEssentialsApi tutorialEssentialsApi = client.getTutorialEssentialsApi();

Class Name

TutorialEssentialsApi

Developer Tutorial

This method tests whether users who are working through the Getting Started guides have set up their configurations correctly.

CompletableFuture<ApiResponse<Void>> developerTutorialAsync()

Authentication

This endpoint requires oauth2_authorization_code OR oauth2_client_credentials

Requires scope

oauth2_authorization_code

ai, create, delete, edit, email, interact, private, promo_codes, public, purchase, purchased, scim, stats, upload, video_files

oauth2_client_credentials

ai, create, delete, edit, email, interact, private, promo_codes, public, purchase, purchased, scim, stats, upload, video_files

Response Type

200

void

Example Usage

tutorialEssentialsApi.developerTutorialAsync().thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});