Skip to main content

Create issuer

Create a new issuer account

Endpoint Information

  • Method: POST
  • URL: /issuer
  • Authentication Required: Yes

Authentication

API key must be provided in the x-api-key header.

Request body

The request body must include:

  • businessId – A string representing the unique businessId of the issuer

Example request

{
"businessId": "1234567-8"
}

Responses

✅ 200 – Success

{
"message": "Issuer created successfully",
"data": {
"walletId": "0x123..."
}
}