Skip to main content
Altcraft Docs LogoAltcraft Docs Logo
User guideDeveloper guideAdmin guide
Company siteHelp center
English
  • Русский
  • English
v74
  • v74
  • v73
  • v72
Login
  • Getting Started
  • Administrator documentation
  • Functional characteristics
  • Technology description
  • System requirements
  • Admin Panel
  • Platform installation
  • Platform configuration
  • Platform maintenance
  • Custom channels guide
  • Extra
  • Processing HTTP/HTTPS traffic
  • Administrator API
    • Accounts admin api
    • Account users
    • Nodes
    • Senders admin api
      • Create or update AKMTA sender
      • Get AKMTA sender information
      • Assign account to sender
      • Get senders list
      • Delete sender
      • Restore sender
      • Sender queue
    • Virtual senders
  • Administrator API
  • Senders admin api
  • Get senders list
Documentation for version v74

Get senders list

Description​

Retrieves Altcraft service instance senders list.

Request URL​

Method: POST

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

Request parameters​

ParameterTypeExampleRequireddescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
formatstring"json"NoResponse data format
By default – json
from_idint1NoThe first sender ID on the list
By default –1
limitint100NoSenders list limit
By default – 1000

Request example​

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

Response example​

  • JSON
  • XML
{
"data": [
{
"id": 3,
"name": "Email sender",
"type": "akmta",
"channel_type": "email"
},
{
"id": 6,
"name": "new sender",
"type": "sms_notify",
"channel_type": "custom"
}
],
"error": 0,
"error_text": "Successful operation",
"total_count": 4
}
<xml>
<data>
<channel_type>email</channel_type>
<id>3</id>
<name>Email sender</name>
<type>akmta</type>
</data>
<data>
<channel_type>custom</channel_type>
<id>6</id>
<name>new sender</name>
<type>sms_notify</type>
</data>
<error>0</error>
<error_text>Successful operation</error_text>
<total_count>4</total_count>
</xml>

Response parameters​

ParameterTypeDescription
errorintError code
error_textstringError text
idintSender ID
namestringSender name
typestringSender type
channel_typestringCommunication channel
Last updated on Mar 16, 2024
Previous
Assign account to sender
Next
Delete sender
  • Description
  • Request URL
  • Request parameters
  • Request example
  • Response example
  • Response parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.