For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add Senders

Adding new sender may be obtained using this endpoint. For emphasis on specific results, you can add the following parameters when creating new sender.

Endpoint

POST https://api.textcus.com/api/v2/senders/add

Headers

Authorization: Bearer API_KEY

Body Parameters

Parameters
Type
Description

sender_name

string

Required

Your 11 character sender ID name. eg. TextCus

description

string

Required

The purpose of the sender ID

Sample Requests

<?php
$data = [
  'sender_name' => "TextCus", // 11 Characters Only
  'description' => "For business SMS to my customers",
];

$url = 'https://api.textcus.com/api/v2/senders/add';

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => $url,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => $data,
  CURLOPT_HTTPHEADER => array(
    'Authorization: Bearer API_KEY',  // Replace 'API_KEY' with your actual API key
    'Content-Type: application/json' 
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

?>

Sample Response

Last updated