Delete contacts based on a conditions

Hi,

We wanted delete contacts based on business conditions. Could you please let me know if you support an endpoint to meet the requirements?

Regards,
Puneeth

Me parece que necesitas 2 endpoint.

  1. filtrar contactos externos por la condiciĆ³n requerida.
    /api/v2/externalcontacts/contacts
Parameter Location Description
pageSize query (integer) Page size (limited to fetching first 1,000 records; pageNumber * pageSize must be <= 1,000)
pageNumber query (integer) Page number (limited to fetching first 1,000 records; pageNumber * pageSize must be <= 1,000)
q query (string) User supplied search keywords (no special syntax is currently supported)
sortOrder query (string) The External Contact field to sort by. Any of: firstName, lastName, middleName, title. Direction: asc, desc. e.g. "firstName:asc", "title:desc"
expand query (array) which fields, if any, to expand. Valid values: externalOrganization, externalDataSources
  1. eliminar el contacto que encontraste.
    /api/v2/externalcontacts/contacts/{contactId}
Parameter Location Description
contactId path (string, required) ExternalContact ID

Thank you for you response. Unfortunately, your proposed solution does not fit our requirement.

Those are the endpoints for working with external contacts. You would fetch contacts, evaluate the business logic you desire in your application, and delete the contacts you desire based on that logic.

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.