Create a new DID that will be managed by this service. A new arbiter will be created in order to manage access to the DID. The arbiter will be configured with a default policy that sets the creator as the owner of the arbiter and allows them to change the DID document. The policy can also be changed later. The created DID will be returned
Output
application/jsondid
stringdid
Required
A decentralized identifier (DID).
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"output": {
"schema": {
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"description": "Create a new DID that will be managed by this service.\n\nA new arbiter will be created in order to manage access\nto the DID. The arbiter will be configured with a default\npolicy that sets the creator as the owner of the arbiter\nand allows them to change the DID document.\n\nThe policy can also be changed later.\n\nThe created DID will be returned"
}