Skip to main content
POST
/
migrations
/
{migration_id}
/
runs
/
{run_id}
/
messages
curl --request POST \
  --url https://app.vern.so/api/v1/migrations/{migration_id}/runs/{run_id}/messages \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "answers": [
    {
      "id": "q1",
      "value": "Treat CANCELLED as inactive"
    }
  ]
}
'
{
  "run_id": "d4c3b2a1-9f8e-47d6-b5a4-c3d2e1f0a9b8",
  "status": "running"
}

Authorizations

x-api-key
string
header
required

Your Vern API key. Create one at Settings → API keys.

Path Parameters

migration_id
string<uuid>
required

The migration ID returned by Create a migration.

run_id
string<uuid>
required

The run ID returned by Start a run.

Body

application/json
answers
required

Structured answers (one {id,value} per question) or a free-form string.

Response

The run resumed and is running again.

run_id
string<uuid>
status
string
Example:

"running"