-
Notifications
You must be signed in to change notification settings - Fork 4
Manifest RemoveSessionCheckIn
Brad Ploeger edited this page Apr 3, 2019
·
1 revision
Services \ Manifest \ RemoveSessionCheckIn
Remove Check-in / No show flag from everyone in the whole session.
Note: The session is identified by product code and start time (or start time local). Only available for the supplier API.
$rezdyApi->manifest->checkInSession($request);- Rezdy\Requests\Manifest: $request
- none
use Rezdy\RezdyAPI;
use Rezdy\Requests\Manifest;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
// Set the array of manifest parameters
$manifestOptions = [
'productCode' => 'P12345',
'startTimeLocal' => '2019-03-27 17:00:00' ];
// Create the Manifest Request
$manifest = new ManifestRequest($manifestOptions);
// Send the Manifest request to the API
$response = $rezdyAPI->manifest->removeSessionCheckIn($manifest);
// View the Response
echo $response;Rezdy API V1 PHP Wrapper