-
Notifications
You must be signed in to change notification settings - Fork 4
Manifest CheckInOrderItem
Brad Ploeger edited this page Apr 3, 2019
·
1 revision
Services \ Manifest \ CheckInOrderItem
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.
$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 = [
'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;Rezdy API V1 PHP Wrapper