Skip to main content
GET
/
api
/
v1
/
migrations
/
{runId}
/
agent-package
Get Migration Agent Package
curl --request GET \
  --url https://api.sequenzy.com/api/v1/migrations/{runId}/agent-package \
  --header 'Authorization: Bearer <token>'
{"success":true,"data":{"runId":"run_123","provider":"kit","endpoints":{"connectSource":"https://api.sequenzy.com/api/v1/migrations/run_123/connect-source"},"sequence":["POST connect-source with the provider credential."]}}

Get Migration Agent Package

Returns provider, run ID, endpoint URLs, auth instructions, and the exact method sequence.

Request

runId
string
required
Migration run ID.
curl "https://api.sequenzy.com/api/v1/migrations/run_123/agent-package" \
  -H "Authorization: Bearer SEQUENZY_API_KEY"

Responses

{"success":true,"data":{"runId":"run_123","provider":"kit","endpoints":{"connectSource":"https://api.sequenzy.com/api/v1/migrations/run_123/connect-source"},"sequence":["POST connect-source with the provider credential."]}}