add_friend
Description
fromUserID
initiates a friend request totoUserID
.
Request Method
POST
Request URL
{API_ADDRESS}/friend/add_friend
Header
Header Name | Example Value | Required | Type | Description |
---|---|---|---|---|
operationID | 1646445464564 | Required | string | Used for global traceability, suggested as a unique timestamp per request |
token | eyJhbxxxx3Xs | Required | string | Admin token |
Request Parameters Example
{
"fromUserID": "11111111",
"toUserID": "11111113",
"reqMsg": "hello!",
"ex": ""
}
Field Name | Required | Type | Description |
---|---|---|---|
fromUserID | Required | string | ID of the user initiating the request |
toUserID | Required | string | ID of the user receiving the request |
reqMsg | Optional | string | Request message |
ex | Optional | string | Extended field |
Success Response Example
{
"errCode": 0,
"errMsg": "",
"errDlt": ""
}
Success Response Parameter Description
Parameter | Type | Description |
---|---|---|
errCode | int | Error code, 0 indicates success |
errMsg | string | Brief error message, empty if successful |
errDlt | string | Detailed error information, empty if successful |
Failure Response Example
{
"errCode": 1004,
"errMsg": "RecordNotFoundError",
"errDlt": ": [1004]RecordNotFoundError"
}
Failure Response Parameter Description
Parameter | Type | Description |
---|---|---|
errCode | int | Error code; refer to global error code documentation |
errMsg | string | Brief error message |
errDlt | string | Detailed error information |