Skip to main content
GET
/
migrations
/
{migration_id}
/
source-connection
Get the source connection
curl --request GET \
  --url https://app.vern.so/api/v1/migrations/{migration_id}/source-connection \
  --header 'x-api-key: <api-key>'
{
  "source_connection": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "profile_id": "<string>",
    "source_key": "<string>",
    "name": "<string>",
    "category": "<string>",
    "config": {},
    "selected_streams": [
      "<string>"
    ],
    "stream_state": {},
    "creds_configured": true,
    "bound_source_extractor_id": "<string>",
    "last_snapshot": {},
    "last_sync_at": "2023-11-07T05:31:56Z"
  }
}

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.

Query Parameters

source_key
string

Filter to a specific connector.

profile_id
string

Profile to read; pass the literal workbook for the workbook-bound connection.

Response

The current source connection.

source_connection
object

A migration's live API source connection. Never includes secret values; creds_configured reports whether credentials are stored.