DELETE

Delete an existing SMS Text group by the phone numbers included in the sms object (permanently deletes the SMS text group)

DELETE

DELETE 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": {
            "phones": [
                "STRING"
            ]
        }
    }
}

phones

REQUIRED - String

Validation: Valid US phone numbers

The array of valid US phone numbers in the SMS text group that will be deleted. Phone numbers should be formatted in a reasonable way. Some examples of acceptable formats include:

  • (555) 555-5555

  • 555-555-5555

  • +1-555-555-5555

  • 5555555555

  • +15555555555

Response

{
    "message": "OK"
}

Last updated