Webex · Schema

BulkResponseItemDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
itemIdentifier integer Unique item identifier for a bulk operation.
status integer Indicates the error status code.
operationType string The kind of operation desired of an entity.
href string The resource URI of an entity.
apiError object
View JSON Schema on GitHub

JSON Schema

webex-bulkresponseitemdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkResponseItemDTO",
  "title": "BulkResponseItemDTO",
  "type": "object",
  "properties": {
    "itemIdentifier": {
      "type": "integer",
      "description": "Unique item identifier for a bulk operation.",
      "format": "int32",
      "example": 10
    },
    "status": {
      "type": "integer",
      "description": "Indicates the error status code.",
      "format": "int32",
      "example": 400
    },
    "operationType": {
      "type": "string",
      "description": "The kind of operation desired of an entity.",
      "example": "CREATE",
      "enum": [
        "CREATE",
        "UPDATE",
        "DELETE",
        "GET"
      ]
    },
    "href": {
      "type": "string",
      "description": "The resource URI of an entity.",
      "example": "/api/organization/6705c69d-4585-42ad-bfc3-79cc485dfb15/team/7b26d174-0016-4682-9858-65918e05f85"
    },
    "apiError": {
      "$ref": "#/components/schemas/ApiErrorResponse"
    }
  },
  "example": {
    "apiError": {
      "error": {
        "key": "400",
        "message": [
          {
            "description": "siteId: not found for given orgId.",
            "entity": "string",
            "references": [
              {
                "id": "string",
                "name": "string"
              }
            ]
          }
        ],
        "reason": "dependency exists"
      },
      "trackingId": "ccconfig_c1a4fcef-aee2-4dea-8977-29f594760552"
    },
    "href": "/api/organization/6705c69d-4585-42ad-bfc3-79cc485dfb15/team/7b26d174-0016-4682-9858-65918e05f85",
    "itemIdentifier": 10,
    "operationType": "CREATE",
    "status": 400
  }
}