REST APIs
cURL
curl --request POST \ --url https://api.basic.tech/auth/token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "code": "<string>" }'
{ "access_token": "<string>", "token_type": "<string>", "expires_in": 123, "refresh": "<string>", "refresh_token": "<string>" }
JWT Authorization Token header using the Bearer scheme
Default Response
The response is of type object.
object