The following API call returns metadata of PGP keys for a specified list of users.
Resource URL
/api/1.0/pgp-key/recipients
Resource Information
| Response formats | JSON |
| Response code | 200 |
| Requires authentication? | Yes |
| HTTP Method | POST |
Parameters
| Name | Type | Default Value | Description |
ids required | uuid[] | - | list of recipient IDs for which PGP keys should be returned. |
Example Request URL
Example Result
{
"id": <uuid>,
"name": <string>,
"created": <timestamp>,
"modified": <timestamp>,
"public": <base64 string>,
"recipient_id": <uuid>,
"email": <string>
}
0 Comments