Retrieve details of a client or search for clients based on given criteria.
GET
/client
curl \
-X GET http://api.example.com/client?companyID=42
Response examples (200)
[
{
"clientID": 42,
"FirstName": "string",
"LastName": "string",
"Company": "string",
"Phone": "string",
"Email": "string",
"isActive": true,
"CustomerSince": "string",
"companyID": 42,
"createdBy": 42,
"updatedBy": 42
}
]