---
title: "List Registrations by Application"
method: GET
path: "/v3/portals/{portalId}/applications/{applicationId}/registrations"
tags: ["Application Registrations"]
---

# List Registrations by Application

`GET /v3/portals/{portalId}/applications/{applicationId}/registrations`

Lists each API that this application is registered for and their current status (e.g., pending, approved, rejected, revoked).

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `sort` string
- `filter` object
  - `status` StringFieldFilter — Filter using **one** of the following operators: `eq`, `oeq`, `neq`, `contains`, `ocontains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
    - `ocontains` string — The field contains any of the provided values.
    - `oeq` string — The field matches any of the provided values.
    - `neq` string — The field does not match the provided value.

## Response `200`

A paginated list of application registrations.

- ListApplicationRegistrationsResponse
  - `meta` PaginatedMeta, required — returns the pagination information
    - `page` PageMeta, required — Contains pagination query parameters and the total number of objects returned.
      - `number` number, required
      - `size` number, required
      - `total` number, required
  - `data` ApplicationRegistration[], required
    - `id` string, uuid, required — Contains a unique identifier used for this resource.
    - `created_at` string, date-time, required — An ISO-8601 timestamp representation of entity creation date.
    - `updated_at` string, date-time, required — An ISO-8601 timestamp representation of entity update date.
    - `status` 'approved' | 'pending' | 'revoked' | 'rejected', required — The status of an application registration request. Each registration is linked to a single API, and application credentials will not grant access to the API until the registration is approved. Pending, revoked, and rejected registrations will not provide access to the API.
    - `api` object, required — Details about the API the application is registered to.
      - `id` string, uuid, required — Contains a unique identifier used for this resource.
      - `name` string, required — The name of the API the application is registered to.
      - `version` string, nullable, required — The version of the API the application is registered to.
      - `entity_type` 'api' | 'api_package', required — The type of entity that is being published. Can be either an API or an API Package.
    - `application` object, required — Details about the application the registration is part of.
      - `id` string, uuid, required — Contains a unique identifier used for this resource.
      - `name` string, required — The name of the application the registration is part of.
    - `consumer` object — Details about the consumer associated with this application registration.
      - `id` string, uuid, required — Contains a unique identifier used for this resource.
      - `custom_id` string — The custom ID of the associated consumer.
      - `username` string — The username of the associated consumer.
      - `control_plane_id` string, uuid, required — Contains a unique identifier used for this resource.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/revisions/f920f418f552/schema)
