Skip to main content
GET
/
migrations
/
{migration_id}
/
files
List uploaded files
curl --request GET \
  --url https://app.vern.so/api/v1/migrations/{migration_id}/files \
  --header 'x-api-key: <api-key>'
{
  "files": [
    {
      "name": "contacts.csv",
      "storage_path": "workbooks/b3d9.../<uuid>-contacts.csv",
      "size": 184320,
      "content_type": "text/csv",
      "uploaded_at": "2026-06-19T15:30:02.000Z"
    }
  ]
}

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.

Response

The uploaded files.

files
object[]