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/x-www-form-urlencoded
Request Code Samples
curl --location --request POST 'https://test.your-api-server.com/oauth/token' \
--header 'Cookie: _cfuvid=7CCLyHoOJa2xNTaH_4WyYansrKY1.z2UTK46Y9C6y1o-1740464351061-0.0.1.1-604800000; _cfuvid=XaDRMESmSsZ2.84q0q6E02VcslOznNUwPX1Kg67TUZQ-1740479309936-0.0.1.1-604800000; JSESSIONID=3BB78CC75CEDD150743D7EE2E24722FC' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Basic Og==' \
--data-urlencode 'username=6982129990' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'password=Test@1234567'
Responses
application/json {"access_token":"P3Dqn26dcUdYQP_11CNZHbyCpNE","token_type":"bearer","refresh_token":"aR8dFcfjUZsa9BoO3WhBDS9OuV0","expires_in":86399,"scope":"read write trust"}
Modified at 2025-07-07 18:38:44