Skip to main content

List service user keys

List all the keys of a service user with its details except jwk.

Path Parameters
    id string required

    The unique ID of the service user to list keys for.

Responses

A successful response.


Schema
    keys object[]
  • Array [
  • id string
    title string
    principal_id string
    public_key string
    created_at date-time

    The time when the secret was created.

  • ]
GET /v1beta1/serviceusers/:id/keys

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
id — path required
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/serviceusers/:id/keys' \
-H 'Accept: application/json'