Skip to main content
POST
/
v1
/
workspaces
/
{workspace_id}
/
zombies
/
{zombie_id}
/
messages
Post a chat message to a zombie
curl --request POST \
  --url https://api.usezombie.com/v1/workspaces/{workspace_id}/zombies/{zombie_id}/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "status": "accepted",
  "event_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.usezombie.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Path Parameters

workspace_id
string<uuid>
required

UUIDv7 of the workspace.

zombie_id
string<uuid>
required

UUIDv7 of the zombie.

Body

application/json
message
string
required

Operator message body. Up to 8192 bytes. The server wraps it in a JSON object with a "message" field as the envelope's request payload.

Response

Event enqueued. The CLI uses event_id to filter SSE frames.

status
enum<string>
required
Available options:
accepted
event_id
string
required

Redis stream entry id (the canonical event_id). Format <ms>-<seq>.