Skip to main content
GET
/
types
List data types
curl --request GET \
  --url https://app.leadconduit.com/types \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "name": "boolean",
    "components": [
      {
        "name": "<string>",
        "type": "boolean",
        "description": "<string>"
      }
    ],
    "operators": [
      "is equal to"
    ],
    "maskable": true
  }
]

Authorizations

Authorization
string
header
required

LeadConduit uses HTTP Basic Authentication with the username API and your API key as the password.

For example: API:1f1b96c9150d8050e858c043d543bb4eadae0e6f'

Response

200 - application/json

OK

name
enum<string>
required
Available options:
boolean,
city,
credential,
date,
email,
first_name,
gender,
last_name,
number,
phone,
postal_code,
range,
ssn,
state,
street,
string,
time,
trustedform_url,
url
components
object[]
required
operators
enum<string>[]
required
Available options:
is equal to,
is not equal to,
is blank,
is not blank,
is greater than,
is greater than or equal to,
is less than,
is less than or equal to,
is true,
is not true,
is false,
is not false,
format is valid,
format is invalid,
includes,
does not include,
is included in,
is not included in,
is between,
is not between,
matches pattern,
does not match pattern
Minimum string length: 1
maskable
boolean

Are values of this type masked before they are persisted to the LeadConduit database?