Documentation
  • Overview
    • Introduction
    • Authentication
    • Delivery Statuses
    • FAQs
      • Messages
      • Reports
      • Cost
  • Messaging
    • Send Single SMS
    • Create SMS Campaign
    • Retrieve Message Status
    • Retrieve Campaign Reports
  • Sender Names
    • Create Sender Name
    • List Sender Names
    • Update Sender Name
    • Delete Sender Name
  • Account Balance
  • Error Handling
Powered by GitBook
On this page
  1. Sender Names

Update Sender Name

Update the details of an existing sender name

  • Endpoint: PUT /sendernames/{sender_id}

  • Description: This endpoint allows updating the properties of a registered sender name, such as changing the name.

Request Parameters:

  • sender_id (string, required): The unique ID of the sender name you want to update.

  • name (string, optional): The new sender name to replace the existing one.

Request Example:

PUT /sendernames/123 HTTP/1.1
Authorization: Bearer {API_KEY}
Content-Type: application/json

{
  "name": "UpdatedSenderName"
}

Response:


{
  "status": "success",
  "message": "Sender name updated successfully",
  "sender_id": "123",
  "new_name": "UpdatedSenderName"
}
PreviousList Sender NamesNextDelete Sender Name

Last updated 7 months ago