Example of Basic Search

Consider the following example: searching for a record where address is Illinois in the repository named "Company".

Example - Request

{
  "name": "Company",
  "productKey": -1,
  "attributes": [
    {
      "name": "Address",
      "value": [
        "IL USA"
      ],
      "operator": "eq",
      "caseSensitive": false
    }
  ]
}

Example - Response

The response returns all the records matching the search criteria. In following response example, city is equal to "IL USA".

        {
"records":{
        ...
        ...
{
          "name": "Address",
          "value": "IL USA",
          "displayName": "Address",
          "multivalues": null,
          "type": 4,
          "id": 0,
          "groupName": "Unassigned",
          "associationName": null,
          "auxiliaryContent": null,
          "multivalue": false
        },
        ...
        ...
}