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 sender information
Documentation for version v72

Get virtual sender information

Description​

Retrieves a virtual sender detailed information.

Request URL​

Method: POST

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

Request parameters​

ParameterTypeExampleRequiredDescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
idint1YesVirtual sender ID
formatstring"json"NoResponse data format.
By default – json

Request example​

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

Response example​

  • JSON
  • XML
{
"data": {
"id": 1,
"name": "Virtual sender",
"email_rules": [
{
"type": "default",
"value": "",
"senders": [
{
"from_email": "",
"replyto_email": "",
"from_name": "",
"sender_id": 3,
"percent": 100
}
]
}
],
"sms_rules": [],
"custom_channels": {}
},
"error": 0,
"error_text": "Successful operation"
}
<xml>
<data>
<id>1</id>
<name>Virtual sender</name>
<email_rules>
<type>default</type>
<value></value>
<senders>
<from_email></from_email>
<replyto_email></replyto_email>
<from_name></from_name>
<sender_id>3</sender_id>
<percent>100</percent>
</senders>
</email_rules>
<sms_rules/>
<custom_channels/>
</data>
<error>0</error>
<error_text>Successful operation</error_text>
</xml>

Response parameters​

ParameterTypeDescription
errorintError type
error_textstringError text
idintVirtual sender ID
namestringVirtual sender name
email_rulesJSON arrayRules for email senders
sms_rulesJSON arrayRules for SMS senders
Last updated on May 11, 2024
Previous
Get virtual senders list
Next
Clone virtual sender
  • Description
  • Request URL
  • Request parameters
  • Request example
  • Response example
  • Response parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.