Manage sener name

Headers

All requests in this section will have the same headers.

Name
Type
Description

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

Name
Type
Description

id*

String

ID that you received after a successful request

Query Parameters

Name
Type
Description

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/

Response

{
    "success": true,
}

Cancel phone number alias

DELETE https://a.loopmessage.com/api/v1/sender/{alias_id}/alias/cancel/

Response

{
    "success": true,
}

Last updated