Friends
Sent
Returns all outgoing friend requests sent by the authenticated user that are still awaiting a response.
POST
/api/vaneltonid/friend_sent.php
Requires
Authorization: AppID:AppKey + user tokenRequest body
| Field | Type | Required | Description |
|---|---|---|---|
| token | string | required | User's session token |
Test this endpoint
Headers
Body
Success response 200
{
"success": true,
"data": {
"sent_requests": [
{
"id": 7,
"userKey": "def...",
"username": "dest_user",
"name": "Dest Name",
"profileimg": "https://..."
}
],
"count": 1
}
}