GET api/contacts/extra
Gets the extra fields of all contacts
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of extra fields
Collection of 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:27:31.5551164+00:00",
"ID": 2,
"Key": "sample string 3",
"Value": "sample string 4"
},
{
"ContactID": 1,
"Created": "2025-12-16T03:27:31.5551164+00:00",
"ID": 2,
"Key": "sample string 3",
"Value": "sample string 4"
}
]