Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 351 Bytes

checkout.md

File metadata and controls

20 lines (14 loc) · 351 Bytes

Checkout API

Back to the navigation

Allows interacting with the Checkout API.

Get details for a specific checkout

$response = $client->checkout()->show('pest-php-meetup-1-2021');

Redeem a checkout

$response = $client->checkout()->redeem(
    'pest-php-meetup-1-2021',
    $googleRecaptchaResponse
);