Skip to main content
Altcraft Docs LogoAltcraft Docs Logo
User guideDeveloper guideAdmin guide
Company siteHelp center
English
  • Русский
  • English
v72
  • v74
  • v73
  • v72
Login
  • User API documentation
  • API interaction
  • Matching
  • Profiles
  • Databases
  • Resources
  • Segments
  • Static segments
  • Suppression lists
  • Templates and fragments
  • Campaigns
  • Automation scenarios
  • Promo codes
  • Goals
  • Application push notifications
  • Market
  • Analytic reports
  • SendersDevv71
    • Get senders list
    • Virtual senders (Smart accounts only)
      • Get virtual senders list
      • Get virtual sender information
      • Clone virtual sender
      • Create virtual sender
      • Update virtual sender
      • Delete virtual sender
  • External datatables queries
  • Objects
  • Miscellaneous
  • Importing the API collection in Postman
  • List of API endpoints
  • SDK
This is documentation for Altcraft Platform v72. This documentation is no longer maintained.
The information for up-to-date platform version at this page is available (v74).
  • SendersDevv71
  • Virtual senders (Smart accounts only)
  • Get virtual senders list
Documentation for version v72

Get virtual senders list

Description​

Retrieves a list of virtual senders.

Request URL​

Method: POST

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

Request parameters​

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

Request example​

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

Response example​

  • JSON
  • XML
{
"data": [
{
"email_channel": true,
"id": 1,
"name": "AKMTA virtual sender",
"sms_channel": false
},
{
"email_channel": false,
"id": 2,
"name": "Bulk SMS virtual sender",
"sms_channel": true
}
],
"error": 0,
"error_text": "Successful operation",
"total_count": 2
}
<xml>
<data>
<email_channel>true</email_channel>
<id>1</id>
<name>AKMTA virtual sender</name>
<sms_channel>false</sms_channel>
</data>
<data>
<email_channel>false</email_channel>
<id>2</id>
<name>Bulk SMS virtual sender</name>
<sms_channel>true</sms_channel>
</data>
<error>0</error>
<error_text>Successful operation</error_text>
<total_count>2</total_count>
</xml>

Response parameters​

ParameterTypeDescription
errorintError code
error_textstringError text
namestringVirtual sender name
sms_channelbooltrue, if SMS channel is active
email_channelbooltrue, if email channel is active
Last updated on May 11, 2024
Previous
Virtual senders (Smart accounts only)
Next
Get virtual sender information
  • Description
  • Request URL
  • Request parameters
  • Request example
  • Response example
  • Response parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.