Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Queue execution for an approved migration run.
cURL
curl --request POST \ --url https://api.sequenzy.com/api/v1/migrations/{runId}/start \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "resourceIds": [ "<string>" ], "resourceOptions": {} } '
{"success":true,"data":{"id":"run_123","status":"queued"}}
resourceIds
curl -X POST "https://api.sequenzy.com/api/v1/migrations/run_123/start" \ -H "Authorization: Bearer SEQUENZY_API_KEY" \ -H "Content-Type: application/json" \ -d '{"resourceIds":["subscribers","tags","custom_fields","automations"],"resourceOptions":{"automations":{"names":["Budget Worksheet"]}}}'