Bulk Sync Error Handling

Update Bulk Sync Error Handling

Updates the error handling settings for a bulk sync.

put/api/bulk/syncs/{id}/error-handling

Path parameters

idstring uuid required

Unique identifier of the bulk sync.

Example:248df4b7-aa70-47b8-a036-33ac447e668d

Unique identifier of the bulk sync.

Headers

X-Polytomic-Versionstring

Request body

subscribersstring[] nullable

Email addresses notified when this sync fails. Replaces the current list; pass an empty list to unsubscribe everyone. Omit to leave the list unchanged.

Example request

{
  "subscribers": [
    "alerts@example.com"
  ]
}

Response

OK

Example response

{
  "data": {
    "subscribers": [
      "alerts@example.com"
    ]
  }
}

Changes