Skip to content

Manifest RemoveSessionCheckIn

Brad Ploeger edited this page Apr 3, 2019 · 1 revision

Services \ Manifest \ RemoveSessionCheckIn

Purpose

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.

Basic Usage:

$rezdyApi->manifest->checkInSession($request);

Required Parameters

Optional Parameters

  • none

Returns

Throws (with errors)

Code Example

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;

Clone this wiki locally