Bind a device push token to the authenticated viewer.
Input
Encoding
application/jsonaccountsOnDevice
array
Optional
DIDs signed in on this device, for binding reconciliation.
platform
string
Required
No description available.
token
string
Required
No description available.
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": [
"token",
"platform"
],
"properties": {
"token": {
"type": "string"
},
"platform": {
"type": "string",
"knownValues": [
"ios",
"android"
]
},
"accountsOnDevice": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"description": "DIDs signed in on this device, for binding reconciliation."
}
}
},
"encoding": "application/json"
},
"description": "Bind a device push token to the authenticated viewer."
}