DELETE
/
api
/
v1
/
schedule_syncs
/
{sync_id}
curl --request DELETE \
  --url https://api.squared.ai/api/v1/schedule_syncs/{sync_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Sync cancelled successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sync_id
integer
required

The ID of the sync to be canceled

Example:

72

Response

200 - application/json
Sync cancelled successfully
message
string
Example:

"Sync cancelled successfully"