Overrides
The provider overrides key in the broadcast payload can be used to change the default behavior of the channel handler.
overrides >> providers >> apns
Examples
Override aps key
Overrides
{
"providers": {
"ios": {
"aps": {
"alert": {
"launch-image": "launch image",
"loc-args": [
"loc",
"args"
],
"loc-key": "loc key",
"title-loc-args": [
"title",
"loc",
"args"
],
"title-loc-key": "title loc key"
},
"badge": 122,
"content-available": 1,
"sound": "my_sound"
}
}
}
}
Payload
{
"aps": {
"alert": {
"launch-image": "launch image",
"loc-args": [
"loc",
"args"
],
"loc-key": "loc key",
"title": "notification title 1",
"title-loc-args": [
"title",
"loc",
"args"
],
"title-loc-key": "title loc key"
},
"badge": 122,
"content-available": 1,
"sound": "my_sound"
},
"custom-attributes": {}
}
Override mutable-content
Overrides
{
"providers": {
"ios": {
"mutable-content": 1
}
}
}
Payload
{
"aps": {
"alert": {
"body": "@Charles Paintin Tony's details, signature etc on this one",
"title": "Ross Parker mentioned you in Reddoor Live - RFP - AD City Cup - Aldar Activation - A990001-2025-T-6005 - PR 26343: Technical Proposal"
},
"badge": 42
},
"custom-attributes": {
"audience": "user",
"body": "@Charles Paintin Tony's details, signature etc on this one",
"document": {
"comment-id": "ff002c29-3279-4f60-a427-ea596412204a",
"document-id": "843c7692-39bd-41ed-b841-2a873f0a9b7c",
"slide-id": "bb951254-9388-4029-ae6d-003dde9c97df",
"workspace-id": "c0d4647a-0ee4-40ec-b9f5-334e567e7e02"
},
"html-body": "\\u003cp\\u003e@Charles Paintin Tony's details, signature etc on this one\\u003c/p\\u003e",
"html-title": "\\u003cb\\u003eRoss Parker\\u003c/b\\u003e mentioned you in \\u003cb\\u003eReddoor Live - RFP - AD City Cup - Aldar Activation - A990001-2025-T-6005 - PR 26343: Technical Proposal\\u003c/b\\u003e",
"sender": {
"profile-picture-url": "https://pitch-assets-ccb95893-de3f-4266-973c-20049231b248.s3.eu-west-1.amazonaws.com/7f4ef02b-c044-4355-9ca8-fb78da3ad478",
"username": "Ross Parker"
},
"source": "direct",
"title": "Ross Parker mentioned you in Reddoor Live - RFP - AD City Cup - Aldar Activation - A990001-2025-T-6005 - PR 26343: Technical Proposal",
"type": "comment-mention"
}
}