Не могли бы вы мне помочь, у меня есть вопрос, Amazon Api Getway.Нам нужен URL в следующем формате:
A).Фильтры
filter[<fieldName>]=MyName
Пример:
GET ../cost_codes?filter[name]=Monique
GET ../cost_codes?filter[type]=construction
B).Несколько фильтров
filter[<fieldName>]=FirstName,SecondName
Пример:
GET ../cost_codes?filter[name]=Monique,Samuel
GET ../cost_codes?filter[type]=construction,demolition
C).Типы сравнения
-lt less than
-le less than or equal to
-eq equal to
-ge greater than or equal to
-gt greater than
-starts string starts with
-ends string ends with
-contains string contains
filter[<fieldName>]-lt =FirstName,SecondName
Пример
?filter[lastModifiedTime]-ge=2016-10-15
?filter[lastModifiedTime]-ge=2016-10-15T08:00&filter[lastModifiedTime]-le=2016-10-15T22:00
Спасибо за помощь.