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.

Headers

  • X-PLANNR-ACCOUNT-UUID string

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was updated.

    • expires_at string

      The expiry date of the certificate

    • certificate_email string

      The email address associated with the certificate

    • certificate_serial_number string

      The serial number of the certificate

GET /api/v1/unipass/certificate
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/unipass/certificate' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "uuid": "e67a108f-f97b-4240-b51f-2a91adc948b1",
  "created_at": "2025-06-26T11:37:01+01:00",
  "expires_at": "2026-06-26T11:37:01+01:00",
  "updated_at": "2025-06-26T11:37:01+01:00",
  "certificate_email": "example@example.com",
  "certificate_serial_number": "132777832123178720399127681141946521234"
}