-
Notifications
You must be signed in to change notification settings - Fork 4
Rates Get
Brad Ploeger edited this page Apr 3, 2019
·
1 revision
Retrieves a rate based on its ID
$rezdyApi->rates->get($rateId);- integer: $rateId
- none
use Rezdy\RezdyAPI;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
$rateId = 12345;
// Send the request to the API
$response = $rezdyAPI->rates->get($rateId);
// View the response
echo $response;Rezdy API V1 PHP Wrapper