cURL
curl --request GET \ --url https://api.givebutter.com/v1/campaigns/{campaign}/members \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "first_name": "<string>", "last_name": "<string>", "display_name": "<string>", "email": "<string>", "phone": "<string>", "picture": "<string>", "raised": 123, "goal": 123, "donors": 123, "items": 123, "url": "<string>", "created_at": "<string>", "updated_at": "<string>" } ], "links": { "first": "<string>", "last": "<string>", "prev": "<string>", "next": "<string>" }, "meta": { "current_page": 2, "from": 2, "last_page": 2, "links": [ { "url": "<string>", "label": "<string>", "active": true } ], "path": "<string>", "per_page": 1, "to": 2, "total": 1 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The campaign ID
Paginated set of CampaignMemberResource
CampaignMemberResource
Show child attributes
Was this page helpful?