Add a label to an account.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
labelValue
string
Required
No description available.
reason
string
Optional
No description available.
Output
Encoding
application/jsonTry It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"did",
"labelValue"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"reason": {
"type": "string"
},
"labelValue": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Add a label to an account."
}