Skip to main content
DELETE
/
v1
/
api-meta
/
notifications
/
tokens
Unregister an Expo push token
curl --request DELETE \
  --url https://api.testnet.arcus.xyz/v1/api-meta/notifications/tokens
{
  "token": "<string>",
  "unregistered": true
}
Removes a previously registered Expo push token. Public — no X-API-Key and no signature: the opaque token is itself the capability (it is useless to anyone but the device that owns it). Idempotent — an unknown token returns 200 with unregistered: false.

Query Parameters

token
string
required

The Expo push token to remove.

Maximum string length: 256
Pattern: ^Expo(nent)?PushToken\[[A-Za-z0-9_.\-]+\]$

Response

Token removed, or a no-op if it was unknown.

token
string
required
unregistered
boolean
required

True when a matching token was found and removed; false when the token was unknown (the call is idempotent either way).