ioZen Docs
API ReferenceSubmissions
GET
/intake-bots/{id}/submissions/{submissionId}

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Pass your ioZen API key as a Bearer token in the Authorization header.

In: header

Path Parameters

id*string

Intake bot ID

submissionId*string

Submission ID

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://app.iozen.ai/api/v1/intake-bots/cm7abc12x0001yz9k8mno3pqr/submissions/cm7def45y0002yz9k8mno3pqr"
{
  "success": true,
  "data": {
    "submission": {
      "id": "cm7sub01a0001yz9k8mno3pqr",
      "data": {
        "full_name": "Jane Doe",
        "email": "jane@example.com",
        "priority": "high"
      },
      "status": "COMPLETED",
      "ai_summary": "New enterprise customer requesting priority onboarding.",
      "is_test": false,
      "file_count": 2,
      "schema_version": 3,
      "intake_bot_id": "cm7abc12x0001yz9k8mno3pqr",
      "messages": [
        {
          "id": "cm7msg01a0001yz9k8mno3pqr",
          "role": "assistant",
          "content": "Welcome! What is your full name?",
          "created_at": "2026-02-22T11:00:00.000Z"
        },
        {
          "id": "cm7msg02b0002yz9k8mno3pqr",
          "role": "user",
          "content": "Jane Doe",
          "created_at": "2026-02-22T11:00:30.000Z"
        }
      ],
      "created_at": "2026-02-22T11:00:00.000Z",
      "updated_at": "2026-02-22T11:05:00.000Z"
    }
  }
}
{
  "success": false,
  "error": {
    "code": "validation_failed",
    "message": "Validation failed",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "authentication_required",
    "message": "Missing or invalid API key",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "insufficient_scopes",
    "message": "API key lacks required scopes for this endpoint",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "resource_not_found",
    "message": "Resource not found",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "rate_limit_exceeded",
    "message": "Rate limit exceeded",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "internal_error",
    "message": "An internal error occurred",
    "details": {}
  }
}