...
Get full collection:
Code Block | ||
---|---|---|
| ||
GET https://{enterprise}.cvtr.io/api/v4/leads.jsonld?access_token=*** |
Get more information for a specific object by id:
Code Block | theme | Midnight
---|
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.
Code Block | theme | Midnight
---|
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.
Code Block | theme | Midnight
---|
GET https://{enterprise}.cvtr.io/api/v4/leads.jsonld?order[id]=desc&access_token=*** |
...