Wrike · Schema

TaskListResponse

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
kind string
data array
nextPageToken string Token to retrieve the next page of results
responseSize integer
View JSON Schema on GitHub

JSON Schema

wrike-tasklistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskListResponse",
  "title": "TaskListResponse",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "example": "tasks"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Task"
      }
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token to retrieve the next page of results"
    },
    "responseSize": {
      "type": "integer"
    }
  }
}