latestOpenAPI 3.0.42026-07-2271315.1 KB

062a14150fe6

Authentication API

Get User Token

User-level token. Exchange a partner access token for a per-user access token. This is the token the Embedded SDK and file upload endpoints accept.

post/open/partner/users/access-token

Parameters

9b17eb9a-204f-4273-85f4-944417ed2896 — unresolved $ref

Request body

user_idstring required

Your stable identifier for the user.

expires_ininteger

Requested lifetime of the user access token, in seconds.

Example request

{
  "expires_in": 86400
}

Response

User access token issued

access_tokenstring

The user access token.

token_typestring

The token type.

expires_ininteger

Lifetime of the access token, in seconds.

Example response

{
  "token_type": "bearer",
  "expires_in": 86400
}