The following macros are not currently supported in the header:
- style
GET /requests
List Requests
Resource URL
GET /requests
Parameters
Table of allowed parameters.
_page | unsigned int | The page of the list to display. For example, 5 will display the fifth page. Each page contains 10 resources. |
---|---|---|
_limit | unsigned int | The maximum number of resources to return. Default is 10 and maximum is 50. |
_offset | unsigned int | The position in the list of resources to return from. For example, if you had 20 resources and requested an offset of 10. Resources 10 to 19 would be returned. Offset cannot be used in conjunction with _page . |
_fields | partial string | Allows you to specify optional fields and linked objects to include in the response. |
_filters | partial_string | Â |
Filtering
You can filter the returned list using the _filters
 parameter.
Name | Example | Description |
---|---|---|
id | Â | Â |
max_id | Â | Â |
min_id | Â | Â |
standing(<statuses>) | Â | Accepts: 'pending','open','converted','closed' |
affiliation(<ids>) | Â | Â |
type(<ids>) | Â | Â |
priority(<ids>) | Â | Â |
lead(<ids>) | Â | Â |
date_created_before(<unix timestamp>), date_created_after(<unix timestamp>) | Â | Â |
order_by_desc(<type>), order_by_asc(<type>) | Â | Accepts: date_created and id. |
NEW <field_name>_greater_than(<value>), <field_name>_less_than(<value>), <field_name>_greater_than_or_equal(<value>), <field_name>_less_than_or_equal(<value>) Â | _filters=id_greater_than(5) | Available fields: id |
Using the _not
 suffix (e.g, id_not
) on standard in filters will returns results not in.Â
Handling the response
Please see GET /requests/:id for handling the response.
Â