Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.05 KB

batch-delete-catalog-objects-response.md

File metadata and controls

35 lines (27 loc) · 1.05 KB

Batch Delete Catalog Objects Response

Structure

BatchDeleteCatalogObjectsResponse

Fields

Name Type Tags Description Getter
Errors List<Error> Optional Any errors that occurred during the request. List getErrors()
DeletedObjectIds List<String> Optional The IDs of all CatalogObjects deleted by this request. List getDeletedObjectIds()
DeletedAt String Optional The database timestamp of this deletion in RFC 3339 format, e.g., "2016-09-04T23:59:33.123Z". String getDeletedAt()

Example (as JSON)

{
  "deleted_at": "2016-11-16T22:25:24.878Z",
  "deleted_object_ids": [
    "W62UWFY35CWMYGVWK6TWJDNI",
    "AA27W3M2GGTF3H6AVPNB77CK"
  ],
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}