Order a new single sender name

Use this method to order one sender name.

POST https://a.loopmessage.com/api/v1/sender/new/

triangle-exclamation
circle-exclamation
circle-info

Once the request is accepted, you will be automatically charged from the attached billing method

To order a sender with a phone number

Name
Type
Description

plan_id*

String

Payment plan ID

phone_region*

Bool

Default value US

zip_code

String

Optional. 5-digit format, e.g. 90210. Only for US phone numbers.

sms_and_call

Bool

Optional.

forwarding_to_phone_number

String

Optional. Requires "sms_and_call": true. Phone number region should support call forwarding.

rcs

Bool

Optional.

whatsapp

Bool

Optional.

To order an email sender

Name
Type
Description

name*

String

Name part

domain*

String

Sender domain

plan_id*

String

Payment plan ID

Response example

{
    "count": 1,
    "items": [
        {
            "id": "f41c27d2-1251-488f-bf10-267945199555",
            "phone_region": "US",
            "zip_code": "10001",
            "sms_and_call": true,
            "forwarding_to_phone_number": "+13231112233",
            "rcs": true
        }
    ]
}

Test purchase

To test this request, you need to include the "test": true parameter in the JSON payload. Once the request is accepted, you will receive a webhook within a few minutes confirming the activation of the sender name.

Once the request is accepted, within a few minutes, you should receive a webhook that will simulate that the sender is activated. In the production envoronment you should receive this webhook within a few hours.

Last updated