curl --request POST \
--url https://api.basic.tech/auth/token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"code": "<string>",
"grant_type": "authorization_code",
"redirect_uri": "<string>",
"client_id": "<string>",
"code_verifier": "<string>",
"refresh_token": "<string>"
}
'