GET
/
v1
/
post.get-post
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"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

postId
string
required
organizationId
string
required

Response

200
application/json

Retrieve a post

The response is of type object.