REST API DOCS
Client APIIssuers

Issuer Profile create

POST
/backend/api/v1/issuers/profile/

Create a new Issuer Profile. Send multipart/form-data.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

multipart/form-data

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/backend/api/v1/issuers/profile/" \  -F name="Test Issuer"
{  "message": "success",  "data": {    "id": 33,    "name": "Test Issuer",    "description": "<p>Some description...</p>",    "web_address": "http://test.domain.com",    "logo": null,    "created_at": "2026-05-28T08:12:12.076976Z",    "updated_at": "2026-05-28T08:12:12.076986Z"  },  "code": 200}