POST api/Fonteva/Contact_ID_List
Returns a list of all Salesforce Contact IDs and the last Salesforce edit DateTime by a specified DateTime range.
Request Information
URI Parameters
None.
Body Parameters
Date_Range| Name | Description | Type | Additional information |
|---|---|---|---|
| start_date | date |
None. |
|
| end_date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"start_date": "2025-11-01T17:12:51.8905631-05:00",
"end_date": "2025-11-01T17:12:51.8905631-05:00"
}
application/xml, text/xml
Sample:
<Date_Range xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACMA_WebAPI"> <end_date>2025-11-01T17:12:51.8905631-05:00</end_date> <start_date>2025-11-01T17:12:51.8905631-05:00</start_date> </Date_Range>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of Contact_ID| Name | Description | Type | Additional information |
|---|---|---|---|
| SF_Contact_ID | string |
None. |
|
| SF_LastUpdate_DT | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SF_Contact_ID": "sample string 1",
"SF_LastUpdate_DT": "2025-11-01T17:12:51.8905631-05:00"
},
{
"SF_Contact_ID": "sample string 1",
"SF_LastUpdate_DT": "2025-11-01T17:12:51.8905631-05:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfContact_ID xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACMA_WebAPI">
<Contact_ID>
<SF_Contact_ID>sample string 1</SF_Contact_ID>
<SF_LastUpdate_DT>2025-11-01T17:12:51.8905631-05:00</SF_LastUpdate_DT>
</Contact_ID>
<Contact_ID>
<SF_Contact_ID>sample string 1</SF_Contact_ID>
<SF_LastUpdate_DT>2025-11-01T17:12:51.8905631-05:00</SF_LastUpdate_DT>
</Contact_ID>
</ArrayOfContact_ID>