GET /api/v2/it_asset_management/assets/search
Returns an array of assets with values in text-based fields that match the search query.
If the query includes multiple words or numbers, it's treated as a space-separated list of search terms and assets with values matching one or more of the terms are returned. For example, query=laptop Apple 2024 is encoded as query=laptop%20Apple%202024 and treated as three distinct search terms: laptop, Apple, and 2024. Every asset record with a text field containing 'laptop', 'Apple', or '2024' is returned.
If you need to search by more complex logic, use the Filtered Search API endpoint.
Pagination
- Cursor pagination only.
- Returns the assets sorted by relevancy with page limits. Without a
sortparameter, only the first 10,000 assets are returned. If your request includes asortparameter, all assets are returned.
Allowed For
- Agents
Servers
- https://{subdomain}.{domain}.com
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
page[after] |
String | No |
A pagination cursor that tells the endpoint which page to start on. It should be a |
query |
String | Yes |
Lists the search terms, separated by a space, used to identify the asset records. |
page[before] |
String | No |
A pagination cursor that tells the endpoint which page to start on. It should be a |
sort |
String | No |
Orders the returned records by: |
page[size] |
Integer | No |
Specifies how many assets should be returned in the response, up to 100 assets per page. |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.