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>'import requests
url = "https://platform-us.plaud.ai/developer/api/oauth/partner/access-token/refresh"
payload = { "refresh_token": "<string>" }
headers = {
"Content-Type": "<content-type>",
"Authorization": "Basic <encoded-value>"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text){
"access_token": "eyJhbGciOiJSUz...",
"refresh_token": "eyJhbGci...",
"token_type": "bearer",
"expires_in": 3600
}Authentication API
Refresh Partner Token
Exchange a valid refresh_token for a new partner access token. Refresh before the current token expires.
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>'import requests
url = "https://platform-us.plaud.ai/developer/api/oauth/partner/access-token/refresh"
payload = { "refresh_token": "<string>" }
headers = {
"Content-Type": "<content-type>",
"Authorization": "Basic <encoded-value>"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text){
"access_token": "eyJhbGciOiJSUz...",
"refresh_token": "eyJhbGci...",
"token_type": "bearer",
"expires_in": 3600
}Authorizations
HTTP Basic authentication using base64(client_id:secret_key).
Headers
Body
application/x-www-form-urlencoded
The refresh token returned when the partner access token was issued.
Response
200 - application/json
Partner access token refreshed
Was this page helpful?