Skip to main content

Request

curl -X PUT "https://api.socialsyncs.co/public/v1/automations/{id}" \
  -H "Authorization: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Flow Name",
    "integration_id": "your-integration-id",
    "is_active": true,
    "events": [...]
  }'

Path Parameters

ParameterTypeDescription
idstringThe automation ID to update

Body Parameters

Same shape as Create Automation. The entire workflow is replaced.

Response

Returns the updated automation object. Returns 404 if the automation does not belong to your organization.