CREATE

Create a new EyeLevel customer account

CREATE

POST https://api.eyelevel.ai/v1/partner/customer

Request Body

{
    "apiKey": "STRING"
}

Request

{
    "customer": {
        "email":        "STRING",
        "first":        "STRING",
        "last":         "STRING",
        "phone":        "STRING",
        "company":      "STRING",
        "companyUrl":   "STRING"
    }
}

email

REQUIRED - String

Validation: Valid and unique email

The EyeLevel customer email address. This email must be unique in the EyeLevel system.

first

REQUIRED - String

The EyeLevel customer given name.

last

REQUIRED - String

The EyeLevel customer family name.

phone

OPTIONAL - String

Validation: Value should be in following American format: +1XXXXXXXXXX

The EyeLevel customer phone number. This phone number must be unique in the EyeLevel system.

company

OPTIONAL - String

The EyeLevel customer company name.

companyUrl

OPTIONAL - String

The EyeLevel customer company website.

Response

{ 
    "apiKey": "STRING"
}

apiKey

The unique EyeLevel customer API key for the customer you created with the request.

Last updated