Bind a device push token to the authenticated viewer.
Input
Encoding
application/jsonaccountsOnDevice
array
Optional
No description available.
kind
string
Optional
No description available.
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": {
"kind": {
"type": "string",
"knownValues": [
"expo",
"apns",
"fcm"
]
},
"token": {
"type": "string"
},
"platform": {
"type": "string",
"knownValues": [
"ios",
"android"
]
},
"accountsOnDevice": {
"type": "array",
"items": {
"type": "string",
"format": "did"
}
}
}
},
"encoding": "application/json"
},
"description": "Bind a device push token to the authenticated viewer."
}