Authentication
Public and private key based authentication
In the onboarding process, we will create an account for the partner in our ecosystem and from there we will provide the public and private key.These keys will need to be in the header of all the requests in this document.
Available endpoints
List Doris categories
- Method: GET
- Endpoint: https://api.doris.services/v1/orchestrator/category/doris-category-list
- Description: This endpoint lists Doris' categories, so that when you import products you can associate your product with the category that represents the item in our ecosystem..
Request example:
curl -X GET "https://api.doris.services/v1/orchestrator/category/doris-category-list" \
-H "doris_api_key: YOUR PUBLIC API KEY" \
-H "doris_secret_key: YOUR SECRET API KEY"
Response example:
{
"category": [
{
"id": 2,
"name": "tshirt",
"type": "TOP"
},
{
"id": 5,
"name": "shorts",
"type": "BOTTOM"
}
]
// ...
}
Importing products
Import a product
- Method: POST
- Endpoint: https://api.doris.services/v1/orchestrator/pub/product
- Description: This endpoint allows only one product to be created at a time. If you want to create more than one product at a time, skip to session Import products in batch.
Body:
{
"name": "the product name",
"description": "the product description",
"image_urls": "[https://example.com/cool-tshirt-image-123.jpg, https://example.com/cool-tshirt-image-345.jpg]",
"identifier": "101010",
"parent_identifier": "101010",
"sku_id": "998877",
"url": "https://example.com/cool-tshirt",
"regular_price": 329.8,
"special_price": 309.8,
"doris_category_id": 2,
"doris_category_name": "tshirt",
"doris_category_type": "TOP",
"size_label": "P",
"has_stock": true,
"installment": 3,
"installment_value": 109.93,
"gender": "MALE",
"tuck_in_default": "TUCK_IN",
"brand": "product brand name"
}
Request example:
curl -X POST "https://api.doris.services/v1/orchestrator/pub/product" \
-H "doris_api_key: YOUR PUBLIC API KEY" \
-H "doris_secret_key: YOUR SECRET API KEY" \
-d "{
"name": "the product name",
"description": "the product description",
"image_urls": "[https://example.com/cool-tshirt-image-123.jpg, https://example.com/cool-tshirt-image-345.jpg]",
"identifier": "101010",
"parent_identifier": "101010",
"sku_id": "998877",
"url": "https://example.com/cool-tshirt",
"regular_price": 329.8,
"special_price": 309.8,
"doris_category_id": 2,
"doris_category_name": "tshirt",
"doris_category_type": "TOP",
"size_label": "P",
"has_stock": true,
"installment": 3,
"installment_value": 109.93,
"gender": "MALE",
"tuck_in_default": "TUCK_IN",
"brand": "product brand name"
}"
Import products in batch
- Method: POST
- Endpoint: https://api.doris.services/v1/orchestrator/pub/product-by-bulk
- Description: This endpoint allows you to create several products at the same time.
Body: A list of products, with the same specifications as the
Import a product endpoint
Request example:
curl -X POST "https://api.doris.services/v1/orchestrator/pub/product-by-bulk" \
-H "doris_api_key: YOUR PUBLIC API KEY" \
-H "doris_secret_key: YOUR SECRET API KEY" \
-d "[
{
"name": "the product name",
"description": "the product description",
"image_urls": "[https://example.com/cool-tshirt-image-123.jpg, https://example.com/cool-tshirt-image-345.jpg]",
"identifier": "101010",
"parent_identifier": "101010",
"sku_id": "998877", // unique sku code for size P
"url": "https://example.com/cool-tshirt",
"regular_price": 329.8,
"special_price": 309.8,
"doris_category_id": 2,
"doris_category_name": "tshirt",
"doris_category_type": "TOP",
"size_label": "P",
"has_stock": true,
"installment": 3,
"installment_value": 109.93,
"gender": "MALE",
"tuck_in_default": "TUCK_IN",
"brand": "your brand name"
},
{
"name": "the product name",
"description": "the product description",
"image_urls": "[https://example.com/cool-tshirt-image-123.jpg, https://example.com/cool-tshirt-image-345.jpg]",
"identifier": "101010",
"parent_identifier": "101010",
"sku_id": "998878", // unique sku code for size M
"url": "https://example.com/cool-tshirt",
"regular_price": 329.8,
"special_price": 309.8,
"doris_category_id": 2,
"doris_category_name": "tshirt",
"doris_category_type": "TOP",
"size_label": "M",
"has_stock": true,
"installment": 3,
"installment_value": 109.93,
"gender": "MALE",
"tuck_in_default": "TUCK_IN",
"brand": "your brand name"
},
{
"name": "the product name",
"description": "the product description",
"image_urls": "[https://example.com/cool-tshirt-image-123.jpg, https://example.com/cool-tshirt-image-345.jpg]",
"identifier": "101010",
"parent_identifier": "101010",
"sku_id": "998879", unique sku code for size G
"url": "https://example.com/cool-tshirt",
"regular_price": 329.8,
"special_price": 309.8,
"doris_category_id": 2,
"doris_category_name": "tshirt",
"doris_category_type": "TOP",
"size_label": "G",
"has_stock": false,
"installment": 3,
"installment_value": 109.93,
"gender": "MALE",
"tuck_in_default": "TUCK_IN",
"brand": "your brand name"
},
]"
Update a product
- Method: PUT
- Endpoint: https://api.doris.services/v1/orchestrator/pub/product/{identifier}
- Description: This endpoint allows you to enable or disable a product, change its name, url and gender. Activates or deactivates a product, change the name, change the url or change the gender.
Parameters:
identifier: the product identifier
Body:
{
"name": "the new product name", // optional
"url": "https://example.com/new-cool-tshirt", // optional
"active": false, // optional
"gender": "FEMALE", // optional
}
Request example:
curl -X PUT "https://api.doris.services/v1/orchestrator/pub/product/101010" \
-H "doris_api_key: YOUR PUBLIC API KEY" \
-H "doris_secret_key: YOUR SECRET API KEY" \
-d "{
"name": "the new product name",
"url": "https://example.com/new-cool-tshirt",
"active": false,
"gender": "FEMALE",
}"
Updating price and stock
- Method: PUT
- Endpoint: https://api.doris.services/v1/pub/product-price-stock
- Description: This endpoint is used to keep the price and stock of the product updated in our ecosystem.
Body:
{
"sku_id": "998879",
"has_stock": false,
"regular_price": 100,
"special_price": 90
}
Request example:
curl -X PUT "https://api.doris.services/v1/orchestrator/pub/product-price-stock" \
-H "doris_api_key: YOUR PUBLIC API KEY" \
-H "doris_secret_key: YOUR SECRET API KEY" \
-d "{
"sku_id": "998879",
"has_stock": false,
"regular_price": 100,
"special_price": 90
}"