CREATE

Create a new SMS Text group that will receive EyeLevel notifications and be enabled to live chat with end users

CREATE

POST https://api.eyelevel.ai/v1/partner/integration/sms/:apiKey

Path Parameters

NameTypeDescription

apiKey

string

EyeLevel customer key

Request Body

NameTypeDescription

sms

object

See request definition below

{
    "message": "OK"
}

Request

{
    "integration": {
        "sms": {
            "name":   "STRING",
            "phones": [
                "STRING"
            ]
        }
    }
}

name

REQUIRED - String

Validation: 80 character limit

The human readable name for the SMS text group.

phones

REQUIRED - String

Validation: Valid US phone numbers

An array of valid US phone numbers in a reasonable format. Some examples of acceptable formats include:

  • (555) 555-5555

  • 555-555-5555

  • +1-555-555-5555

  • 5555555555

  • +15555555555

Response

{
    "message": "OK"
}

Last updated