public function RestClientInterface::getDeleted in Salesforce Suite 8.3
Same name and namespace in other branches
- 8.4 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::getDeleted()
- 5.0.x 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 565
Class
- RestClientInterface
- Objects, properties, and methods to communicate with the Salesforce REST API.
Namespace
Drupal\salesforce\RestCode
public function getDeleted($type, $startDate, $endDate);