List applications
List applications
Returns a paginated list of applications in the specified zone. Use cursor pagination via after/before. Sort: comma-separated field list; prefix with - for descending. Use expand[]=total_count to include the matching row count. Filter by exact slug via filter[slug] and by exact identifier via filter[identifier]. Search via query[name] / query[identifier] / query[] (substring match, OR'd across repeated values). query[] matches against name and identifier. Pass filter[id] (repeatable, max 100) to restrict results to a known set of applications — mutually exclusive with after/before (returns 400 if combined). When filter[id] is set, limit is ignored and the response contains every requested application that exists in the zone, in a single page. IDs not in the zone are silently omitted.
Path Parameters
Query Parameters
Cursor for forward pagination
Cursor for backward pagination
Maximum number of items to return
Comma-separated sort fields. Prefix with - for descending. Allowed: created_at, name, identifier
Returns
List applications
curl https://api.keycard.ai/zones/$ZONE_ID/applications{
"items": [
{
"id": "id",
"consent": "implicit",
"created_at": "2019-12-27T18:11:19.117Z",
"dependencies_count": 0,
"identifier": "x",
"name": "x",
"organization_id": "organization_id",
"owner_type": "platform",
"slug": "slug",
"updated_at": "2019-12-27T18:11:19.117Z",
"zone_id": "zone_id",
"description": "description",
"metadata": {
"docs_url": "https://example.com"
},
"protocols": {
"oauth2": {
"post_logout_redirect_uris": [
"https://example.com"
],
"redirect_uris": [
"https://example.com"
]
}
}
}
],
"page_info": {
"has_next_page": true,
"has_previous_page": true,
"end_cursor": "end_cursor",
"start_cursor": "start_cursor"
},
"pagination": {
"after_cursor": "x",
"before_cursor": "x",
"total_count": 0
}
}Returns Examples
{
"items": [
{
"id": "id",
"consent": "implicit",
"created_at": "2019-12-27T18:11:19.117Z",
"dependencies_count": 0,
"identifier": "x",
"name": "x",
"organization_id": "organization_id",
"owner_type": "platform",
"slug": "slug",
"updated_at": "2019-12-27T18:11:19.117Z",
"zone_id": "zone_id",
"description": "description",
"metadata": {
"docs_url": "https://example.com"
},
"protocols": {
"oauth2": {
"post_logout_redirect_uris": [
"https://example.com"
],
"redirect_uris": [
"https://example.com"
]
}
}
}
],
"page_info": {
"has_next_page": true,
"has_previous_page": true,
"end_cursor": "end_cursor",
"start_cursor": "start_cursor"
},
"pagination": {
"after_cursor": "x",
"before_cursor": "x",
"total_count": 0
}
}