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
  • Automation scenarios
  • Loyalty Programs
  • Promo codes
  • Goals
  • Application push notifications
  • Market
  • Analytic reports
  • SendersDev
    • Get senders list
    • Virtual senders (Smart accounts only)
  • External datatables queries
  • Objects
  • Miscellaneous
  • Importing the API collection in Postman
  • List of API endpoints
  • SDK
  • SendersDev
  • Get senders list
Documentation for version v74

Get senders list

Description​

Retrieves a list of senders available for the current account.

Request URL​

Method: POST

https://example.com/api/v1.1/senders/list

Request parameters​

ParameterTypeExampleRequiredDescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
from_idint2NoThe first sender on the list ID.
By default – 1
limitint10NoSenders list limit.
By default – 1000
formatstring"json"NoResponse data format.
By default – json

Request example​

  • JSON
  • XML
{
"token": "abcdefghijklmnqrstuvwxyz",
"limit": 2
}
<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<limit>2</limit>
</xml>

Response example​

  • JSON
  • XML
{
"data": [
{
"channel": "email",
"id": 1,
"name": "AKMTA sender",
"type": "akmta"
},
{
"channel": "sms",
"id": 2,
"name": "Bulk SMS sender",
"type": "bulksms_com"
}
],
"error": 0,
"error_text": "Successful operation",
"next_from_id": 3,
"total_count": 2
}
<xml>
<data>
<channel>email</channel>
<id>3</id>
<name>Email sender</name>
<type>akmta</type>
</data>
<data>
<channel>sms</channel>
<id>2</id>
<name>Bulk SMS sender</name>
<type>bulksms_com</type>
</data>
<error>0</error>
<error_text>Successful operation</error_text>
<next_from_id>5</next_from_id>
<total_count>5</total_count>
</xml>

Response parameters​

ParameterTypeDescription
errorintError code
error_textstringError text
next_from_idintThe index must be passed in the next request to receive another piece of data, until the result output contains 0 history lines
idintSender ID
namestringSender name
typestringSender type
channelstringCommunication channel
Last updated on May 11, 2024
Previous
SendersDev
Next
Virtual senders (Smart accounts only)
  • Description
  • Request URL
  • Request parameters
  • Request example
  • Response example
  • Response parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.