-
Notifications
You must be signed in to change notification settings - Fork 4
Bookings Get
Brad Ploeger edited this page Apr 3, 2019
·
2 revisions
Load an existing booking by Order Number.
$rezdyApi->bookings->get($orderNumber);- string: $orderNumber
- none
use Rezdy\RezdyAPI;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
// IMPORTANT! The order number must be passed as a string.
$orderNumber = '123456';
// Send the request to the API
$response = $rezdyAPI->bookings->get($orderNumber);
// View the response
echo $response;Rezdy API V1 PHP Wrapper