Payin balance check
Developing
Request
token (obtained through co/v1/oauth2/token)
Format: Bearer+" "+ tokens
We will provide relevant data in the email
Request samples
curl --location --request GET 'http://test-cn.your-api-server.com/co/v1/payment/balance' \
--header 'Authorization;' \
--header 'x-api-key;'
Responses
application/json code
enum<integer> <int32>
requiredcode: 200, request success 401,request fail
When the response code is 200, the content is "SUCCESS" If the response code is not 200, an error message is displayed
Specific response content
{
"code": 200,
"message": "string",
"data": {
"accountBalance": 0
}
}
Modified at 2023-05-11 08:07:11