5.3.Show a post — GET /v1/ats/posts/:id

5.3.Show a post — GET /v1/ats/posts/:id

Returns a single post resource by ID.

Example response (abbreviated):

{  "data": {    "type": "posts",    "id": "101",    "attributes": {      "id": 101,      "ticket_id": 42,      "content_html": "<p>Since I reset my password I cannot log in anymore.</p>",      "origin": "web",      "timespent": 0,      "attachment_id": "",      "created": "2026-04-01T09:23:00+00:00",      "created_by": 851,      "created_by_info": { ... },      "modified": "2026-04-01T09:23:00+00:00",      "modified_by": 851,      "modified_by_info": { ... },      "enabled": 1    }  }}

HTTP codes:

200 OK

Returns the post resource.

403 Forbidden

The API user is not an ATS manager or the post does not exist.