Skip to content

getlate-dev/late-java

Repository files navigation

late-sdk

Late API

  • API version: 1.0.1

  • Build date: 2026-02-18T13:53:02.997955305Z[Etc/UTC]

  • Generator version: 7.19.0

API reference for Late. Authenticate with a Bearer API key. Base URL: https://getlate.dev/api

For more information, please visit https://getlate.dev

Automatically generated by the OpenAPI Generator

Requirements

Building the API client library requires:

  1. Java 11+
  2. Maven/Gradle

Installation

To install the API client library to your local Maven repository, simply execute:

mvn clean install

To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:

mvn clean deploy

Refer to the OSSRH Guide for more information.

Maven users

Add this dependency to your project's POM:

<dependency>
  <groupId>dev.getlate</groupId>
  <artifactId>late-sdk</artifactId>
  <version>1.0.1</version>
  <scope>compile</scope>
</dependency>

Gradle users

Add this dependency to your project's build file:

compile "dev.getlate:late-sdk:1.0.1"

Others

At first generate the JAR by executing:

mvn clean package

Then manually install the following JARs:

  • target/late-sdk-1.0.1.jar
  • target/lib/*.jar

Getting Started

Please follow the installation instruction and execute the following Java code:

import dev.getlate.*;
import dev.getlate.model.*;
import dev.getlate.api.AccountGroupsApi;

public class AccountGroupsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        // Configure clients using the `defaultClient` object, such as
        // overriding the host and port, timeout, etc.
        AccountGroupsApi apiInstance = new AccountGroupsApi(defaultClient);
        CreateAccountGroupRequest createAccountGroupRequest = new CreateAccountGroupRequest(); // CreateAccountGroupRequest | 
        try {
            CreateAccountGroup201Response result = apiInstance.createAccountGroup(createAccountGroupRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountGroupsApi#createAccountGroup");
            System.err.println("Status code: " + e.getCode());
            System.err.println("Reason: " + e.getResponseBody());
            System.err.println("Response headers: " + e.getResponseHeaders());
            e.printStackTrace();
        }
    }
}

Documentation for API Endpoints

All URIs are relative to https://getlate.dev/api

Class Method HTTP request Description
AccountGroupsApi createAccountGroup POST /v1/account-groups Create group
AccountGroupsApi createAccountGroupWithHttpInfo POST /v1/account-groups Create group
AccountGroupsApi deleteAccountGroup DELETE /v1/account-groups/{groupId} Delete group
AccountGroupsApi deleteAccountGroupWithHttpInfo DELETE /v1/account-groups/{groupId} Delete group
AccountGroupsApi listAccountGroups GET /v1/account-groups List groups
AccountGroupsApi listAccountGroupsWithHttpInfo GET /v1/account-groups List groups
AccountGroupsApi updateAccountGroup PUT /v1/account-groups/{groupId} Update group
AccountGroupsApi updateAccountGroupWithHttpInfo PUT /v1/account-groups/{groupId} Update group
AccountSettingsApi deleteInstagramIceBreakers DELETE /v1/accounts/{accountId}/instagram-ice-breakers Delete IG ice breakers
AccountSettingsApi deleteInstagramIceBreakersWithHttpInfo DELETE /v1/accounts/{accountId}/instagram-ice-breakers Delete IG ice breakers
AccountSettingsApi deleteMessengerMenu DELETE /v1/accounts/{accountId}/messenger-menu Delete FB persistent menu
AccountSettingsApi deleteMessengerMenuWithHttpInfo DELETE /v1/accounts/{accountId}/messenger-menu Delete FB persistent menu
AccountSettingsApi deleteTelegramCommands DELETE /v1/accounts/{accountId}/telegram-commands Delete TG bot commands
AccountSettingsApi deleteTelegramCommandsWithHttpInfo DELETE /v1/accounts/{accountId}/telegram-commands Delete TG bot commands
AccountSettingsApi getInstagramIceBreakers GET /v1/accounts/{accountId}/instagram-ice-breakers Get IG ice breakers
AccountSettingsApi getInstagramIceBreakersWithHttpInfo GET /v1/accounts/{accountId}/instagram-ice-breakers Get IG ice breakers
AccountSettingsApi getMessengerMenu GET /v1/accounts/{accountId}/messenger-menu Get FB persistent menu
AccountSettingsApi getMessengerMenuWithHttpInfo GET /v1/accounts/{accountId}/messenger-menu Get FB persistent menu
AccountSettingsApi getTelegramCommands GET /v1/accounts/{accountId}/telegram-commands Get TG bot commands
AccountSettingsApi getTelegramCommandsWithHttpInfo GET /v1/accounts/{accountId}/telegram-commands Get TG bot commands
AccountSettingsApi setInstagramIceBreakers PUT /v1/accounts/{accountId}/instagram-ice-breakers Set IG ice breakers
AccountSettingsApi setInstagramIceBreakersWithHttpInfo PUT /v1/accounts/{accountId}/instagram-ice-breakers Set IG ice breakers
AccountSettingsApi setMessengerMenu PUT /v1/accounts/{accountId}/messenger-menu Set FB persistent menu
AccountSettingsApi setMessengerMenuWithHttpInfo PUT /v1/accounts/{accountId}/messenger-menu Set FB persistent menu
AccountSettingsApi setTelegramCommands PUT /v1/accounts/{accountId}/telegram-commands Set TG bot commands
AccountSettingsApi setTelegramCommandsWithHttpInfo PUT /v1/accounts/{accountId}/telegram-commands Set TG bot commands
AccountsApi deleteAccount DELETE /v1/accounts/{accountId} Disconnect account
AccountsApi deleteAccountWithHttpInfo DELETE /v1/accounts/{accountId} Disconnect account
AccountsApi getAccountHealth GET /v1/accounts/{accountId}/health Check account health
AccountsApi getAccountHealthWithHttpInfo GET /v1/accounts/{accountId}/health Check account health
AccountsApi getAllAccountsHealth GET /v1/accounts/health Check accounts health
AccountsApi getAllAccountsHealthWithHttpInfo GET /v1/accounts/health Check accounts health
AccountsApi getFollowerStats GET /v1/accounts/follower-stats Get follower stats
AccountsApi getFollowerStatsWithHttpInfo GET /v1/accounts/follower-stats Get follower stats
AccountsApi listAccounts GET /v1/accounts List accounts
AccountsApi listAccountsWithHttpInfo GET /v1/accounts List accounts
AccountsApi updateAccount PUT /v1/accounts/{accountId} Update account
AccountsApi updateAccountWithHttpInfo PUT /v1/accounts/{accountId} Update account
AnalyticsApi getAnalytics GET /v1/analytics Get post analytics
AnalyticsApi getAnalyticsWithHttpInfo GET /v1/analytics Get post analytics
AnalyticsApi getFollowerStats GET /v1/accounts/follower-stats Get follower stats
AnalyticsApi getFollowerStatsWithHttpInfo GET /v1/accounts/follower-stats Get follower stats
AnalyticsApi getLinkedInAggregateAnalytics GET /v1/accounts/{accountId}/linkedin-aggregate-analytics Get LinkedIn aggregate stats
AnalyticsApi getLinkedInAggregateAnalyticsWithHttpInfo GET /v1/accounts/{accountId}/linkedin-aggregate-analytics Get LinkedIn aggregate stats
AnalyticsApi getLinkedInPostAnalytics GET /v1/accounts/{accountId}/linkedin-post-analytics Get LinkedIn post stats
AnalyticsApi getLinkedInPostAnalyticsWithHttpInfo GET /v1/accounts/{accountId}/linkedin-post-analytics Get LinkedIn post stats
AnalyticsApi getYouTubeDailyViews GET /v1/analytics/youtube/daily-views Get YouTube daily views
AnalyticsApi getYouTubeDailyViewsWithHttpInfo GET /v1/analytics/youtube/daily-views Get YouTube daily views
ApiKeysApi createApiKey POST /v1/api-keys Create key
ApiKeysApi createApiKeyWithHttpInfo POST /v1/api-keys Create key
ApiKeysApi deleteApiKey DELETE /v1/api-keys/{keyId} Delete key
ApiKeysApi deleteApiKeyWithHttpInfo DELETE /v1/api-keys/{keyId} Delete key
ApiKeysApi listApiKeys GET /v1/api-keys List keys
ApiKeysApi listApiKeysWithHttpInfo GET /v1/api-keys List keys
CommentsApi deleteInboxComment DELETE /v1/inbox/comments/{postId} Delete comment
CommentsApi deleteInboxCommentWithHttpInfo DELETE /v1/inbox/comments/{postId} Delete comment
CommentsApi getInboxPostComments GET /v1/inbox/comments/{postId} Get post comments
CommentsApi getInboxPostCommentsWithHttpInfo GET /v1/inbox/comments/{postId} Get post comments
CommentsApi hideInboxComment POST /v1/inbox/comments/{postId}/{commentId}/hide Hide comment
CommentsApi hideInboxCommentWithHttpInfo POST /v1/inbox/comments/{postId}/{commentId}/hide Hide comment
CommentsApi likeInboxComment POST /v1/inbox/comments/{postId}/{commentId}/like Like comment
CommentsApi likeInboxCommentWithHttpInfo POST /v1/inbox/comments/{postId}/{commentId}/like Like comment
CommentsApi listInboxComments GET /v1/inbox/comments List commented posts
CommentsApi listInboxCommentsWithHttpInfo GET /v1/inbox/comments List commented posts
CommentsApi replyToInboxPost POST /v1/inbox/comments/{postId} Reply to comment
CommentsApi replyToInboxPostWithHttpInfo POST /v1/inbox/comments/{postId} Reply to comment
CommentsApi sendPrivateReplyToComment POST /v1/inbox/comments/{postId}/{commentId}/private-reply Send private reply
CommentsApi sendPrivateReplyToCommentWithHttpInfo POST /v1/inbox/comments/{postId}/{commentId}/private-reply Send private reply
CommentsApi unhideInboxComment DELETE /v1/inbox/comments/{postId}/{commentId}/hide Unhide comment
CommentsApi unhideInboxCommentWithHttpInfo DELETE /v1/inbox/comments/{postId}/{commentId}/hide Unhide comment
CommentsApi unlikeInboxComment DELETE /v1/inbox/comments/{postId}/{commentId}/like Unlike comment
CommentsApi unlikeInboxCommentWithHttpInfo DELETE /v1/inbox/comments/{postId}/{commentId}/like Unlike comment
ConnectApi completeTelegramConnect PATCH /v1/connect/telegram Check Telegram status
ConnectApi completeTelegramConnectWithHttpInfo PATCH /v1/connect/telegram Check Telegram status
ConnectApi connectBlueskyCredentials POST /v1/connect/bluesky/credentials Connect Bluesky account
ConnectApi connectBlueskyCredentialsWithHttpInfo POST /v1/connect/bluesky/credentials Connect Bluesky account
ConnectApi getConnectUrl GET /v1/connect/{platform} Get OAuth connect URL
ConnectApi getConnectUrlWithHttpInfo GET /v1/connect/{platform} Get OAuth connect URL
ConnectApi getFacebookPages GET /v1/accounts/{accountId}/facebook-page List Facebook pages
ConnectApi getFacebookPagesWithHttpInfo GET /v1/accounts/{accountId}/facebook-page List Facebook pages
ConnectApi getGmbLocations GET /v1/accounts/{accountId}/gmb-locations List GBP locations
ConnectApi getGmbLocationsWithHttpInfo GET /v1/accounts/{accountId}/gmb-locations List GBP locations
ConnectApi getLinkedInOrganizations GET /v1/accounts/{accountId}/linkedin-organizations List LinkedIn orgs
ConnectApi getLinkedInOrganizationsWithHttpInfo GET /v1/accounts/{accountId}/linkedin-organizations List LinkedIn orgs
ConnectApi getPendingOAuthData GET /v1/connect/pending-data Get pending OAuth data
ConnectApi getPendingOAuthDataWithHttpInfo GET /v1/connect/pending-data Get pending OAuth data
ConnectApi getPinterestBoards GET /v1/accounts/{accountId}/pinterest-boards List Pinterest boards
ConnectApi getPinterestBoardsWithHttpInfo GET /v1/accounts/{accountId}/pinterest-boards List Pinterest boards
ConnectApi getRedditFlairs GET /v1/accounts/{accountId}/reddit-flairs List subreddit flairs
ConnectApi getRedditFlairsWithHttpInfo GET /v1/accounts/{accountId}/reddit-flairs List subreddit flairs
ConnectApi getRedditSubreddits GET /v1/accounts/{accountId}/reddit-subreddits List Reddit subreddits
ConnectApi getRedditSubredditsWithHttpInfo GET /v1/accounts/{accountId}/reddit-subreddits List Reddit subreddits
ConnectApi getTelegramConnectStatus GET /v1/connect/telegram Generate Telegram code
ConnectApi getTelegramConnectStatusWithHttpInfo GET /v1/connect/telegram Generate Telegram code
ConnectApi handleOAuthCallback POST /v1/connect/{platform} Complete OAuth callback
ConnectApi handleOAuthCallbackWithHttpInfo POST /v1/connect/{platform} Complete OAuth callback
ConnectApi initiateTelegramConnect POST /v1/connect/telegram Connect Telegram directly
ConnectApi initiateTelegramConnectWithHttpInfo POST /v1/connect/telegram Connect Telegram directly
ConnectApi listFacebookPages GET /v1/connect/facebook/select-page List Facebook pages
ConnectApi listFacebookPagesWithHttpInfo GET /v1/connect/facebook/select-page List Facebook pages
ConnectApi listGoogleBusinessLocations GET /v1/connect/googlebusiness/locations List GBP locations
ConnectApi listGoogleBusinessLocationsWithHttpInfo GET /v1/connect/googlebusiness/locations List GBP locations
ConnectApi listLinkedInOrganizations GET /v1/connect/linkedin/organizations List LinkedIn orgs
ConnectApi listLinkedInOrganizationsWithHttpInfo GET /v1/connect/linkedin/organizations List LinkedIn orgs
ConnectApi listPinterestBoardsForSelection GET /v1/connect/pinterest/select-board List Pinterest boards
ConnectApi listPinterestBoardsForSelectionWithHttpInfo GET /v1/connect/pinterest/select-board List Pinterest boards
ConnectApi listSnapchatProfiles GET /v1/connect/snapchat/select-profile List Snapchat profiles
ConnectApi listSnapchatProfilesWithHttpInfo GET /v1/connect/snapchat/select-profile List Snapchat profiles
ConnectApi selectFacebookPage POST /v1/connect/facebook/select-page Select Facebook page
ConnectApi selectFacebookPageWithHttpInfo POST /v1/connect/facebook/select-page Select Facebook page
ConnectApi selectGoogleBusinessLocation POST /v1/connect/googlebusiness/select-location Select GBP location
ConnectApi selectGoogleBusinessLocationWithHttpInfo POST /v1/connect/googlebusiness/select-location Select GBP location
ConnectApi selectLinkedInOrganization POST /v1/connect/linkedin/select-organization Select LinkedIn org
ConnectApi selectLinkedInOrganizationWithHttpInfo POST /v1/connect/linkedin/select-organization Select LinkedIn org
ConnectApi selectPinterestBoard POST /v1/connect/pinterest/select-board Select Pinterest board
ConnectApi selectPinterestBoardWithHttpInfo POST /v1/connect/pinterest/select-board Select Pinterest board
ConnectApi selectSnapchatProfile POST /v1/connect/snapchat/select-profile Select Snapchat profile
ConnectApi selectSnapchatProfileWithHttpInfo POST /v1/connect/snapchat/select-profile Select Snapchat profile
ConnectApi updateFacebookPage PUT /v1/accounts/{accountId}/facebook-page Update Facebook page
ConnectApi updateFacebookPageWithHttpInfo PUT /v1/accounts/{accountId}/facebook-page Update Facebook page
ConnectApi updateGmbLocation PUT /v1/accounts/{accountId}/gmb-locations Update GBP location
ConnectApi updateGmbLocationWithHttpInfo PUT /v1/accounts/{accountId}/gmb-locations Update GBP location
ConnectApi updateLinkedInOrganization PUT /v1/accounts/{accountId}/linkedin-organization Switch LinkedIn account type
ConnectApi updateLinkedInOrganizationWithHttpInfo PUT /v1/accounts/{accountId}/linkedin-organization Switch LinkedIn account type
ConnectApi updatePinterestBoards PUT /v1/accounts/{accountId}/pinterest-boards Set default Pinterest board
ConnectApi updatePinterestBoardsWithHttpInfo PUT /v1/accounts/{accountId}/pinterest-boards Set default Pinterest board
ConnectApi updateRedditSubreddits PUT /v1/accounts/{accountId}/reddit-subreddits Set default subreddit
ConnectApi updateRedditSubredditsWithHttpInfo PUT /v1/accounts/{accountId}/reddit-subreddits Set default subreddit
GmbAttributesApi getGoogleBusinessAttributes GET /v1/accounts/{accountId}/gmb-attributes Get attributes
GmbAttributesApi getGoogleBusinessAttributesWithHttpInfo GET /v1/accounts/{accountId}/gmb-attributes Get attributes
GmbAttributesApi updateGoogleBusinessAttributes PUT /v1/accounts/{accountId}/gmb-attributes Update attributes
GmbAttributesApi updateGoogleBusinessAttributesWithHttpInfo PUT /v1/accounts/{accountId}/gmb-attributes Update attributes
GmbFoodMenusApi getGoogleBusinessFoodMenus GET /v1/accounts/{accountId}/gmb-food-menus Get food menus
GmbFoodMenusApi getGoogleBusinessFoodMenusWithHttpInfo GET /v1/accounts/{accountId}/gmb-food-menus Get food menus
GmbFoodMenusApi updateGoogleBusinessFoodMenus PUT /v1/accounts/{accountId}/gmb-food-menus Update food menus
GmbFoodMenusApi updateGoogleBusinessFoodMenusWithHttpInfo PUT /v1/accounts/{accountId}/gmb-food-menus Update food menus
GmbLocationDetailsApi getGoogleBusinessLocationDetails GET /v1/accounts/{accountId}/gmb-location-details Get location details
GmbLocationDetailsApi getGoogleBusinessLocationDetailsWithHttpInfo GET /v1/accounts/{accountId}/gmb-location-details Get location details
GmbLocationDetailsApi updateGoogleBusinessLocationDetails PUT /v1/accounts/{accountId}/gmb-location-details Update location details
GmbLocationDetailsApi updateGoogleBusinessLocationDetailsWithHttpInfo PUT /v1/accounts/{accountId}/gmb-location-details Update location details
GmbMediaApi createGoogleBusinessMedia POST /v1/accounts/{accountId}/gmb-media Upload photo
GmbMediaApi createGoogleBusinessMediaWithHttpInfo POST /v1/accounts/{accountId}/gmb-media Upload photo
GmbMediaApi deleteGoogleBusinessMedia DELETE /v1/accounts/{accountId}/gmb-media Delete photo
GmbMediaApi deleteGoogleBusinessMediaWithHttpInfo DELETE /v1/accounts/{accountId}/gmb-media Delete photo
GmbMediaApi listGoogleBusinessMedia GET /v1/accounts/{accountId}/gmb-media List media
GmbMediaApi listGoogleBusinessMediaWithHttpInfo GET /v1/accounts/{accountId}/gmb-media List media
GmbPlaceActionsApi createGoogleBusinessPlaceAction POST /v1/accounts/{accountId}/gmb-place-actions Create action link
GmbPlaceActionsApi createGoogleBusinessPlaceActionWithHttpInfo POST /v1/accounts/{accountId}/gmb-place-actions Create action link
GmbPlaceActionsApi deleteGoogleBusinessPlaceAction DELETE /v1/accounts/{accountId}/gmb-place-actions Delete action link
GmbPlaceActionsApi deleteGoogleBusinessPlaceActionWithHttpInfo DELETE /v1/accounts/{accountId}/gmb-place-actions Delete action link
GmbPlaceActionsApi listGoogleBusinessPlaceActions GET /v1/accounts/{accountId}/gmb-place-actions List action links
GmbPlaceActionsApi listGoogleBusinessPlaceActionsWithHttpInfo GET /v1/accounts/{accountId}/gmb-place-actions List action links
GmbReviewsApi getGoogleBusinessReviews GET /v1/accounts/{accountId}/gmb-reviews Get reviews
GmbReviewsApi getGoogleBusinessReviewsWithHttpInfo GET /v1/accounts/{accountId}/gmb-reviews Get reviews
InvitesApi createInviteToken POST /v1/invite/tokens Create invite token
InvitesApi createInviteTokenWithHttpInfo POST /v1/invite/tokens Create invite token
LinkedInMentionsApi getLinkedInMentions GET /v1/accounts/{accountId}/linkedin-mentions Resolve LinkedIn mention
LinkedInMentionsApi getLinkedInMentionsWithHttpInfo GET /v1/accounts/{accountId}/linkedin-mentions Resolve LinkedIn mention
LogsApi getPostLogs GET /v1/posts/{postId}/logs Get post logs
LogsApi getPostLogsWithHttpInfo GET /v1/posts/{postId}/logs Get post logs
LogsApi listConnectionLogs GET /v1/connections/logs List connection logs
LogsApi listConnectionLogsWithHttpInfo GET /v1/connections/logs List connection logs
LogsApi listPostsLogs GET /v1/posts/logs List publishing logs
LogsApi listPostsLogsWithHttpInfo GET /v1/posts/logs List publishing logs
MediaApi getMediaPresignedUrl POST /v1/media/presign Get presigned upload URL
MediaApi getMediaPresignedUrlWithHttpInfo POST /v1/media/presign Get presigned upload URL
MessagesApi editInboxMessage PATCH /v1/inbox/conversations/{conversationId}/messages/{messageId} Edit message
MessagesApi editInboxMessageWithHttpInfo PATCH /v1/inbox/conversations/{conversationId}/messages/{messageId} Edit message
MessagesApi getInboxConversation GET /v1/inbox/conversations/{conversationId} Get conversation
MessagesApi getInboxConversationWithHttpInfo GET /v1/inbox/conversations/{conversationId} Get conversation
MessagesApi getInboxConversationMessages GET /v1/inbox/conversations/{conversationId}/messages List messages
MessagesApi getInboxConversationMessagesWithHttpInfo GET /v1/inbox/conversations/{conversationId}/messages List messages
MessagesApi listInboxConversations GET /v1/inbox/conversations List conversations
MessagesApi listInboxConversationsWithHttpInfo GET /v1/inbox/conversations List conversations
MessagesApi sendInboxMessage POST /v1/inbox/conversations/{conversationId}/messages Send message
MessagesApi sendInboxMessageWithHttpInfo POST /v1/inbox/conversations/{conversationId}/messages Send message
MessagesApi updateInboxConversation PUT /v1/inbox/conversations/{conversationId} Update conversation status
MessagesApi updateInboxConversationWithHttpInfo PUT /v1/inbox/conversations/{conversationId} Update conversation status
PostsApi bulkUploadPosts POST /v1/posts/bulk-upload Bulk upload from CSV
PostsApi bulkUploadPostsWithHttpInfo POST /v1/posts/bulk-upload Bulk upload from CSV
PostsApi createPost POST /v1/posts Create post
PostsApi createPostWithHttpInfo POST /v1/posts Create post
PostsApi deletePost DELETE /v1/posts/{postId} Delete post
PostsApi deletePostWithHttpInfo DELETE /v1/posts/{postId} Delete post
PostsApi getPost GET /v1/posts/{postId} Get post
PostsApi getPostWithHttpInfo GET /v1/posts/{postId} Get post
PostsApi listPosts GET /v1/posts List posts
PostsApi listPostsWithHttpInfo GET /v1/posts List posts
PostsApi retryPost POST /v1/posts/{postId}/retry Retry failed post
PostsApi retryPostWithHttpInfo POST /v1/posts/{postId}/retry Retry failed post
PostsApi unpublishPost POST /v1/posts/{postId}/unpublish Unpublish post
PostsApi unpublishPostWithHttpInfo POST /v1/posts/{postId}/unpublish Unpublish post
PostsApi updatePost PUT /v1/posts/{postId} Update post
PostsApi updatePostWithHttpInfo PUT /v1/posts/{postId} Update post
ProfilesApi createProfile POST /v1/profiles Create profile
ProfilesApi createProfileWithHttpInfo POST /v1/profiles Create profile
ProfilesApi deleteProfile DELETE /v1/profiles/{profileId} Delete profile
ProfilesApi deleteProfileWithHttpInfo DELETE /v1/profiles/{profileId} Delete profile
ProfilesApi getProfile GET /v1/profiles/{profileId} Get profile
ProfilesApi getProfileWithHttpInfo GET /v1/profiles/{profileId} Get profile
ProfilesApi listProfiles GET /v1/profiles List profiles
ProfilesApi listProfilesWithHttpInfo GET /v1/profiles List profiles
ProfilesApi updateProfile PUT /v1/profiles/{profileId} Update profile
ProfilesApi updateProfileWithHttpInfo PUT /v1/profiles/{profileId} Update profile
QueueApi createQueueSlot POST /v1/queue/slots Create schedule
QueueApi createQueueSlotWithHttpInfo POST /v1/queue/slots Create schedule
QueueApi deleteQueueSlot DELETE /v1/queue/slots Delete schedule
QueueApi deleteQueueSlotWithHttpInfo DELETE /v1/queue/slots Delete schedule
QueueApi getNextQueueSlot GET /v1/queue/next-slot Get next available slot
QueueApi getNextQueueSlotWithHttpInfo GET /v1/queue/next-slot Get next available slot
QueueApi listQueueSlots GET /v1/queue/slots List schedules
QueueApi listQueueSlotsWithHttpInfo GET /v1/queue/slots List schedules
QueueApi previewQueue GET /v1/queue/preview Preview upcoming slots
QueueApi previewQueueWithHttpInfo GET /v1/queue/preview Preview upcoming slots
QueueApi updateQueueSlot PUT /v1/queue/slots Update schedule
QueueApi updateQueueSlotWithHttpInfo PUT /v1/queue/slots Update schedule
RedditSearchApi getRedditFeed GET /v1/reddit/feed Get subreddit feed
RedditSearchApi getRedditFeedWithHttpInfo GET /v1/reddit/feed Get subreddit feed
RedditSearchApi searchReddit GET /v1/reddit/search Search posts
RedditSearchApi searchRedditWithHttpInfo GET /v1/reddit/search Search posts
ReviewsApi deleteInboxReviewReply DELETE /v1/inbox/reviews/{reviewId}/reply Delete review reply
ReviewsApi deleteInboxReviewReplyWithHttpInfo DELETE /v1/inbox/reviews/{reviewId}/reply Delete review reply
ReviewsApi listInboxReviews GET /v1/inbox/reviews List reviews
ReviewsApi listInboxReviewsWithHttpInfo GET /v1/inbox/reviews List reviews
ReviewsApi replyToInboxReview POST /v1/inbox/reviews/{reviewId}/reply Reply to review
ReviewsApi replyToInboxReviewWithHttpInfo POST /v1/inbox/reviews/{reviewId}/reply Reply to review
ToolsApi checkInstagramHashtags POST /v1/tools/instagram/hashtag-checker Check IG hashtag bans
ToolsApi checkInstagramHashtagsWithHttpInfo POST /v1/tools/instagram/hashtag-checker Check IG hashtag bans
ToolsApi downloadBlueskyMedia GET /v1/tools/bluesky/download Download Bluesky media
ToolsApi downloadBlueskyMediaWithHttpInfo GET /v1/tools/bluesky/download Download Bluesky media
ToolsApi downloadFacebookVideo GET /v1/tools/facebook/download Download Facebook video
ToolsApi downloadFacebookVideoWithHttpInfo GET /v1/tools/facebook/download Download Facebook video
ToolsApi downloadInstagramMedia GET /v1/tools/instagram/download Download Instagram media
ToolsApi downloadInstagramMediaWithHttpInfo GET /v1/tools/instagram/download Download Instagram media
ToolsApi downloadLinkedInVideo GET /v1/tools/linkedin/download Download LinkedIn video
ToolsApi downloadLinkedInVideoWithHttpInfo GET /v1/tools/linkedin/download Download LinkedIn video
ToolsApi downloadTikTokVideo GET /v1/tools/tiktok/download Download TikTok video
ToolsApi downloadTikTokVideoWithHttpInfo GET /v1/tools/tiktok/download Download TikTok video
ToolsApi downloadTwitterMedia GET /v1/tools/twitter/download Download Twitter/X media
ToolsApi downloadTwitterMediaWithHttpInfo GET /v1/tools/twitter/download Download Twitter/X media
ToolsApi downloadYouTubeVideo GET /v1/tools/youtube/download Download YouTube video
ToolsApi downloadYouTubeVideoWithHttpInfo GET /v1/tools/youtube/download Download YouTube video
ToolsApi getYouTubeTranscript GET /v1/tools/youtube/transcript Get YouTube transcript
ToolsApi getYouTubeTranscriptWithHttpInfo GET /v1/tools/youtube/transcript Get YouTube transcript
UsageApi getUsageStats GET /v1/usage-stats Get plan and usage stats
UsageApi getUsageStatsWithHttpInfo GET /v1/usage-stats Get plan and usage stats
UsersApi getUser GET /v1/users/{userId} Get user
UsersApi getUserWithHttpInfo GET /v1/users/{userId} Get user
UsersApi listUsers GET /v1/users List users
UsersApi listUsersWithHttpInfo GET /v1/users List users
WebhooksApi createWebhookSettings POST /v1/webhooks/settings Create webhook
WebhooksApi createWebhookSettingsWithHttpInfo POST /v1/webhooks/settings Create webhook
WebhooksApi deleteWebhookSettings DELETE /v1/webhooks/settings Delete webhook
WebhooksApi deleteWebhookSettingsWithHttpInfo DELETE /v1/webhooks/settings Delete webhook
WebhooksApi getWebhookLogs GET /v1/webhooks/logs Get delivery logs
WebhooksApi getWebhookLogsWithHttpInfo GET /v1/webhooks/logs Get delivery logs
WebhooksApi getWebhookSettings GET /v1/webhooks/settings List webhooks
WebhooksApi getWebhookSettingsWithHttpInfo GET /v1/webhooks/settings List webhooks
WebhooksApi testWebhook POST /v1/webhooks/test Send test webhook
WebhooksApi testWebhookWithHttpInfo POST /v1/webhooks/test Send test webhook
WebhooksApi updateWebhookSettings PUT /v1/webhooks/settings Update webhook
WebhooksApi updateWebhookSettingsWithHttpInfo PUT /v1/webhooks/settings Update webhook

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

bearerAuth

  • Type: HTTP Bearer Token authentication (JWT)

connectToken

  • Type: API key
  • API key parameter name: X-Connect-Token
  • Location: HTTP header

Recommendation

It's recommended to create an instance of ApiClient per thread in a multithreaded environment to avoid any potential issues. However, the instances of the api clients created from the ApiClient are thread-safe and can be re-used.

Author

support@getlate.dev

About

Late API - Official Java SDK

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages