curl --request POST \
--url https://api.example.com/v1.0/OAuth2/tokens \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"AccountKey": "<string>",
"AccountSecret": "<string>",
"ApiEndpoint": "<string>"
}
'{
"Token": "<string>",
"Successful": true,
"TokenExpiry": "<string>",
"ApiEndpoint": "<string>",
"Error": "<string>"
}curl --request POST \
--url https://api.example.com/v1.0/OAuth2/tokens \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"AccountKey": "<string>",
"AccountSecret": "<string>",
"ApiEndpoint": "<string>"
}
'{
"Token": "<string>",
"Successful": true,
"TokenExpiry": "<string>",
"ApiEndpoint": "<string>",
"Error": "<string>"
}JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.
ApiRequest object