Skip to content

List Issuers

Returns all active issuers (branches / issue points) belonging to the authenticated tenant.

GET /v1/issuers

Authentication

Authorization: Bearer <api-key>

Response

200 OK

json
{
  "ok": true,
  "issuers": [
    {
      "id": 1,
      "ruc": "1234567890001",
      "businessName": "ACME S.A.",
      "tradeName": "ACME",
      "branchCode": "001",
      "issuePointCode": "001",
      "branchAddress": "Av. Amazonas 123",
      "certFingerprint": "AA:BB:CC:...",
      "certExpiry": "2027-01-01T00:00:00.000Z"
    }
  ]
}

Issuer fields

FieldDescription
idNumeric issuer id — pass as X-Issuer-Id on document requests
rucTaxpayer RUC
businessNameLegal business name
tradeNameTrade name (null if not set)
branchCode3-digit SRI branch code
issuePointCode3-digit SRI issue point code
branchAddressBranch address (null if not set)
certFingerprintCertificate fingerprint (null if no cert loaded)
certExpiryCertificate expiry date (null if no cert loaded)

Errors

CodeStatusWhen
UNAUTHORIZED401Missing or invalid API key

Comprobify API Documentation