Skip to content

Manifest CheckInOrderItem

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

Services \ Manifest \ CheckInOrderItem

Purpose

Place Check-in a / No show flag for the specified order item.

Note: The order item is identified by order number, 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 = [
   'orderNumber' => '123456',
   'productCode' => 'P12345',
   'startTimeLocal' => '2019-03-27 17:00:00',
   'checkin' => 'true' ];    

// Create the Manifest Request
$manifest = new ManifestRequest($manifestOptions);

// Send the Manifest request to the API
$response = $rezdyAPI->manifest->checkInOrderItem($manifest);

// View the Response
echo $response;

Clone this wiki locally