Skip to content
Select themeSelect language

`GET /api/apps/{id}/migrations` -- list the recorded migrations for this App, oldest-first. Each row carries the SHA-256 checksum (hex) and the `applied_at` timestamp (null when not yet applied).

GET
/api/apps/{id}/migrations
curl --request GET \
--url https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/migrations
id
required
string format: uuid
Media typeapplication/json
Array<object>

The DB-level view of a migration row – what the list endpoint returns.

object
app_id
required
string format: uuid
applied_at
string | null format: date-time
checksum_hex
required
string
created_at
required
string format: date-time
id
required
string format: uuid
name
required
string
Examplegenerated
[
{
"app_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"applied_at": "2026-04-15T12:00:00Z",
"checksum_hex": "example",
"created_at": "2026-04-15T12:00:00Z",
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example"
}
]