List component overrides
Scope: env:read
Authorization
bearerAuth Personal Access Token (PAT) or Service Access Token (SAT). Pass the token in the Authorization header: Bearer adm_pat_...
In: header
Path Parameters
Unique identifier of the component to list overrides for (UUID).
uuidQuery Parameters
Maximum number of overrides to return per page.
int320 <= value <= 100Opaque pagination token from a previous response.
Response Body
application/json
curl -X GET "https://admiral.example.com/api/v1/components/497f6eca-6276-4993-bfeb-53cbbbba6f08/overrides"{ "overrides": [ { "component_id": "41afafe5-2a48-424a-baef-34c2ad44ef7b", "environment_id": "40ef0e48-a11f-4963-a229-e396c9f7e7c4", "disabled": true, "source_id": "ae50a35c-df42-4eff-ba26-f8bc28d2af81", "version": "string", "values_template": "string", "depends_on": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ], "outputs": [ { "name": "string", "value_template": "string", "description": "string" } ], "created_by": { "id": "string", "display_name": "string", "email": "string" }, "updated_by": { "id": "string", "display_name": "string", "email": "string" }, "created_at": "2023-01-15T01:30:15.01Z", "updated_at": "2023-01-15T01:30:15.01Z" } ], "next_page_token": "string"}Retrieve a component override GET
Scope: `env:read`
List components GET
The response behavior depends on the filter: - Filter by `application_id` only: returns application-level component definitions (defaults). - Filter by `application_id` + `environment_id`: returns the resolved view with environment overrides applied. Disabled components are included with `disabled=true`. The `has_override` field indicates whether the component differs from its application-level default. Scope: `app:read`