Send a test Expo push to a token.
Input
Encoding
application/jsonbody
string
Optional
No description available.
title
string
Optional
No description available.
token
string
Required
No description available.
Output
Encoding
application/jsonerror
string
Optional
No description available.
ok
boolean
Required
No description available.
ticket
unknown
Optional
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"
],
"properties": {
"body": {
"type": "string"
},
"title": {
"type": "string"
},
"token": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
},
"error": {
"type": "string"
},
"ticket": {
"type": "unknown"
}
}
},
"encoding": "application/json"
},
"description": "Send a test Expo push to a token."
}