DORRS Data
Login
Client APIIssuers

Issuer Profile update

PUT
/backend/api/v1/issuers/profile/{id}/

Update an existing Issuer Profile by ID. Send multipart/form-data.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*integer

ID of the Issuer Profile to update

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 PUT "https://example.com/backend/api/v1/issuers/profile/0/"
{  "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}