Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"type": "string",
"customer_external_id": "string"
}
Request Code Samples
curl --location 'https://test.your-api-server.com/customer/calculateprice' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "string",
"customer_external_id": "string"
}'
Responses
application/json
{
"success": true,
"code": 0,
"message": "string",
"data": {
"price": 0,
"price_token": "string"
}
}
Modified at 2024-12-30 14:34:31