Quatrix APIs v1.0
Space shortcuts
Quatrix APIs v1.0 QA1
Skip to end of metadata
Go to start of metadata

This API call returns PGP key metadata for a given contact ID. If the ID is of the logged-in contact, private and public parts are returned, otherwise only public part is returned.

Key body is base64 encoded string of armored or binary key value.

Resource URL

/api/1.0/contact/pgp-key/<ID>

Resource Information

 

Response formatsJSON
Response code200
Requires authentication?Yes
HTTP MethodGET

 

Example Request URL

Example Result

{
    "id": <uuid>,
    "name": <string>,
    "created": <timestamp>,
    "modified": <timestamp>,
    "public": <base64 string>,
    "private": <base64 string>,
    "email": <string>
}

 

 

 

 

  • No labels
Write a comment…
Quatrix APIs v1.0 QA1