The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth.
Input
Encoding
application/jsonappId
string
Required
No description provided.
platform
string
Required
No description provided.
serviceDid
stringdid
Required
A decentralized identifier (DID).
token
string
Required
No description provided.
Try 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": [
"serviceDid",
"token",
"platform",
"appId"
],
"properties": {
"appId": {
"type": "string"
},
"token": {
"type": "string"
},
"platform": {
"type": "string",
"knownValues": [
"ios",
"android",
"web"
]
},
"serviceDid": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"description": "The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth."
}