`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
const url = 'https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/migrations';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/migrationsParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Responses
Section titled “Responses”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" }]