Skip to main content

Get service user key

Get a service user public RSA JWK set.

Path Parameters
    id string required

    The unique ID of the service user to get a key for.

    key_id string required

    The unique ID of the key to get.

Responses

A successful response.


Schema
    keys object[]
  • Array [
  • kty string

    Key Type.

    alg string

    Algorithm.

    use string

    Permitted uses for the public keys.

    kid string

    Key ID.

    n string

    Used for RSA keys.

    e string

    Used for RSA keys.

    x string

    Used for ECDSA keys.

    y string

    Used for ECDSA keys.

    crv string

    Used for ECDSA keys.

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

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
key_id — path required
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/serviceusers/:id/keys/:key_id' \
-H 'Accept: application/json'