Get the Unipass certificate

GET /api/v1/unipass/certificate

Get the Unipass certificate on the currently authenticated user. Returns 404 if there is no certificate.

Responses

GET /api/v1/unipass/certificate
curl \
 --request GET https://api.plannrcrm.com/api/v1/unipass/certificate \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "uuid": "7f837bfa-a4b3-4a3a-9156-fdec235e571d",
  "created_at": "2025-02-20T10:13:00+00:00",
  "expires_at": "2026-02-20T10:13:00+00:00",
  "updated_at": "2025-02-20T10:13:00+00:00",
  "certificate_email": "example@example.com",
  "certificate_serial_number": "132777832123178720399127681141946521234"
}