Store the Unipass certificate Run in API Explorer
Ask AI
Store the Unipass certificate on the currently authenticated user.
POST
/api/v1/unipass/certificate
curl \
--request POST 'https://api.plannrcrm.com/api/v1/unipass/certificate' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"certificate_email":"example@example.com","certificate":"file-contents"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"certificate_email": "example@example.com",
"certificate": "file-contents"
}
Response examples (201)
{
"uuid": "e8af3a3c-38a6-4c79-9b33-c735d5fbd50d",
"created_at": "2025-12-24T11:02:58+00:00",
"expires_at": "2026-12-24T11:02:58+00:00",
"updated_at": "2025-12-24T11:02:58+00:00",
"certificate_email": "example@example.com",
"certificate_serial_number": "132777832123178720399127681141946521234"
}