GET api/clientcontacts/{id}
Get a Client Contact by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The primary key of the client contact in the Hobsons database. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ClientContactDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Description |
The name of the Client Contact record. |
string |
None. |
| EmailAddresses |
Email Addresses of the Client Contact record. |
string |
String length: inclusive between 0 and 2000 |
| PhoneNumber |
Phone Number of the Client Contact record. |
string |
None. |
| Inactive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Description": "sample string 1",
"EmailAddresses": "sample string 2",
"PhoneNumber": "sample string 3",
"Inactive": true
}