DORRS Data
Login
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

application/json

application/json

application/json

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}
{  "code": 400,  "message": "field_name: This field is required."}
{  "code": 401,  "message": "Authentication credentials were not provided."}
{  "code": 403,  "message": "You do not have permission to perform this action."}
{  "message": "Internal Server Error",  "code": 500}