Logo
api.video's Public API Documentation

Refresh Bearer Token

POST {{baseUrl}}/auth/refresh

Accepts the old bearer token and returns a new bearer token that can be used to authenticate other endpoint.

You can find the tutorial on using the disposable bearer token here.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status OK

{ "access_token": "<string>", "token_type": "bearer", "refresh_token": "<string>", "expires_in": "<integer>" }



Curl
curl -X POST 'https://ws.api.video/auth/refresh' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"refreshToken":"\u003cstring\u003e"}'

ENDPOINTS