Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
446 lines (440 loc) · 28.3 KB

File metadata and controls

446 lines (440 loc) · 28.3 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
{{#> layout title="Akeneo API documentation"}}
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="panel panel-hero">
<div class="panel-body-home">
<div class="row">
<!-- medium and large screens -->
<div class="hidden-xs hidden-sm col-md-6 col-lg-5">
<h1 class="emphasis">Build Apps to ease the connection with Akeneo PIM</h1>
<p>Follow our step-by-step guide to create an app and use OAuth 2.0</p>
<a class="btn btn-primary" href="/apps/homepage.html">Build an App</a>
</div>
<div class="hidden-xs hidden-sm col-md-6 col-lg-7">
<img class="img-responsive img-banner" src="img/illustrations/illus--main-banner-apps.svg"></img>
</div>
<!-- small screens: iPad -->
<div class="hidden-xs hidden-md hidden-lg col-sm-6">
<h1 class="emphasis">Build Apps to ease the connection with Akeneo PIM</h1>
<p>Follow our step-by-step guide to create an app and use OAuth 2.0</p>
<a class="btn btn-primary" href="/tutorials/how-to-get-your-app-token.html">How to get App token</a>
</div>
<div class="hidden-xs hidden-md hidden-lg col-sm-6">
<img class="img-responsive img-banner" src="img/illustrations/illus--main-banner-apps.svg"></img>
</div>
<!-- extra small screens : iPhone -->
<div class="hidden-sm hidden-md hidden-lg col-xs-12">
<img class="img-responsive img-banner" src="img/illustrations/illus--main-banner-apps.svg"></img>
</div>
<div class="hidden-sm hidden-md hidden-lg col-xs-12">
<h1 class="emphasis">Build Apps to ease the connection with Akeneo PIM</h1>
<p>Follow our step-by-step guide to create an app and use OAuth 2.0</p>
<a class="btn btn-primary" href="/tutorials/how-to-get-your-app-token.html">How to get App token</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6 col-lg-6">
<div class="panel panel-info panel-btn">
<a href="https://help.akeneo.com/pim/serenity/articles/how-to-connect-my-pim-with-apps.html">
<div class="panel-body">
<div>
<img class="pull-left" alt="Go to help center" src="/img/illustrations/illus--apps.svg" style="max-height: 120px; margin-right: 10px;">
</div>
<div>
<h2>Want to know more about App?</h2>
<p>Go to our help center and discover how Akeneo PIM users will connect & manage Apps from the PIM UI</p>
</div>
</div>
</a>
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6">
<div class="panel panel-info panel-btn">
<a href="https://manage.apps.akeneo.com/">
<div class="panel-body">
<div>
<img class="pull-left" alt="Go to Akeneo App Store" src="/img/illustrations/illus--marketplace.svg" style="max-height: 120px; margin-right: 10px;">
</div>
<div>
<h2>Your App is good to go?</h2>
<p>Connect to the App Portal and publish it</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container-fluid">
<div class="row">
<div class="col-lg-offset-1 col-lg-10">
<div class="row">
<!-- medium, and large screens -->
<div class="hidden-xs hidden-sm col-md-5 col-lg-4">
<h2 class="text-right" style="margin-top: 30px;">APIs, the <b><em>BEST</em></b> way<br/>to connect your PIM</h2>
<p class="text-right">Do you need to build a <a href="/apps/overview.html#why-apps-over-connectors"><b>Connector</b><br>(instead of an App</a>) to connect<br>your PIM with a third-party?<br/>We got you covered with this tutorial.</p>
<a class="btn btn-primary pull-right" href="/getting-started/connect-the-pim-4x/welcome.html">Start here!</a>
<a class="btn btn-primary btn-ghost pull-right" href="/documentation/why-the-api.html">Discover why</a>
</div>
<div class="hidden-xs hidden-sm col-md-7 col-lg-8">
<img class="img-responsive" alt="Build amazing tools on top of your favorite PIM" src="/img/illustrations/illus--build_amazing_tools.svg" style="max-height: 320px;">
</div>
<!-- small screens: iPad -->
<div class="hidden-xs hidden-md hidden-lg col-sm-6">
<h2 class="text-right">APIs, the <b><em>BEST</em></b> way<br/>to connect your PIM</h2>
<p class="text-right">Do you need to build a <a href="/apps/overview.html#why-apps-over-connectors"><b>Connector</b><br>(instead of an App</a>) to connect<br>your PIM with a third-party? We got you covered with this tutorial.</p>
<a class="btn btn-primary pull-right" href="/getting-started/connect-the-pim-4x/welcome.html">Start here!</a>
<a class="btn btn-primary btn-ghost pull-right" href="/documentation/why-the-api.html">Discover why</a>
</div>
<div class="hidden-xs hidden-md hidden-lg col-sm-6">
<img class="img-responsive" alt="Build amazing tools on top of your favorite PIM" src="/img/illustrations/illus--build_amazing_tools.svg" style="max-height: 320px;">
</div>
<!-- extra small screens: iPhone -->
<div class="col-xs-12 hidden-sm hidden-md hidden-lg">
<img class="img-responsive center-block" alt="Build amazing tools on top of your favorite PIM" src="/img/illustrations/illus--build_amazing_tools.svg" style="max-height: 320px;">
</div>
<div class="col-xs-12 hidden-sm hidden-md hidden-lg">
<h2 class="text-center" style="margin-top: 30px;">APIs, the <b><em>BEST</em></b> way<br/>to connect your PIM</h2>
<p class="text-center">Need to build a <a href="/apps/overview.html#why-apps-over-connectors"><b>Connector</b><br>(instead of an App</a>) to connect<br>your PIM to a third-party? We got you covered with this tutorial.</p>
<a class="btn btn-primary btn-ghost center-block" style="width: fit-content;" href="/documentation/why-the-api.html">Discover why</a>
<a class="btn btn-primary center-block" style="width: fit-content; margin-top: 5px;" href="/getting-started/connect-the-pim-4x/welcome.html">Start here!</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-8">
<h2>What do you want to connect?</h2>
<div class="row">
<div class="col-sm-6">
<div class="panel panel-info panel-btn">
<a href="/guides/dam-connection/introduction.html">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-3 col-xs-6 col-md-offset-2 col-md-8">
<img width="100%" src="img/illustrations/illus--dam-connection.svg"></img>
</div>
</div>
<h2 class="text-center">A DAM</h2>
<p class="text-center">You may want to connect your Digital Asset Manager to the PIM in order to easily be able to link your product assets to the right product in the PIM.</p>
</div>
</a>
</div>
</div>
<div class="col-sm-6">
<div class="panel panel-info panel-btn">
<a href="/guides/ecommerce-connection/introduction.html">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-3 col-xs-6 col-md-offset-2 col-md-8">
<img width="100%" src="img/illustrations/illus--ecommerce-connection.svg"></img>
</div>
</div>
<h2 class="text-center">An eCommerce solution</h2>
<p class="text-center">You may want to connect the PIM to your eCommerce solution in order to populate your eCommerce website(s) with your products, categories, assets...<br></p>
</div>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="panel panel-info panel-btn">
<a href="/guides/translation-connection/introduction.html">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-3 col-xs-6 col-md-offset-2 col-md-8">
<img width="100%" src="img/illustrations/illus--translation-connection.svg"></img>
</div>
</div>
<h2 class="text-center">A translation solution</h2>
<p class="text-center">You may want to connect your translation solution to the PIM in order to add a translation feature to Akeneo PIM and thus improve the user experience!<br></p>
</div>
</a>
</div>
</div>
<div class="col-sm-6">
<div class="panel panel-info panel-btn">
<a href="/guides/erp-connection/introduction.html">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-3 col-xs-6 col-md-offset-2 col-md-8">
<img width="100%" src="img/illustrations/illus--erp-connection.svg"></img>
</div>
</div>
<h2 class="text-center">An ERP</h2>
<p class="text-center">Every day, new products are referenced in your ERP. You may want to automatically sent them to the PIM in order to start with their enrichment process.</p>
</div>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="panel panel-info panel-btn">
<a href="/guides/syndication-connection/introduction.html">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-4 col-xs-4 col-md-offset-2 col-md-8">
<img width="100%" src="img/illustrations/illus--syndication-connection.svg"></img>
</div>
</div>
<h2 class="text-center">A syndication solution</h2>
<p class="text-center">Maximize the business’s revenue of your customers by creating a connector to distribute PIM products to different channels via your syndication solution.</p>
</div>
</a>
</div>
</div>
<div class="col-sm-6">
<div class="panel panel-info panel-btn">
<a href="/guides/print-connection/introduction.html">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-4 col-xs-4 col-sm-offset-2 col-sm-8 ">
<img width="100%" src="img/illustrations/illus--print-connection.svg"></img>
</div>
</div>
<h2 class="text-center">A print solution</h2>
<p class="text-center">You may want to connect the PIM to your print solution in order to automate the creation of paper catalogs, PDF documents, product sheets...</p>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-6 col-md-offset-0 col-md-4">
<h2 class="text-center">Our references</h2>
<div class="row">
<div class="col-xs-offset-4 col-xs-4 col-sm-offset-3 col-sm-6">
<img width="100%" src="img/illustrations/illus--developer.svg"></img>
</div>
</div>
<p class="text-center">You are used to REST API, events and web-hooks, and you want to directly start coding? Here is the list of our REST API endpoints and event types</br>we specially crafted for you</br>with love. ❤️</p>
<a class="text-rest btn btn-primary btn-ghost center-block btn-rest" href="/api-reference-index.html">GO for REST API</a>
<a class="text-events btn btn-primary btn-ghost center-block btn-events" href="/event-platform/api-reference.html" style="margin-top: 10px;">GO for EVENTS</a>
</div>
</div>
<div class="row" id="tools">
<div class="col-xs-12 col-md-offset-2 col-md-8">
<h2>Tools, tools, tools...</h2>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-ghost panel-btn">
<a href="https://storage.googleapis.com/akecld-prd-pim-saas-shared-openapi-spec/openapi.json" target="_blank">
<div class="panel-body">
<img width="80px" height="80px" class="pull-left" src="img/icons/icon--openapi.svg" style="margin-right: 20px;margin-bottom: 30px;"></img>
<h3 style="margin-top: 0px;">Our OpenAPI spec</h3>
<p>Want to dig deeper into the REST API? You can download our full REST API specification, in the well-known OpenAPI format.</p>
<p>
Download the OpenAPI spec in
<strong><a href="https://storage.googleapis.com/akecld-prd-pim-saas-shared-openapi-spec/openapi.json" target="_blank">JSON</a></strong>
or
<strong><a href="https://storage.googleapis.com/akecld-prd-pim-saas-shared-openapi-spec/openapi.yaml" target="_blank">YAML</a></strong>
formats.
</p>
</div>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-ghost panel-btn">
<a href="files/akeneo-postman-collection.json" target="_blank">
<div class="panel-body">
<img width="80px" height="80px" class="pull-left" src="img/icons/icon--postman.svg" style="margin-right: 20px;margin-bottom: 30px;"></img>
<h3 style="margin-top: 0px;">Our Postman collection</h3>
<p>The easiest way to start with the REST API endpoints. Test, experiment, demo the REST API thanks to this powerful tool!</p>
<p>
Download the Postman collection
<strong><a href="files/akeneo-postman-collection.json" target="_blank">here</a></strong>
and its environment
<strong><a href="files/akeneo-postman-environment.json" target="_blank">there</a></strong>.
</p>
</div>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-ghost panel-btn">
<a href="https://portal.akeneo.com" target="_blank">
<div class="panel-body">
<img width="80px" height="80px" class="pull-left" src="img/icons/sandbox.svg" style="margin-right: 20px;margin-bottom: 30px;"></img>
<h3 style="margin-top: 0px;">Generate your sandbox</h3>
<p>
You are a Partner and don't have access to a PIM instance to build your app?
<br>Generate your PIM sandbox via the <strong><a href="https://portal.akeneo.com" target="_blank">Akeneo Portal</a></strong>.
</p>
<p>
You do not yet have access to the Akeneo Portal?
Please, <strong><a href="https://portal.akeneo.com/get-sandbox-for-app-development" target="_blank">create your account</a></strong>!
</p>
</div>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-ghost panel-btn">
<a href="/php-client/introduction.html">
<div class="panel-body">
<img width="80px" height="80px" class="pull-left" src="img/icons/icon--php-client.svg" style="margin-right: 20px;"></img>
<h3 style="margin-top: 0px;">Our PHP REST API client</h3>
<p>You are a proud PHP developer? Don't bother working with REST calls, try our PHP client! Brought with love to you.</p>
</div>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-ghost panel-btn">
<a href="https://github.com/akeneo/pim-api-docs/blob/master/content/swagger/akeneo-web-api.json" target="_blank">
<div class="panel-body">
<img width="80px" height="80px" class="pull-left" src="img/icons/icon--rest.svg" style="margin-right: 20px;margin-bottom: 30px;"></img>
<h3 style="margin-top: 0px;">Our Swagger spec (Deprecated)</h3>
<p>Want to dig deeper into the REST API for PaaS versions? You can download our full REST API specification, in the well-known Swagger format.</p>
<p>We recommend the swagger spec only if you are using a PaaS version of Akeneo.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-offset-1 col-sm-10">
<h2>Want more?</h2>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="panel panel-ghost panel-btn">
<a href="/documentation/authentication.html">
<div class="panel-body">
<div class="panel-btn-big">Authentication ></div>
<p>All you need to know about authentication to be able to access to the REST API.</p>
</div>
</a>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="panel panel-ghost panel-btn">
<a href="/documentation/permissions.html">
<div class="panel-body">
<div class="panel-btn-big">Permissions ></div>
<p>Such wonderful powers behin those precious permissions! Learn more here.</p>
</div>
</a>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="panel panel-ghost panel-btn">
<a href="/documentation/pagination.html">
<div class="panel-body">
<div class="panel-btn-big">Pagination ></div>
<p>All you need to know to handle and to request large databases of products.</p>
</div>
</a>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="panel panel-ghost panel-btn">
<a href="/documentation/responses.html#client-errors">
<div class="panel-body">
<div class="panel-btn-big">Error responses ></div>
<p>You just got a 401 and do not know what to do with this. Here is your solution!</p>
</div>
</a>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="panel panel-ghost panel-btn">
<a href="/documentation/update.html#update-behavior">
<div class="panel-body">
<div class="panel-btn-big">Update data ></div>
<p>Merging data can be a little bit tricky sometimes. Here is the guide to serene updates.</p>
</div>
</a>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="panel panel-ghost panel-btn">
<a href="/documentation/filter.html#filters">
<div class="panel-body">
<div class="panel-btn-big">Filter products ></div>
<p>You want to be able to retrieve only the products you need. Filters are here to help.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2>Want to contribute?</h2>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-5">
<div class="panel panel-default panel-btn">
<a href="https://github.com/akeneo/pim-community-dev">
<div class="panel-body">
<div class="panel-btn-big">The REST API itself</div>
<p class="text-center">Need more endpoints? Open source we are! Do not hesitate to help us build the REST API. The more endpoints, the better!</p>
</div>
</a>
</div>
</div>
<div class="col-xs-offset-4 col-xs-4 hidden-sm col-md-offset-0 col-md-2">
<img class="img-responsive" src="img/illustrations/illus--contribution.svg"></img>
</div>
<div class="col-xs-12 col-sm-6 col-md-5">
<div class="panel panel-default panel-btn">
<a href="https://github.com/akeneo/pim-api-docs">
<div class="panel-body">
<div class="panel-btn-big">This API documentation website</div>
<p class="text-center">Spotted a typo, or even a hole? Help us get better with our documentation. All contributions are warmly welcomed!</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-offset-3 col-sm-6">
<div class="panel panel-info panel-btn">
<a href="https://apps.akeneo.com">
<div class="panel-body">
<div class="row">
<div class="col-xs-offset-4 col-xs-4 col-sm-offset-2 col-sm-8 col-md-offset-4 col-md-4">
<img class="img-responsive" src="img/illustrations/illus--marketplace.svg"></img>
</div>
</div>
<h2 class="text-center">Join us on the Akeneo App Store!</h2>
<p class="text-center">Take a look to what our beloved community already built around Akeneo and cook a connector that our users will love</p>
</a>
</div>
</div>
</div>
</div>
</div>
{{/layout}}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.