Help System Search
Search will return help pages with one or more of the search terms. Search ignores the following words: "a", "an", "the", "with", "of", "for", "to", and "and".
How to Perform API Queries
There are two ways to perform API queries: manually or programmatically.
Manual Queries
To perform a manual query, click the “Try it Out” button below a resource name. Enter values next to one or more parameters, or leave all parameters blank to query all data. Click the “Execute” button. Scroll down to the “Server response” section to view the response. Click the “Download” button near the lower right corner to download the response as a JSON file.
By default, the first 25 results will be returned. Use the itemsPerPage parameter to change the number of results returned per page, and the page parameter to change which page of results is returned.
After executing a manual query, the Request URL can be viewed in the Responses section.
Programmatic Queries
To perform a query programmatically, send a GET request to the Request URL. The GET request must include the following header:
accept: application/vnd.api+json
The syntax for sending a request using the Curl program is included in the Curl section, which is visible after clicking "Try it Out" and "Execute" as described under "Manual Queries". There are many other methods for sending requests programmatically, such as using the Requests library in Python or the Fetch API in JavaScript.

