Restack · Example Payload

Restack Schedule Agent Example

AI AgentsWorkflowsOrchestrationEnterprisePython

Restack Schedule Agent Example is an example object payload from Restack, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "http://localhost:6233/api/agents/CustomerSupportAgent",
    "headers": {
      "Authorization": "Bearer {{RESTACK_API_BEARER_TOKEN}}",
      "Content-Type": "application/json"
    },
    "body": {
      "input": {
        "userId": "user_12345",
        "message": "I need help resetting my password",
        "channel": "web",
        "priority": "normal"
      }
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "runId": "run_abc123xyz789",
      "status": "queued"
    }
  }
}