You are here

public function RestClientInterface::getDeleted in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::getDeleted()
  2. 8.3 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::getDeleted()

Retrieves objects deleted within the given timeframe.

Parameters

string $type: Object type name, E.g., Contact, Account.

string $startDate: Start date to check for deleted objects (in ISO 8601 format).

string $endDate: End date to check for deleted objects (in ISO 8601 format).

Return value

array Response data.

1 method overrides RestClientInterface::getDeleted()
RestClient::getDeleted in src/Rest/RestClient.php
Retrieves objects deleted within the given timeframe.

File

src/Rest/RestClientInterface.php, line 330

Class

RestClientInterface
Objects, properties, and methods to communicate with the Salesforce REST API.

Namespace

Drupal\salesforce\Rest

Code

public function getDeleted($type, $startDate, $endDate);