Skip to content

Activate Issuer

Reactivates an issuer that was previously soft-deleted via DELETE /v1/issuers/:id.

PATCH /v1/issuers/:id/activate

Authentication

Authorization: Bearer <api-key>

Path parameters

ParameterDescription
idIssuer UUID of a deactivated issuer belonging to your tenant

Plan limits

Reactivation re-runs the same branch/issue-point checks as creating a new branch (POST /v1/issuers), so deactivating and reactivating an issuer cannot be used to exceed your subscription tier's limits:

  • If the issuer's branchCode has no other active issue point, reactivating counts against your tier's maxBranches.
  • Otherwise it counts against that branch's maxIssuePointsPerBranch.

Response

200 OK

json
{ "ok": true }

Errors

StatusCodeWhen
400VALIDATION_FAILEDid is not a positive integer
401UNAUTHORIZEDMissing or invalid API key
402BRANCH_LIMIT_REACHEDReactivating would exceed the tenant's plan branch limit
402ISSUE_POINT_LIMIT_REACHEDReactivating would exceed the plan's issue-points-per-branch limit
403ISSUER_FORBIDDENIssuer belongs to a different tenant
404ISSUER_NOT_FOUNDIssuer id does not exist, belongs to another tenant, or is already active
429TOO_MANY_REQUESTSRate limit exceeded

Comprobify API Documentation