We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/friends/[author_id1]/[author_id2]
Method:
GET
Example:
if there are not friend:
GET /friends/a9284a45-5605-4a47-a967-ad39c35c72ec/d2325f9c-09de-492a-83a9-409047905e40 HTTP 200 OK Allow: GET, OPTIONS Content-Type: application/json Vary: Accept { "query": "friends", "friends": false, "authors": [ "a9284a45-5605-4a47-a967-ad39c35c72ec", "d2325f9c-09de-492a-83a9-409047905e40" ] }
if they are friends:
GET /friends/c974a1fd-fa8c-4d99-97d6-6006e0ee0a5f/eb572e7b-7856-468b-bfdf-9b6388f9165c HTTP 200 OK Allow: GET, OPTIONS Content-Type: application/json Vary: Accept { "query": "friends", "friends": true, "authors": [ "c974a1fd-fa8c-4d99-97d6-6006e0ee0a5f", "eb572e7b-7856-468b-bfdf-9b6388f9165c" ] }