Asana · Schema

BatchResponse

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
status_code integer The HTTP status code for the individual action.
headers object HTTP headers for the individual action.
body object The body of the response for the individual action.
View JSON Schema on GitHub

JSON Schema

asana-batchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchResponse",
  "title": "BatchResponse",
  "type": "object",
  "properties": {
    "status_code": {
      "type": "integer",
      "description": "The HTTP status code for the individual action.",
      "example": 200
    },
    "headers": {
      "type": "object",
      "description": "HTTP headers for the individual action."
    },
    "body": {
      "type": "object",
      "description": "The body of the response for the individual action."
    }
  }
}