API Overview
Message Callbacks
Status Codes
Overview
Remove Friend
Request
Authentication: Add authentication headers to the request. See Authentication
Method:
POST
Rate limit:
100 requests/second
Endpoint: https://API domain/jim/friends/del
Content-Type:
application/json
Request parameters
| Parameter | Data type | Required | Description | |
|---|---|---|---|---|
| friend_ids | array | Yes | User ID list of friends to remove. |
Request example
POST /jim/friends/del HTTP/1.1
appkey: appkey
Authorization: xxxxxxxxxxxxxxxxxx
Content-Type: application/json
{
"friend_ids":["userid1","userid2"]
}
Response example
{
"code":0,
"msg":"sucess"
}