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
NameDescriptionTypeAdditional information
start_date

date

None.

end_date

date

None.

Request Formats

application/json, text/json

Sample:
{
  "start_date": "2025-04-03T04:51:23.4528002-05:00",
  "end_date": "2025-04-03T04:51:23.4528002-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-04-03T04:51:23.4528002-05:00</end_date>
  <start_date>2025-04-03T04:51:23.4528002-05:00</start_date>
</Date_Range>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Date_Range'.

Response Information

Resource Description

Collection of Contact_ID
NameDescriptionTypeAdditional 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-04-03T04:51:23.4685597-05:00"
  },
  {
    "SF_Contact_ID": "sample string 1",
    "SF_LastUpdate_DT": "2025-04-03T04:51:23.4685597-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-04-03T04:51:23.4685597-05:00</SF_LastUpdate_DT>
  </Contact_ID>
  <Contact_ID>
    <SF_Contact_ID>sample string 1</SF_Contact_ID>
    <SF_LastUpdate_DT>2025-04-03T04:51:23.4685597-05:00</SF_LastUpdate_DT>
  </Contact_ID>
</ArrayOfContact_ID>