Download the PHP package brandlive/vtex-api without Composer
On this page you can find all versions of the php package brandlive/vtex-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package vtex-api
VTEX API PHP/Laravel Package
A PHP/Laravel package for interacting with the VTEX API. Status: Work in progress.
Installation
Quick Start
- Set up your credentials: Provide
accountName
,environment
,appKey
, andappToken
. - Create a client (e.g.,
OrderClient
,CatalogClient
, etc.). - Call the desired method by passing an array with
pathParams
,queryParams
, and/orbody
.
Argument Options
Each client method typically accepts an associative array with the following optional keys:
pathParams
: Parameters that go in the URL path (e.g.,{orderId}
,{skuId}
, etc.).queryParams
: Parameters that go in the query string (e.g.,?page=1&per_page=15
).body
: The JSON body for POST/PUT/PATCH requests.
Examples
Below are short examples using OrderClient, CheckoutClient, and other available clients.
1. Get an Order
2. Retrieve Payment Transaction
3. Send Payment Notification
4. Start Handling an Order
5. Send Invoice Notification
6. Get Cart Information (CheckoutClient)
7. Create a Product (CatalogClient)
Handling Exceptions
All methods may throw a VtexException
if the API request fails. Catch it to handle errors gracefully:
Contributing
- Fork the repo.
- Create a new branch for your feature or bugfix.
- Submit a pull request.
License
MIT
All versions of vtex-api with dependencies
PHP Build Version
Package Version
The package brandlive/vtex-api contains the following files
Loading the files please wait ....