List Issuer Profile

This method lists the available issuer profile . The weightage for this API is 1

API Specification

Lists Issuers profile

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

Lists the available issuer profile under the given instance.

Headers

NameTypeDescription

Authorization*

String

User Auth Key obtained from Dash

DappId*

String

DappId

Request Body

NameTypeDescription

search*

String

Issuer Profile Name

limit*

Numeric

total No of pages to be displayed

page*

Numeric

No of pages

{
    "Data": {
        "data": [{
            "CreatedAt": "2023-09-21T04:53:21.559Z",
            "DIDId": "did:key:z6MkhNjTaHAmf1fx9JuWXHUqGU7k4tX6RKCHkvHnXdrxZqGa",
            "DIDMethodType": "key",
            "Id": "650bcc41024ceedb7fefb1c4",
            "InstanceId": "INS_DI_22_2023921",
            "IssuerDescription": "demo",
            "IssuerDesignation": "demo",
            "IssuerName": "demo",
            "LastUsed": "2023-09-21T04:53:21.559Z",
            "Status": "ACTIVE",
            "SubscriptionId": "6224416276"
        }],
        "totalCount": 1
    },
    "Message": "",
    "Status": "SUCCESS"
}

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

curl --location -g --request POST 'https://api.krypcore.com/api/v0/did/listIssuerProfile' \
--header 'Authorization: xxxxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
  "limit": 5,
  "page": 1,
  "search": ""
}'

Last updated