Get Partner Token
curl --request POST \
--url https://platform-us.plaud.ai/developer/api/oauth/partner/access-token \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: <content-type>'import requests
url = "https://platform-us.plaud.ai/developer/api/oauth/partner/access-token"
headers = {
"Content-Type": "<content-type>",
"Authorization": "Basic <encoded-value>"
}
response = requests.post(url, headers=headers)
print(response.text){
"access_token": "eyJhbGciOiJSUz...",
"refresh_token": "eyJhbGci...",
"token_type": "bearer",
"expires_in": 3600
}Authentication API
Get Partner Token
Application-level token. Exchange your client_id and secret_key for a partner access token, which is used to mint individual user tokens.
POST
/
oauth
/
partner
/
access-token
Get Partner Token
curl --request POST \
--url https://platform-us.plaud.ai/developer/api/oauth/partner/access-token \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: <content-type>'import requests
url = "https://platform-us.plaud.ai/developer/api/oauth/partner/access-token"
headers = {
"Content-Type": "<content-type>",
"Authorization": "Basic <encoded-value>"
}
response = requests.post(url, 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
Response
200 - application/json
Partner access token issued
Was this page helpful?