Robocorp · Example Payload

Robocorp Start Process Run Example

RPAWorkflow AutomationPythonOpen SourceAutomation

Robocorp Start Process Run Example is an example object payload from Robocorp, 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": "https://cloud.robocorp.com/api/v1/workspaces/ws_abc123/processes/proc_xyz789/runs",
    "headers": {
      "Authorization": "RC-WSKEY your-api-key",
      "Content-Type": "application/json"
    },
    "body": {
      "variables": {
        "INPUT_FILE_URL": "https://example.com/data.csv",
        "OUTPUT_FORMAT": "json",
        "NOTIFY_EMAIL": "ops@example.com"
      }
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": "run_def456",
      "process_id": "proc_xyz789",
      "state": "PENDING",
      "started_at": "2026-05-02T10:05:00Z",
      "completed_at": null
    }
  }
}