Puts the URL your app is hosted on.
Input
Encoding
application/jsonurl
string
Required
The expo push token
Output
Encoding
application/jsonsuccess
boolean
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": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "The expo push token"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Puts the URL your app is hosted on."
}