Learn
Get started with MobilizeHub
List petitions
cURL
curl --request GET \ --url https://api.mobilizehub.com/v1/petition.list-petitions \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "createdAt": "<string>", "updatedAt": "<string>", "name": "<string>", "title": "<string>", "goal": 123, "target": "<string>", "description": "<string>", "ask": "<string>", "content": "<any>", "imageId": "<string>", "signatures": 123, "organizationId": "<string>", "status": "DRAFT", "image": { "name": "<string>", "url": "<string>", "alt": "<string>", "type": "<string>" } } ], "object": "petitions" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Retrieve petitions
The response is of type object.
object