-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.http
More file actions
86 lines (73 loc) · 2.85 KB
/
Copy pathapi.http
File metadata and controls
86 lines (73 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#################################################
### FILE ########################################
#################################################
### Sync files (not completed)
POST http://localhost:8080/api/v1/files
content-type: application/json
{
"root": "./import/images",
"max_depth": 1,
"content_types": "image/.+"
}
#################################################
### IMAGE #######################################
#################################################
### Sync images
POST http://localhost:8080/api/v1/images/sync
content-type: application/json
{
"root": "./import/images",
"max_depth": 10,
"content_types": "image/.+",
"replace": true
}
#################################################
### CATEGORY ####################################
#################################################
### Sync categories by slug
POST http://localhost:8080/api/v1/categories/sync
content-type: application/json
{
"root": "./import/csv/enabled",
"max_depth": 1,
"content_types": ".+",
"category_header_map": {
"title": "گروه کالا"
}
}
#################################################
### PRODUCT #####################################
#################################################
### Sync by barcoded image
POST http://localhost:18080/api/v1/products/sync/images?order_by=newest&check_availability=false&search_products_in_nodes=true&search_in_node=false&search_in_sub_node=false&get_product_parents=false&search_in_reserved_quantity=false&search_in_limited_quantity=false&limit=20&offset=0&cover_status=0&view=node&remote_pagination=false&remote_search=false&includes=Cover&includes=Nodes.Parent.Category&includes=Tags.Node.Category&includes=CategoryNodes&store_id=28&branch_id=32&stock_id=29
content-type: application/json
{
// file scan request
"root": "",
"max_depth": 1,
"content_types": "image/.+",
"naming_pattern": "",
// product sync request
"replace_cover": true,
"replace_gallery": false,
"ignore_cover_if_empty": false,
"ignore_add_to_gallery": true,
// product scan request
"cover_naming": "",
"gallery_naming": "",
"ignore_match": false
}
### Sync by spread sheets
POST http://localhost:8080/api/v1/products/sync/spreadsheets?order_by=newest&check_availability=false&search_products_in_nodes=true&search_in_node=false&search_in_sub_node=false&get_product_parents=false&search_in_reserved_quantity=false&search_in_limited_quantity=false&limit=20&offset=0&cover_status=0&view=node&remote_pagination=false&remote_search=false&includes=Cover&includes=Nodes.Parent.Category&includes=Tags.Node.Category&includes=CategoryNodes&store_id=28&branch_id=32&stock_id=29
content-type: application/json
{
"root": "./import/csv/enabled",
"max_depth": 1,
"content_types": ".+",
"replace_nodes": true,
"product_header_map": {
"title": "نام",
"barcode": "بارکد",
"category": "گروه کالا"
}
}