Skip to main content
GET
/
api
/
morning-threads
/
{id}
/
submissions
curl "https://api.hitler.app/api/morning-threads/THREAD_UUID/submissions" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "sub-uuid-1",
    "morningThreadId": "thread-uuid",
    "userId": "user-uuid-1",
    "messageTs": "1709712060.000200",
    "rawText": "Working on the API refactor and code review for PR #42",
    "parsed": false,
    "submittedAt": "2026-03-06T09:01:00.000Z"
  }
]
This endpoint requires API key authentication (service-to-service).

Path Parameters

id
string
required
Morning thread UUID

Response

Array of thread submissions.
id
string
Submission UUID
morningThreadId
string
Parent morning thread UUID
userId
string
User UUID who submitted
messageTs
string
Slack message timestamp
rawText
string
Raw text of the submission
parsed
boolean
Whether the submission has been parsed into tasks
submittedAt
string
Submission timestamp
curl "https://api.hitler.app/api/morning-threads/THREAD_UUID/submissions" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "sub-uuid-1",
    "morningThreadId": "thread-uuid",
    "userId": "user-uuid-1",
    "messageTs": "1709712060.000200",
    "rawText": "Working on the API refactor and code review for PR #42",
    "parsed": false,
    "submittedAt": "2026-03-06T09:01:00.000Z"
  }
]