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
Name
Type
Description
Authorization*
String
User Auth Key obtained from Dash
DappId*
String
DappId
Request Body
Name
Type
Description
did*
String
DID key from the dashboard
{
"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
Was this helpful?