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"
}

Last updated