Member Logout
1. Member Logout
API Path
- POST
- /api/member/logout
Request Parameters
Parameter | Name | Type | Required | Description |
---|---|---|---|---|
agent_id | Merchant ID | string | Required | Merchant ID |
user_id | Merchant User ID | string | Required | Merchant User ID |
timestamp | Current Timestamp | int | Required | The timestamp when calling the API (in milliseconds, valid for ten minutes) |
sign | Signature | string | Required | See API documentation for signature algorithm |
Response Parameters
Parameter | Name | Type | Description |
---|---|---|---|
code | Response Code | int | Error Code |
message | Response Message | string | Error Message |
data | Response Data | dict | Response Data Details |
Request Example
curl --location 'https://staging.aig1234.com/api/member/logout' \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "agent001",
"user_id": "testUid03",
"timestamp": 1732589849000,
"sign": "554f8c395b712dbee3e18c79c6274408"
}'
Response Example
{
"code": 200,
"message": "success",
"data": {}
}
Error Codes
200 Success
408000 Request Parameter Error
408003 Whitelist Restriction
408004 API Rate Limit
600100 Invalid Signature
700101 Merchant Not Found
700103 Member Not Found