PUT
/
verify
/
devices
/
{deviceID}
/
push-token
Update push notification tokens for the device
curl --request PUT \
  --url https://coreapi-dev.us.bcpapers.ca/verify/devices/{deviceID}/push-token \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "apns_token": "<string>",
  "fcm_token": "<string>"
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Paste the JWT token only (no "Bearer " prefix needed — the UI adds it automatically).

Path Parameters

deviceID
string
required

Device UUID

Body

application/json

Tokens

apns_token
string
fcm_token
string

Response

204 - undefined