Skip to main content
POST
/
oauth
/
partner
/
access-token
/
refresh
Refresh Partner Token
curl --request POST \
  --url https://platform-us.plaud.ai/developer/api/oauth/partner/access-token/refresh \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: <content-type>' \
  --data 'refresh_token=<string>'
{
  "access_token": "eyJhbGciOiJSUz...",
  "refresh_token": "eyJhbGci...",
  "token_type": "bearer",
  "expires_in": 3600
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication using base64(client_id:secret_key).

Headers

Content-Type
string
default:application/x-www-form-urlencoded
required

Body

application/x-www-form-urlencoded
refresh_token
string
required

The refresh token returned when the partner access token was issued.

Response

200 - application/json

Partner access token refreshed

access_token
string

The partner access token.

refresh_token
string

Token used to obtain a new partner access token before expiry.

token_type
string

The token type.

Example:

"bearer"

expires_in
integer

Lifetime of the access token, in seconds.

Example:

3600