Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Body Params application/json
{
"GrantType": "client_credentials"
}
Request Code Samples
curl --location --request POST 'http://127.0.0.1:8000/ftel-gw/auth/api/v1/authentication/token' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
"GrantType": "client_credentials"
}'
Responses
application/json Modified at 2025-10-24 05:31:13