Manage sener name
Headers
All requests in this section will have the same headers.
Authorization*
String
API Key. Required*.
Content-Type*
String
application/json
Sender name details
Use this method to get a list of sender names related to a specific organization
GET https://a.loopmessage.com/api/v1/sender/{id}/
Path Parameters
id*
String
ID that you received after a successful request
Query Parameters
sort_by
String
Optional. Sorting order for results. Possible values: asc (ascending) or desc (default).
page
Integer
Optional. The page number to retrieve. Default is 1.
per_page
Integer
Optional. Number of webhook records per page. Default is 20.
Response
{
"id": "string",
"name": "string",
"status": "enum string",
"create_date": "2025-01-27T22:23:51Z",
"imessage_link": "URL string",
}Cancel sender name
DELETE https://a.loopmessage.com/api/v1/sender/{id}/cancel/
The sender's name is canceled immediately. Please check the cancellation policy in Helpdesk before using this method.
Response
{
"success": true,
}{
"code": 100,
"success": false,
"message": "error description",
}Cancel phone number alias
DELETE https://a.loopmessage.com/api/v1/sender/{alias_id}/alias/cancel/
The alias is canceled immediately. Please check the cancellation policy in Helpdesk before using this method.
Response
{
"success": true,
}{
"code": 100,
"success": false,
"message": "error description",
}Last updated