Returns an array of entities by searching for keywords associated with objects of a specified object type. You can search for multiple object types with a single method call.
Output / Response
Returns an array of entities matching the keyword text and the category type, or returns an empty array.
API call:
APIEntity[] searchByObjectTypes ( String keyword,
String types, int start, int count
)
Parameter | Description |
---|---|
keyword | The search keyword string. This value cannot be null or empty. |
types | The object types for which to search, specified in the following format: "type1[,type2…]". The object type must be one of the types listed in Object Types. |
start | Indicates where in the list of returned objects to start returning objects. The list begins at an index of 0. This value cannot be null or empty. |
count | The maximum number of objects to return. The default value is 10. This value cannot be null or empty. |