v1

latestOpenAPI 3.0.12026-08-0674476716.0 KB
Authentication keys

Get a public key

The GET /member/{memberId}/keys/{keyId} endpoint retrieves the details of a specific public key, for the specified member.

get/member/{memberId}/keys/{keyId}

Path parameters

memberIdstring required
Example:m:3qVTbXqXZza2VTKa28BPbExmxz9t:5zKtXEAq

This id specifies the member for whom the public key is to be retrieved.

keyIdstring required
Example:cJSOA7nQscQBScnE

This id specifies the public key to be retrieved.

Response

Successful response

Example response

{
  "key": [
    {
      "id": "cJSOA7nQscQBScnE",
      "keyAlgorithm": "ED25519",
      "publicKey": "-----BEGIN PUBLIC KEY-----\nMCowBQYDK2VwAyEAGxDta2XXlr6Vxqk4kJq3+bLowoimRo+B52stoO7AWNg=\n-----END PUBLIC KEY-----"
    }
  ]
}