You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get started quickly with E-goi with our integration tools. Our SDK is a modern open source library that makes it easy to integrate your application with E-goi services.
4
+
3
5
Almost anything you can do in E-goi, you can do with our API.
4
6
5
7
The API describes each available method. Learn about parameters, errors, and how to format your requests. That means you can easily call on E-goi actions for your integration.
6
8
**API** Full documentation at https://developers.e-goi.com/api/v3/
7
9
8
-
If you find a bug or something worth fixing, create an issue.
10
+
**Note:** This repository is currently in **Release Candidate** stage. Use with caution in production environments.
11
+
12
+
Feel free to **fork this repository** and adapt it to your needs. Contributions and improvements are always welcome!
Copy file name to clipboardExpand all lines: docs/models/CreateOrder.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ Key | Input Type | Accessed Type | Description | Notes
13
13
**order_id** | str, | str, | Order ID is any non-empty unique string |
14
14
**order_total** | decimal.Decimal, int, float, | decimal.Decimal, | Ecommerce cart total | [optional] value must be a 64 bit float
15
15
**cart_id** | str, | str, | Cart ID that originated this order | [optional]
16
+
**order_date** | str, datetime, | str, | Date and hour of the order | [optional] value must conform to RFC-3339 date-time
17
+
**order_status** | str, | str, | Status of the order | [optional] must be one of ["created", "pending", "canceled", "completed", "unknown", ] if omitted the server will use the default value of "unknown"
**[products](#products)** | list, tuple, | tuple, | List of products | [optional]
18
20
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
@@ -44,7 +46,7 @@ list, tuple, | tuple, | List of products |
44
46
### Tuple Items
45
47
Class Name | Input Type | Accessed Type | Description | Notes
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**store_url** | str, | str, | Ecommerce store url |
18
-
**contact_id** | str, | str, | Contact ID is any non-empty unique string identifying the user (such as an email address or e-goi uid) | [optional]
19
+
**order_status** | str, | str, | Status of the order | [optional] must be one of ["created", "pending", "canceled", "completed", "unknown", ] if omitted the server will use the default value of "unknown"
19
20
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
**gtin** | str, | str, | Global Trade Item Number | [optional]
21
+
**mpn** | str, | str, | Manufacturer Part Number | [optional]
22
+
**link** | str, | str, | Link for the product | [optional]
23
+
**image_link** | str, | str, | Link for the product image | [optional]
24
+
**price** | decimal.Decimal, int, float, | decimal.Decimal, | Price of the product | [optional] if omitted the server will use the default value of 0value must be a 64 bit float
25
+
**sale_price** | decimal.Decimal, int, float, | decimal.Decimal, | Sale price of the product | [optional] if omitted the server will use the default value of 0value must be a 64 bit float
26
+
**brand** | str, | str, | Brand of the product | [optional]
27
+
**quantity** | decimal.Decimal, int, float, | decimal.Decimal, | Quantity of the product | [optional] if omitted the server will use the default value of 0value must be a 64 bit float
28
+
**[categories](#categories)** | list, tuple, | tuple, | Array of product categories, using the character '>' as delimiter for the breadcrumb syntax | [optional]
29
+
**[related_products](#related_products)** | list, tuple, | tuple, | Related products, array of 'product_identifier' | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
32
+
33
+
# categories
34
+
35
+
Array of product categories, using the character '>' as delimiter for the breadcrumb syntax
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
0 commit comments