Skip to main content
DELETE
Unregister an Expo push token
The response body shown here is a static example, not live data. After you click Send, your live result appears in a separate panel headed 200 OK. The panel under the status-code tabs is a fixed sample from the spec — its field values (fees, prices, sizes, IDs, timestamps) are placeholders. Use Send, or call the endpoint, for current values.
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).