Issuers

Update an issuer

PATCH/v1/issuers/{id}

Updates an issuer identity. Partial.

API key · or dashboard session.

Request

Shell
curl -fsS -X PATCH "$API/v1/issuers/iss_0198f80c-…" \
  -H "Authorization: Bearer $PAYDAY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Acme Holdings LLC" }'

Response

200 OK
{
  "id": "iss_0198f80c-2222-7dc1-a369-90556a64f700",
  "name": "Acme Holdings LLC",
  "contact_email": "billing@acme.example",
  "details": null,
  "email_verified": true,
  "email_verified_at": "2026-09-06T12:05:00Z",
  "payout_addresses": [],
  "created_at": "2026-09-06T12:00:00Z",
  "updated_at": "2026-09-06T12:00:00Z"
}

Omitted fields are unchanged. details: null clears. A changed contact_email resets email_verified. Issued requests are unaffected.

Path parameters

idiss_ idrequired

Body

namestring
1–255 bytes. Unique.
contact_emailstring
Resets verification.
detailsstring | null

Response

Issuer.

Status codes

  • 409issuer_name_taken