API Authentication
Last updated
Was this helpful?
Last updated
Was this helpful?
The Caption.Ed uses OAuth 2.0 for authentication. We support the following grant types:
Assertion (with the provider dashboard
)
Refresh Token
The API is private and you must have a client ID, secret and assertion token to consume it.
You can read more about OAuth 2.0 and it's associated grant types at .
POST
https://api.captioned.carescribe.io/oauth/token
grant_type
string
Must be assertion
provider
string
Must be dashboard
assertion
string
Your assertion token
client_id
string
Your application client ID
client_secret
string
Your application client secret
scope
string
Must be write_transcriptions write_media
POST
https://api.captioned.carescribe.io/oauth/token
grant_type
string
Must be refresh_token
refresh_token
string
Your refresh token
client_id
string
Your application client ID
client_secret
string
Your application client secret
Every call you make to the Caption.Ed API must include the following two headers:
Header Name
Header Value
Accept
application/vnd.captioned.v1
Authorization
Bearer <access token>
Replace <access token>
with the access token that was provided to you when authenticating in the above steps.