plaid
Create or refresh an OAuth access token
/oauth/token issues an access token and refresh token depending on the grant_type provided. This endpoint supports Content-Type: application/x-www-form-urlencoded as well as JSON. The fields for the form are equivalent to the fields for JSON and conform to the OAuth 2.0 specification.
post/oauth/token
Request body
Example request
{
"scope": "user:read user:write exchange",
"resource": "https://production.plaid.com",
"audience": "68028ce48d2b0dec68747f6c",
"subject_token": "user-sandbox-b0e2c4ee-a763-4df5-bfe9-46a46bce993d"
}Response
OK
Example response
{
"token_type": "Bearer",
"expires_in": 900
}