v1

latestOpenAPI 3.0.12026-08-0674476716.0 KB
Authentication keys

Get public keys

The GET /member/{memberId}/keys endpoint retrieves a list of all public keys, for the specified member.

get/member/{memberId}/keys

Path parameters

memberIdstring required
Example:m:3qVTbXqXZza2VTKa28BPbExmxz9t:5zKtXEAq

This id specifies the member for whom the public keys are to be retrieved.

Response

Successful response

Example response

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