Last updated 2 years ago
Was this helpful?
PUSH
EMAIL
SMS
curl -L \ --request DELETE \ --url '/communications/notification-channels/{channel}' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200 }
curl -L \ --url '/communications/notification-channels' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "notificationChannels": [ { "channelType": "PUSH", "isActive": true, "text": "Push Notification" } ] } }
ca91d88c-21c1-48da-95ac-8b57fdc62869
en
-2800
HN
curl -L \ --request POST \ --url '/communications/notification-channels/device-registration' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "channel": "SMS", "playerId": "ca91d88c-21c1-48da-95ac-8b57fdc62869", "language": "en", "timezone": "-2800", "country": "HN" }'
{ "statusCode": 201 }
1.0.1
curl -L \ --request POST \ --url '/communications/notification-channels' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "channelType": "SMS", "gameVersion": "1.0.1" }'
john.smith@example.com
es
curl -L \ --request PUT \ --url '/communications/notification-channels/{channel}' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "identifier": "john.smith@example.com", "language": "es", "timezone": "-2800", "gameVersion": "1.0.1", "tags": {}, "country": "HN" }'