account-admin
Gets the Keys for the Account
OK - Returns the Account Keys response.
Unauthorized
Forbidden
{- "accountKeys": [
- {
- "identity": "string",
- "name": "string",
- "publicKey": "string",
- "roles": [
- "string"
]
}
]
}
account-admin
Creates an Account Key.
Note - The privateKey
that is returned with this request needs to be stored securely
It is not retrievable after this request.
Created - Returns the Vaulted Key response.
Unauthorized
Forbidden
{- "name": "string",
- "roles": [
- "string"
]
}
{- "identity": "string",
- "name": "string",
- "publicKey": "string",
- "privateKey": "string",
- "roles": [
- "string"
]
}
account-admin
Gets an Account Key by the publicKey
.
OK - Returns the Key response.
Unauthorized
Forbidden
{- "identity": "string",
- "name": "string",
- "publicKey": "string",
- "roles": [
- "string"
]
}
account-admin
Updates an Account Key by the publicKey
.
No Content.
Unauthorized
Forbidden
{- "name": "string",
- "roles": [
- "string"
]
}