gisevevokoru / ezze-siftuz-orders-v3
dev-master
2020-07-07 09:52 UTC
Requires
- php: >=5.5
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- friendsofphp/php-cs-fixer: ~1.12
- phpunit/phpunit: ^4.8
- squizlabs/php_codesniffer: ~2.6
This package is not auto-updated.
Last update: 2025-05-08 06:56:09 UTC
README
This API documentation describes all endpoints for orders - version 3
This PHP package is automatically generated by the Swagger Codegen project:
- API version: v3
- Package version: v1.0
- Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen
Requirements
PHP 5.5 and later
Installation & Usage
Composer
To install the bindings via Composer, add the following to composer.json
:
{
"repositories": [
{
"type": "git",
"url": "https://github.com/gisevevokoru/ezze-siftuz-orders-v3.git"
}
],
"require": {
"gisevevokoru/ezze-siftuz-orders-v3": "*@dev"
}
}
Then run composer install
Manual Installation
Download the files and include autoload.php
:
require_once('/path/to/SwaggerClient-php/vendor/autoload.php');
Tests
To run the unit tests:
composer install
./vendor/bin/phpunit
Getting Started
Please follow the installation procedure and then run the following:
<?php require_once(__DIR__ . '/vendor/autoload.php'); $apiInstance = new EzzeSiftuz\OrdersV3\Api\ALLApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client() ); $sales_order_id = "sales_order_id_example"; // string | The Sales Order Id of the order to cancel $position_item_id = array("position_item_id_example"); // string[] | The ids of the PositionItems to cancel try { $apiInstance->cancelPartnerOrderPositionItems($sales_order_id, $position_item_id); } catch (Exception $e) { echo 'Exception when calling ALLApi->cancelPartnerOrderPositionItems: ', $e->getMessage(), PHP_EOL; } $apiInstance = new EzzeSiftuz\OrdersV3\Api\ALLApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client() ); $sales_order_id = array("sales_order_id_example"); // string[] | The Sales Order Id of the order to cancel try { $apiInstance->cancelPartnerOrders($sales_order_id); } catch (Exception $e) { echo 'Exception when calling ALLApi->cancelPartnerOrders: ', $e->getMessage(), PHP_EOL; } $apiInstance = new EzzeSiftuz\OrdersV3\Api\ALLApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client() ); $from_date = "from_date_example"; // string | Defines, which minimum lifecycle change date the returned order should have. In ISO 8601 format. $fulfillment_status = "fulfillment_status_example"; // string | Defines, which minimum state the returned orders should have.<br>If ANNOUNCED is given, all orders, which have at least one PositionItem in ANNOUNCED state are returned.<br>If PROCESSABLE is given, all orders, which have at least one PositionItem in PROCESSABLE state and none in ANNOUNCED state are returned.<br>If SENT is given, all orders, which have at least one PositionItem in SENT state and none in either ANNOUNCED or PROCESSABLE state are returned.<br>If RETURNED is given, all orders, which have at least one PositionItem in RETURNED state and none in either ANNOUNCED or PROCESSABLE or SENT state are returned.<br>If CANCELLED_BY_PARTNER is given, all orders, which have at least one PositionItem in CANCELLED_BY_PARTNER state are returned.<br>If CANCELLED_BY_MARKETPLACE is given, all orders, which have at least one PositionItem in CANCELLED_BY_MARKETPLACE state are returned.<br>If none is provided, all status will be returned.<br>Several values can be passed via request param array, when multiple values passed, search result will be combination of multiple fulfillmentStatuses - no duplicates will appear.<br>Example: ?fulfillmentStatus=PROCESSABLE&fulfillmentStatus=CANCELLED_BY_MARKETPLACE - will return orders in these 3 fulfillmentStatuses.<br>Alternatively, mode can be passed for a different search type. BUCKET/AT_LEAST_ONE, where BUCKET is default behaviour explained above and AT_LEAST_ONE checks if there is at least 1 PositionItem with passed fulfillmentStatus/fulfillmentStatuses. $limit = 128; // int | The maximum amount of returned orders $order_direction = "ASC"; // string | $order_column_type = "ORDER_LIFECYCLE_DATE"; // string | $mode = "BUCKET"; // string | The search mode. Default search mode is bucket search $nextcursor = "nextcursor_example"; // string | For paging request this cursor is required. If a next cursor is provided, the only other request parameter being considered is 'limit'. $search_term = "search_term_example"; // string | The search term for partial text search. try { $result = $apiInstance->findPartnerOrders($from_date, $fulfillment_status, $limit, $order_direction, $order_column_type, $mode, $nextcursor, $search_term); print_r($result); } catch (Exception $e) { echo 'Exception when calling ALLApi->findPartnerOrders: ', $e->getMessage(), PHP_EOL; } $apiInstance = new EzzeSiftuz\OrdersV3\Api\ALLApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client() ); $sales_order_id = "sales_order_id_example"; // string | The salesOrderId used for searching try { $result = $apiInstance->getPartnerOrderBySalesOrderId($sales_order_id); print_r($result); } catch (Exception $e) { echo 'Exception when calling ALLApi->getPartnerOrderBySalesOrderId: ', $e->getMessage(), PHP_EOL; } ?>
Documentation for API Endpoints
All URIs are relative to https://live.api.otto.market
Class | Method | HTTP request | Description |
---|---|---|---|
ALLApi | cancelPartnerOrderPositionItems | POST /v3/orders/{salesOrderId}/positionItems/{positionItemId}/cancellation | Cancels PositionItems of an order by ids |
ALLApi | cancelPartnerOrders | POST /v3/orders/{salesOrderId}/cancellation | Cancel all PositionItems of an order |
ALLApi | findPartnerOrders | GET /v3/orders | Get a list of orders which can be filtered on fulfillmentStatus. |
ALLApi | getPartnerOrderBySalesOrderId | GET /v3/orders/{salesOrderId} | Get a single order via Sales Order Id |
OrdersApi | cancelPartnerOrders | POST /v3/orders/{salesOrderId}/cancellation | Cancel all PositionItems of an order |
OrdersApi | findPartnerOrders | GET /v3/orders | Get a list of orders which can be filtered on fulfillmentStatus. |
OrdersApi | getPartnerOrderBySalesOrderId | GET /v3/orders/{salesOrderId} | Get a single order via Sales Order Id |
PositionItemsApi | cancelPartnerOrderPositionItems | POST /v3/orders/{salesOrderId}/positionItems/{positionItemId}/cancellation | Cancels PositionItems of an order by ids |
Documentation For Models
- Address
- Amount
- InitialServiceFee
- Link
- OrderLifecycleInformation
- PartnerOrder
- PartnerOrderList
- PositionItem
- Product
- TrackingInfo
Documentation For Authorization
All endpoints do not require authorization.