GET /notes/:note_id/favoriters
Description | Get users who've favorited a note |
Method & URL | GET https://api.findery.com/v2/notes/:note_id/favoriters |
Scope | 'read' or 'readall'. If the note is not public, 'readall' scope and is required. |
Parameters |
|
Example Request |
curl https://api.findery.com/v2/notes/:note_id/favoriters |
Example Response |
{ "data": [ { "avatar": { "hasAvatar": false, "hash": "8aa1c74f5142950b85370f0639ea79cc", "urlRoot": "https://s3-us-west-1.amazonaws.com/avatars1.dev.findery.com/default/" }, "description": "", "id": 807454949847, "link": "https://findery.com/benj", "name": "", "username": "benj" } ], "meta": { "count": 1, "nextUrl": null } } |