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