Skip to main content
POST
https://api.app.shinzo.ai
/
v1
/
agent
/
{id}
/
resume
Resume Agent
curl --request POST \
  --url https://api.app.shinzo.ai/v1/agent/{id}/resume \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token or Platform API key via Authorization: Bearer <token> header.
id
string
required
Agent UUID

Example Request

curl -X POST https://api.app.shinzo.ai/v1/agent/a1b2c3d4-e5f6-7890-abcd-ef1234567890/resume \
  -H "Authorization: Bearer <token>"

Example Response

{
  "message": "Agent resumed successfully"
}
Resuming an agent restores it to active status. Any messages that were queued while the agent was paused will begin processing.

Status Codes

CodeDescription
200Agent resumed successfully
400Agent is not paused
401Unauthorized - invalid or missing authentication
404Agent not found