Order bulk sender names

Use this method for bulk ordering new sender names.

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

triangle-exclamation
circle-exclamation

Request body

circle-info

This request has the same fields and validations as in a single request. The difference is that it needs to send these values as an array.

"senders" [
  {
    "phone_region": "US",
    "plan_id": "string",
  },
  {
    "name": "sender2",
    "domain": "example.com",
    "plan_id": "string",
  }
]
circle-info

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

Order sender with a phone number

Name
Type
Description

plan_id*

String

Payment plan ID

phone_region*

Bool

Default value US

zip_code

String

Optional. 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.

Response example

To order email sender

Name
Type
Description

name*

String

Name part

domain*

String

Sender domain

plan_id*

String

Payment plan ID

Response example

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