User authentication and session management for B2B integrations
- Edit a Product Category
Search products and categories
Get Products
Edit Products
Delete Items
Get a list of products
Create product
Example of a request to get categories
Example of a request to get the composition of a category
Get a list of product categories by ID
Create a Product Category
Delete a Product Category
Get a list of product categories
Edit a Product Category
Business Management (1.0.0)
Full-featured B2B API for business operations.
Base URL: https://api.alteg.io/api
V1 will be gradually deprecated. We recommend using V2 API for new integrations. V1 endpoints are maintained for backward compatibility, but new features will be released in V2 only.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/b2b-v1/openapi/
Production
https://api.alteg.io/api/v1/
Bodyapplication/jsonrequired
Parent category ID (optional, but can be 0 or null if you don't need to specify the parent category)
Example: 123456
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/goods_categories/{location_id}
- Productionhttps://api.alteg.io/api/v1/goods_categories/{location_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/goods_categories/{location_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "Manicure",
"parent_category_id": 123456,
"article": "123article",
"comment": "Category of products for manicure"
}'Response
application/json
{ "success": true, "data": { "id": 123456, "title": "Manicure", "parent_category_id": 123457 }, "meta": [] }
Bodyapplication/jsonrequired
Parent category ID (optional, but can be 0 or null if you don't need to specify the parent category)
Example: 123456
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/goods_categories/{location_id}/{category_id}
- Productionhttps://api.alteg.io/api/v1/goods_categories/{location_id}/{category_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/goods_categories/{location_id}/{category_id}' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "Manicure",
"parent_category_id": 123456,
"article": "123article",
"comment": "Category of products for manicure"
}'Response
application/json
{ "success": true, "data": { "id": 123456, "title": "Manicure", "parent_category_id": 123457 }, "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/goods_categories/{location_id}/{category_id}
- Productionhttps://api.alteg.io/api/v1/goods_categories/{location_id}/{category_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/goods_categories/{location_id}/{category_id}' \
-H 'Accept: string' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>' \
-H 'Content-Type: string'