GET api/contacts/extra/{extra}
Gives you a summary of a given extra field
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| extra |
Extra field ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Summary of extra field
ContactFieldDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactID |
Contact ID |
integer |
None. |
| Created |
Timestamp of extra field creation |
date |
None. |
| ID |
Contact extra field ID |
integer |
Required |
| Key |
Contact extra field key/name |
string |
Required |
| Value |
Contact extra field value/contents |
string |
Required |
Response Formats
application/json, text/json
Sample:
{
"ContactID": 1,
"Created": "2025-12-16T03:28:05.3284939+00:00",
"ID": 2,
"Key": "sample string 3",
"Value": "sample string 4"
}