Versions Compared

Key

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

...

Get full collection:

Code Block
themeMidnight
GET https://{enterprise}.cvtr.io/api/v4/leads.jsonld?access_token=***

Get more information for a specific object by id:

Midnight
Code Block
theme
GET https://{enterprise}.cvtr.io/api/v4/leads/11001.jsonld?access_token=***

The following request will filter the collection by a single id, or the second example will filter by multiple lead ids.

Midnight
Code Block
theme
GET https://{enterprise}.cvtr.io/api/v4/leads.jsonld?id=11001&access_token=***
GET https://{enterprise}.cvtr.io/api/v4/leads.jsonld?id[]=11001&id[]=11000&access_token=***

Changing the ordering of the collection to order the results by id descending.

Midnight
Code Block
theme
GET https://{enterprise}.cvtr.io/api/v4/leads.jsonld?order[id]=desc&access_token=***

...