Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter NameDescription
fieldscomma delimited list of field names to be returned
sortThe sort criteria as a comma delimited list in the form of +fieldname or -fieldname, e.g. sort=+country,-city
limitThe maximum number of records returned from a collection
offsetThe first record to be returned, allows paging in combination with the limit parameter, e.g. limit=20&offset=20
{fieldname}filter criteria, e.g. salesrep=BBB&creditlimit>=10000 - supported operators are =, >=, <=, >, <>, <

Supported Operators

The following query operators are supported by the RESTful interface:

  • =, [=], [EQ]
  • <>, [<>], [NE]
  • >, [>], [GT]
  • <, [<], [LT]
  • >=, [>=], [GE]
  • <=, [<=], [LE]
  • [BEGINS]
  • [CONTAINS]
  • [MATCHES]

Invoking Business Entity and Business Tasks Methods through the RESTful interface

...