GET
/
v1
/
post.list-posts
curl --request GET \
  --url https://api.mobilizehub.com/v1/post.list-posts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "name": "<string>",
      "title": "<string>",
      "description": "<string>",
      "content": "<any>",
      "imageId": "<string>",
      "organizationId": "<string>",
      "status": "DRAFT",
      "image": {
        "name": "<string>",
        "url": "<string>",
        "alt": "<string>",
        "type": "<string>"
      }
    }
  ],
  "object": "posts"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

organizationId
string
required

Response

200
application/json

Retrieve posts

The response is of type object.