System endpoint to send notifications related to contact imports. Requires role authentication.
Input
Encoding
application/jsonfrom
stringdid
Required
The DID of who this notification comes from.
to
stringdid
Required
The DID of who this notification should go to.
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": [
"from",
"to"
],
"properties": {
"to": {
"type": "string",
"format": "did",
"description": "The DID of who this notification should go to."
},
"from": {
"type": "string",
"format": "did",
"description": "The DID of who this notification comes from."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "System endpoint to send notifications related to contact imports. Requires role authentication."
}