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.
Request Body
{"refreshToken"=>"<string>"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: OK
{"access_token":"\u003cstring\u003e","token_type":"bearer","refresh_token":"\u003cstring\u003e","expires_in":"\u003cinteger\u003e"}