POST
/
api
/
v1
/
schedule_syncs
curl --request POST \
  --url https://api.squared.ai/api/v1/schedule_syncs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "schedule_sync": {
    "sync_id": 10
  }
}'
{
  "message": "Sync scheduled successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
schedule_sync
object

Response

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

"Sync scheduled successfully"