Skip to main content
Altcraft Docs LogoAltcraft Docs Logo
User guideDeveloper guideAdmin guide
Company siteHelp center
English
  • Русский
  • English
v74
  • v74
  • v73
  • v72
Login
  • User API documentation
  • API interaction
  • Matching
  • Profiles
  • Databases
  • Resources
  • Segments
  • Suppression lists
  • Templates and fragments
  • Campaigns
  • Mailings
    • Activate mailing
    • Deactivate mailing
    • Get mailing list
    • Get mailing information
    • Get mailing log
    • Clone mailing
    • Delete mailing
    • Get mailing status
    • Broadcast mailings
      • Get broadcasts list
      • Get broadcast information
      • Create broadcast mailing
      • Update broadcast mailing
      • Launch a broadcast mailing
    • Regular mailings
    • Trigger mailings
  • Automation scenarios
  • Loyalty Programs
  • Promo codes
  • Goals
  • Application push notifications
  • Market
  • Analytic reports
  • SendersDev
  • External datatables queries
  • Objects
  • Miscellaneous
  • Importing the API collection in Postman
  • List of API endpoints
  • SDK
  • Mailings
  • Broadcast mailings
  • Update broadcast mailing
Documentation for version v74

Update broadcast mailing

Description​

Updates mailing details, changes an existing mailing settings.

Request URL​

Method: POST

https://example.com/api/v1.1/campaigns/broadcasts/update

Request parameters​

ParameterTypeExampleRequiredDescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
idint1YesMailing ID
formatstring"json"NoResponse data format.
By default – json
namestring"Broadcast mailing name"YesMailing name
is_activebooltrueNoActivate or deactivate mailing
data_typestring"list"YesAudience source type
data_idint12YesAudience source ID
resource_idint24NoResource ID
contentJSON array
YesMessage template object
subidstring"Adv_1"NoMailing SubID
start_scheduleJSON object
NoStart schedule object
limitint0NoMailing cycle limitation
aglimit_countint0NoIncrease limit each cycle — number
agllimit_percentfloat99.0NoIncrease limit each cycle — percent
policy_idint1NoSending policy ID
push_sending_modestring"fanout" (default)
"last"
NoPush notification sending mode (push channels only)
attributesobject"season":"summer_2024"NoAssigned attributes and their values
Smart settings
virtual_sender_idint12NoVirtual sender ID
(Smart accounts)
is_random_tracking_prefixboolfalseNoRandom tracking domain prefix
(Smart accounts)
custom_tracking_domainsJSON array["trk.example.com", "trk2.example.com"]NoTracking domains list
(Smart accounts)
blind_carbon_copyJSON array["john@example.com", "george@example.com"]NoHidden copy email addresses
(Smart accounts)
unconditional_sendingbooltrueNoSend messages regardless of subscription status
(Smart accounts)
watched_list_idint12NoMailing watchers database ID
(Smart accounts)
watcher_limitint100NoWatchers limit
(Smart accounts)
info

You cannot change the channel in a saved mailing. When passing such parameters as send_channel, content_type, send_email_content, send_sms_content, send_push_content, the request will not return an error, but it will not update the sending channel either.

Request example​

  • JSON
  • XML
{
"token": "abcdefghijklmnqrstuvwxyz",
"virtual_sender_id": 5,
"content": [
{
"from_email": "example@example.com",
"from_name": "Alexandra",
"message_id": 14,
"replyto_email": "example@example.com",
"replyto_name": "Victoria",
"subject": "Hi!"
}
],
"custom_tracking_domains": [
"trk.example.com",
"trk.example.org"
],
"data_id": 1,
"data_type": "list",
"id": 90,
"is_active": true,
"limit": 10,
"name": "Broadcast",
"resource_id": 20,
"start_schedule": {
"start_hours": [
1,
2,
3,
4
],
"start_mdays": [
1
],
"start_mins": [
1,
2,
3,
4
],
"start_months": [
12
],
"start_wdays": [],
"start_years": [
2024
]
}
}
<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<virtual_sender_id>5</virtual_sender_id>
<content array='true'>
<from_email>broadcast1@altcraft.com</from_email>
<from_name>Margorita</from_name>
<message_id>14</message_id>
<replyto_email>example@example.com</replyto_email>
<replyto_name>Victoria</replyto_name>
<subject>Good morning!</subject>
</content>
<custom_tracking_domains>trk.example.com</custom_tracking_domains>
<custom_tracking_domains>trk.example.org</custom_tracking_domains>
<data_id>1</data_id>
<data_type>list</data_type>
<id>89</id>
<is_active>true</is_active>
<limit>10</limit>
<name>Broadcast</name>
<resource_id>20</resource_id>
<start_schedule>
<start_hours>1</start_hours>
<start_hours>2</start_hours>
<start_hours>3</start_hours>
<start_hours>4</start_hours>
<start_mins>1</start_mins>
<start_mins>2</start_mins>
<start_mins>3</start_mins>
<start_mins>4</start_mins>
<start_mdays array='true'>1</start_mdays>
<start_months array='true'>12</start_months>
<start_wdays array='true'></start_wdays>
<start_years array='true'>2024</start_years>
</start_schedule>
</xml>

Response example​

  • JSON
  • XML
{
"data": {
"saved_id": 90
},
"error": 0,
"error_text": "Successful operation"
}
<xml>
<data>
<saved_id>90</saved_id>
</data>
<error>0</error>
<error_text>Successful operation</error_text>
</xml>

Response parameters​

ParameterTypeDescription
errorintError code
error_textstringError text
saved_idintMailing ID
Last updated on May 29, 2024
Previous
Create broadcast mailing
Next
Launch a broadcast mailing
  • Description
  • Request URL
  • Request parameters
  • Request example
  • Response example
  • Response parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.