Create issuer Profile

This creates a issuer profile using method. The weightage for this API is 10

API Specification

Create issuer profile

POST https://api.krypcore.com/api/v0/did/createIssuerProfile

Creates a new issuer profile under the given instance.

Headers

NameTypeDescription

Authorization*

String

User Auth Key obtained from Dash

DappId*

String

DappId

Request Body

NameTypeDescription

issuerDesgination*

String

desgination of the issuer

issuerDescription*

String

Description of issuer

issuerName*

String

The name of the issuer

method*

String

method type

{
    Data: "did:key:z6Mkfm8bqp23Q5629bnmzL26ksvfMgfFUA9hWpZ1dWjpARsQ",
    Message: "Issuer Profile Created",
    Status: "SUCCESS"
}

Take a look at how you might call this method using our official libraries, or via curl:

curl --location --request POST 'https://api.krypcore.com/api/v0/did/createIssuerProfile' \
--header 'Authorization: xxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
  "issuerDescription": "xxx",
  "issuerDesignation": "xxx",
  "issuerName": "issuer",
  "method": "key"
}'

Last updated