Rest API

Notification

Register as a new device

POST
/device/register
Server
/device/register

Request Body

application/jsonRequired

expoToken
Required
string

deviceOs
Required
string

Value in: "ios" | "android" | "unknown"

languagestring

Default: "en"
curl -X POST "https://demo.expostarter.com/api/device/register" \
  -H "Content-Type: application/json" \
  -d '{
    "expoToken": "string",
    "deviceOs": "ios",
    "language": "en"
  }'

Successful response

{
  "status": true
}