Skip to content

Commit 143d69e

Browse files
masaccmeganelepalud-akeneo
authored andcommitted
CXP-1206: update postman collection with app catalogs endpoints
1 parent 828ab74 commit 143d69e

File tree

1 file changed

+182
-0
lines changed

1 file changed

+182
-0
lines changed

content/files/Akeneo PIM API.postman_collection.json

Lines changed: 182 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,188 @@
55
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
66
},
77
"item": [
8+
{
9+
"name": "App Catalogs",
10+
"item": [
11+
{
12+
"name": "catalog",
13+
"request": {
14+
"method": "GET",
15+
"header": [
16+
{
17+
"key": "Authorization",
18+
"value": "Bearer {{token}}"
19+
}
20+
],
21+
"url": {
22+
"raw": "{{url}}/api/rest/v1/catalogs/6c046434-4501-4f85-94b7-d0194b3d9fb1",
23+
"host": [
24+
"{{url}}"
25+
],
26+
"path": [
27+
"api",
28+
"rest",
29+
"v1",
30+
"catalogs",
31+
"6c046434-4501-4f85-94b7-d0194b3d9fb1"
32+
]
33+
},
34+
"description": "Assuming that the given uuid is the code of an existing catalog"
35+
},
36+
"response": []
37+
},
38+
{
39+
"name": "catalogs",
40+
"request": {
41+
"method": "GET",
42+
"header": [
43+
{
44+
"key": "Authorization",
45+
"value": "Bearer {{token}}"
46+
}
47+
],
48+
"url": {
49+
"raw": "{{url}}/api/rest/v1/catalogs",
50+
"host": [
51+
"{{url}}"
52+
],
53+
"path": [
54+
"api",
55+
"rest",
56+
"v1",
57+
"catalogs"
58+
]
59+
}
60+
},
61+
"response": []
62+
},
63+
{
64+
"name": "catalog",
65+
"request": {
66+
"method": "POST",
67+
"header": [
68+
{
69+
"key": "Authorization",
70+
"value": "Bearer {{token}}"
71+
},
72+
{
73+
"key": "Content-Type",
74+
"value": "application/json"
75+
}
76+
],
77+
"body": {
78+
"mode": "raw",
79+
"raw": "{\n \"name\": \"Store US\"\n}"
80+
},
81+
"url": {
82+
"raw": "{{url}}/api/rest/v1/catalogs",
83+
"host": [
84+
"{{url}}"
85+
],
86+
"path": [
87+
"api",
88+
"rest",
89+
"v1",
90+
"catalogs"
91+
]
92+
}
93+
},
94+
"response": []
95+
},
96+
{
97+
"name": "catalog",
98+
"request": {
99+
"method": "PATCH",
100+
"header": [
101+
{
102+
"key": "Authorization",
103+
"value": "Bearer {{token}}"
104+
},
105+
{
106+
"key": "Content-Type",
107+
"value": "application/json"
108+
}
109+
],
110+
"body": {
111+
"mode": "raw",
112+
"raw": "{\n \"name\": \"New Store US\"\n}"
113+
},
114+
"url": {
115+
"raw": "{{url}}/api/rest/v1/catalogs/6c046434-4501-4f85-94b7-d0194b3d9fb1",
116+
"host": [
117+
"{{url}}"
118+
],
119+
"path": [
120+
"api",
121+
"rest",
122+
"v1",
123+
"catalogs",
124+
"6c046434-4501-4f85-94b7-d0194b3d9fb1"
125+
]
126+
}
127+
},
128+
"response": []
129+
},
130+
{
131+
"name": "catalog",
132+
"request": {
133+
"method": "DELETE",
134+
"header": [
135+
{
136+
"key": "Authorization",
137+
"value": "Bearer {{token}}"
138+
},
139+
{
140+
"key": "Content-Type",
141+
"value": "application/json"
142+
}
143+
],
144+
"url": {
145+
"raw": "{{url}}/api/rest/v1/catalogs/6c046434-4501-4f85-94b7-d0194b3d9fb1",
146+
"host": [
147+
"{{url}}"
148+
],
149+
"path": [
150+
"api",
151+
"rest",
152+
"v1",
153+
"catalogs",
154+
"6c046434-4501-4f85-94b7-d0194b3d9fb1"
155+
]
156+
}
157+
},
158+
"response": []
159+
},
160+
{
161+
"name": "catalog product uuids",
162+
"request": {
163+
"method": "GET",
164+
"header": [
165+
{
166+
"key": "Authorization",
167+
"value": "Bearer {{token}}"
168+
}
169+
],
170+
"url": {
171+
"raw": "{{url}}/api/rest/v1/catalogs/6c046434-4501-4f85-94b7-d0194b3d9fb1/product-uuids",
172+
"host": [
173+
"{{url}}"
174+
],
175+
"path": [
176+
"api",
177+
"rest",
178+
"v1",
179+
"catalogs",
180+
"6c046434-4501-4f85-94b7-d0194b3d9fb1",
181+
"product-uuids"
182+
]
183+
},
184+
"description": "Assuming that the given uuid is the code of an existing catalog"
185+
},
186+
"response": []
187+
}
188+
]
189+
},
8190
{
9191
"name": "Association type (>= v2)",
10192
"item": [

0 commit comments

Comments
 (0)