Oli Docs
01. Getting Started SDK02. Getting Started SDK-VOD03. Getting Started SDK-SHORT04. Vtex05. Shopify06. Woocommerce07. Braavo08. Linx09. Vipcommerce10. Vnda11. Jetcommerce12. MagentoConfigurationRequirementsPermissions keysRoutes IntegrationsCart Checkout13. Webstorm

Getting Started Oli-Checkout

Integrations API from multiples platforms


Configuration

- The configuration need the access token, the access token can be generation on the system menu of your ecommerce, system -> integration.
- If your system don“t have any integration, click in the button "Add New Integration", after created you have the access token.

Requirements

- URL
- Access Token

Permissions keys

- Read
- Write

Routes Integrations

- Router GET - rest/V1/stockItems/
- Router GET - rest/V1/products?searchCriteria
- Router POST - rest/V1/carts
- Router POST - rest/V1/carts/mine/items

Cart Checkout

Simple generate url to redirect users from shopping cart.

POST Router:

https://Domain/checkout/cart

Request:

{
"items": {
"id": "string",
"quantity": 0,
},
"clientProfileData": {
"liveId": "fake-ab1c-4b59-a65e-38283984ed46"
}
}

Response:

{
"message": "string",
"status": "string",
"data": {
"url": "https://domainClient.com.br/checkout/
}
}