...
Bloc de code | ||
---|---|---|
| ||
"action":
{
"verb": "LIST"
"parameters":
{
"listType":
"simple": main info of the record (by default), the columns are determined by each webhook
"extended": all columns of the record
"extendedRelated": not used for verb="LIST"
"pageNumber": "xx" // used to read the page of the records list, 1 page = 10 records (optional, default pageNumber is 1)
You can read the list page per page until maxPageNumber (result of maxPageNumber given in the "response")
"settings":
{
// depends of the webhook (optional)
}
"filters":
{
// depends of the webhook (optional), each filter added will result is an AND in the query
// For a filter operator "equal" it is possible to give more values separated by "|" (ie "email": "email1|email2|email3")
// For a filter operator "equal" it is possible to give the value "null" who will be transformed in "IS NULL"
}
"orderBy" : "value" // depends of the webhook (optional), order the returned records (for example webhook event, the value can be "eventDateDesc" to order the records by event date descending)
"topRows": "xx" // limit the returned records (optional)
}
} |
...