Skip to main content

Identities

The identity concept is described here.

tip

Need some changes ? More endpoints ? Please open a github issue or contact us at love@misakey.com.


List identities public keys#

Retrieve the public keys of an identity using its identifier value (a.k.a. email).

Request#

Authorizations#
Headers:
  • Authorization: a bearer access token for your organization. Example: Authorization: Bearer 2YotnFZFEjr1zCsicMWpAA
GET /identities/pubkey?identifier_value={identifier_value}

Query Parameters:

Response#

The identity public key, the identity AES-RSA public key, and the public keys of the crypto provisions linked to this identity and to the querying org (if querier is an org).

Code:

HTTP 200 OK
{
"identity_pubkey": "eB-p2ZjDb89I-nBshK4uBw",
"identity_pubkey_aes_rsa": "com.misakey.aes-rsa-enc:hOq-0WAlpERAEBFJ3Lf7rw",
"crypto_provisions": [
{
"public_key": "xWGSTUceOe2uMjv466B8MmP8VrlBHGAj8QGHxrmDs1AQhZI8y_nF3tG4HaqEn20fwvv_NWLeHC28Pg5u-K2iqw"
}
]
}