Skip to main content
POST
/
open
/
partner
/
users
/
access-token
Get User Token
curl --request POST \
  --url https://platform-us.plaud.ai/developer/api/open/partner/users/access-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "<your stable user id, 6-120 chars>",
  "expires_in": 86400
}
'
{
  "access_token": "eyJhbGci...",
  "token_type": "bearer",
  "expires_in": 86400
}

Authorizations

Authorization
string
header
required

Bearer authentication using a partner access token.

Body

application/json
user_id
string
required

Your stable identifier for the user.

Required string length: 6 - 120
expires_in
integer

Requested lifetime of the user access token, in seconds.

Example:

86400

Response

200 - application/json

User access token issued

access_token
string

The user access token.

token_type
string

The token type.

Example:

"bearer"

expires_in
integer

Lifetime of the access token, in seconds.

Example:

86400