Delete Issuer Profile

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

API Specification

Delete Issuer Profile

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

Delete Issuer Profile under the given instance.

Headers

Request Body

{
    "Data": null,
    "Message": "Issuer Profile Deleted",
    "Status": "SUCCESS"
}

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

curl --location --globoff 'https://api.krypcore.com/api/v0/did/deleteIssuerDid' \
--header 'Authorization: xxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data '{
  "did": "did:key:z6MkhNjTaHAmf1fx9JuWXHUqGU7k4tX6RKCHkvHnXdrxZqGa"
}'

Last updated