Skip to main content

Account verification

The following endpoint allows you to verify the validity of an accountToken.

v1/accounts/verify#

Returns 200 success response if accountToken is valid and active.

Request body structure (TS notation)

interface ListTalentsRequest {
appId: string; // Your app ID
appSecret: string; // Your app secret
accountToken: string; // The account token for the business
}

Request example

POST /v1/accounts/verify HTTP/1.1
Host: https://developer.tippy.app
Content-Type: application/json
{
"appId": "YOUR_APP_ID",
"appSecret": "YOUR_APP_SECRET",
"accountToken": "BUSINESS_ACCOUNT_TOKEN"
}

Response example

Status 200

{}