Request
Body Params application/x-www-form-urlencoded
The grant type of the token request.
Example:client_credentials
Your Banyan supplied client id.
Your Banyan supplied client secret.
The client ref number this token should be associated with.
Request samples
curl --location --request POST 'https://ws.integration.banyantechnology.com/auth/connect/token' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=myclientid' \
--data-urlencode 'client_secret=myclientsecret' \
--data-urlencode 'clientrefnum='
Responses
application/json The JWT you will use in your Authorization header
Scopes (permissions) this token has.
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"token_type": "Bearer",
"expires_in": 3599,
"scope": "shipments.view shipments.edit"
}
Modified at 2024-12-04 18:03:37