List Deployments
List the authenticated user's deployments.
Scoping to the caller's own deployments is enforced by
bundle_deployment_provider.search via the security context.
Returns a lightweight summary (health, active token count) rather
than the full detail payload returned by get_deployment.
Args:
created_at: Optional FHIR-style prefixed datetime filters on
creation time.
updated_at: Optional FHIR-style prefixed datetime filters on
last-updated time.
_sort: Optional sort field (created_at or updated_at),
with a leading "-" for descending.
Authorization
OAuth2AuthorizationCodeBearer In: header
Query Parameters
Filter by creation time, FHIR-style prefixed datetime search
Filter by last-updated time, FHIR-style prefixed datetime search
Sort field with optional - prefix for descending. Supported: created_at, updated_at
trueResponse Body
application/json
application/json
curl -X GET "https://example.com/v1/deployments"{ "items": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "bundle_id": "fc6f5a67-caa1-4339-9c14-a67826143b60", "bundle_name": "string", "created_at": "2019-08-24T14:15:22Z", "health": "grey", "token_count": 0 } ], "total": 0}{ "detail": [ { "loc": [ "string" ], "msg": "string", "type": "string" } ]}