Create Attributes
Search Attribute Values
Search attributes based on filters specified in the request body.
Body Parameters
The attribute type ids for what type of attributes to search for.
Exclude attributes with these ids from the search results.
Include attributes with these ids in the search results.
The pageSize where 0 <= pageSize <= 100. Values < 10 will be set to 10. A value of 0 returns the default page size (currently 25)
The pageToken field.
Query the attributes with a fuzzy search on display name and description.
Search for attributes with a case insensitive match on the attribute value which is the attribute name.
Returns
The list of returned AttributeValues.
The nextPageToken is shown for the next page if the number of results is larger than the max page size. The server returns one page of results and the nextPageToken until all results are retreived. To retrieve the next page, use the same request and append a pageToken field with the value of nextPageToken shown on the previous page.
curl https://{tenantDomain}.conductor.one/api/v1/search/attributes \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"{
"list": [
{
"id": "id",
"attributeTypeId": "attributeTypeId",
"value": "value"
}
],
"nextPageToken": "nextPageToken"
}