Skip to main content

Dynamic APIs

Equals

Find Records that have a Property with the name :name and a value equal to :value.

GET /api/v1/property/:name/equals/:value
POST /api/v1/property/:name/equals/:value

Not Equals

Find Records that have a Property with the name :name and a value not equal to :value.

GET /api/v1/property/:name/not-equals/:value
POST /api/v1/property/:name/not-equals/:value

Contains

Find Records that have a Property with the name :name and a value containing the substring :value.

GET /api/v1/property/:name/contains/:value
POST /api/v1/property/:name/contains/:value

Not Contains

Find Records that have a Property with the name :name and a value not containing the substring :value.

GET /api/v1/property/:name/not-contains/:value
POST /api/v1/property/:name/not-contains/:value

LT (Less Than)

Find Records that have a Property with the name :name and a value (of type number or datetime) less than :value.

GET /api/v1/property/:name/lt/:value
POST /api/v1/property/:name/lt/:value

LE (Less Than or Equal)

Find Records that have a Property with the name :name and a value (of type number or datetime) less than or equal to :value.

GET /api/v1/property/:name/le/:value
POST /api/v1/property/:name/le/:value

GT (Greater Than)

Find Records that have a Property with the name :name and a value (of type number or datetime) greater than :value.

GET /api/v1/property/:name/gt/:value
POST /api/v1/property/:name/gt/:value

GE (Greater Than or Equal)

Find Records that have a Property with the name :name and a value (of type number or datetime) greater than or equal to :value.

GET /api/v1/property/:name/ge/:value
POST /api/v1/property/:name/ge/:value

Range

Find Records that have a Property with the name :name and a values (of type number or datetime) within the range of :value.

GET /api/v1/property/:name/range/:min/:max
POST /api/v1/property/:name/range/:min/:max

Exclude Range

Find Records that have a Property with the name :name and a values (of type number or datetime) outside the range of :value.

GET /api/v1/property/:name/exclude-range/:min/:max
POST /api/v1/property/:name/exclude-range/:min/:max