---
title: "List Event Gateway DataPlane Certificates"
method: GET
path: "/v1/event-gateways/{gatewayId}/data-plane-certificates"
tags: ["Event Gateway DataPlane Certificates"]
---

# List Event Gateway DataPlane Certificates

`GET /v1/event-gateways/{gatewayId}/data-plane-certificates`

Returns a list of dataplane certificates that are associated to this event gateway. A dataplane certificate allows dataplanes configured with the certificate and corresponding private key to establish connection with this event gateway.

## Query parameters

- `page[size]` integer
- `page[after]` string
- `filter` object
  - `name` StringFieldContainsFilter — Filters on the given string field value by fuzzy match.
    - `contains` string, required

## Response `200`

A paginated list response for a collection of certificates associated with an Event Gateway.

- object
  - `meta` CursorMeta — Pagination metadata.
    - `page` CursorMetaPage, required
      - `first` string, path — URI to the first page
      - `last` string, path — URI to the last page
      - `next` string, path, nullable, required — URI to the next page
      - `previous` string, path, nullable, required — URI to the previous page
      - `size` number, required — Requested page size
  - `data` EventGatewayDataPlaneCertificate[]
    - `id` string, uuid, required — The unique identifier of the certificate.
    - `certificate` string, required — JSON escaped string of the certificate.
    - `name` string — The name to identify of the certificate.
    - `description` string — A description of the certificate.
    - `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.
    - `metadata` CertificateMetadata — Metadata extracted from a certificate.
      - `issuer` string — The issuer of the certificate.
      - `subject` string — The subject of the certificate.
      - `key_usages` string[] — The key usages of the certificate.
      - `expiry` integer — The expiry date of the certificate as a unix timestamp.
      - `san_names` string[] — The Subject Alternative Names (SAN) of the certificate.
      - `dns_names` string[] — The DNS names in the certificate SAN.
      - `email_addresses` string[] — The email addresses in the certificate SAN.
      - `ip_addresses` string[] — The IP addresses in the certificate SAN.
      - `uris` string[] — The URIs in the certificate SAN.
      - `sha256_fingerprint` string — The SHA-256 fingerprint of the certificate.

## Other responses

- `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/versions/0261aef4b1e2/schema)
