Convertr uses OAuth for it's API authentication. All end points (unless explicitly detailed) require anĀ access_token
to be passed through with each request. Tokens expire after 60minutes and need to either be refreshed or a new one generated.
Requesting a token
Request:
Access Token
POST /oauth/v2/token HTTP/1.1 Host: {enterprise}.cvtr.io Content-Type: application/x-www-form-urlencoded client_id={your_client_id}& client_secret={your_client_secret}& username={your_email}& password={your_password}& grant_type=password
Response:
Response
{ "access_token": "NWY0OWNmZTJlNjA1YWE1ZDY5YjM0NGM2NTg0NjRkN2FiOTRhNWJkNTEzNWUyODM3ZTVmY2M0ZTNjNDM0YWU2ZQ", "expires_in": 3600, "token_type": "bearer", "scope": null, "refresh_token": "MWI1ZTQ2ODg5NWY2NzY4ZTMzNmJiN2U5MmIxM2YyMGNmMzlhZWQwZTU3OGNjODM2Y2I0NDNhMjdmYWI3NTFhMA" }