website logo
⌘K
🚀Welcome to Eyrene!
🎉What's New
😎Tutorials
📱Mobile App
💻Web Portal
🔌API
Docs powered by archbee 

Planograms

Methods allow you to get a complete list or a specific planogram in Eyrene, view information about them, update all fields, or only select planogram fields. Also, you can delete the planogram by ID.



GET /planograms

Retrieve a list of planograms.

GET /planograms
GET
Params
Header Parameters
Authorization
required
String
String in "Token XXXXXX..." format
Body Parameters
limit
optional
String
The number of results to return per page.
offset
optional
String
The initial index from which to return the results.


Response parameters​



count integer

The number of planograms.



next string (uri) Nullable

Next page.



previous string (uri) Nullable

Previous page.



results array of objects

An array of objects with information about planograms.

  • id string Unique ID.
  • name string Human-readable name.
  • display string Display ID.






POST /planograms

Сreate a new planogram.

POST /planograms
POST
Params
Header Parameters
Authorization
required
String
String in "Token XXXXXX..." format
Body Parameters
id
optional
String
Unique ID.
name
optional
String
Human-readable name.
display
optional
String
Display ID.



GET /planograms/{id}

Retrieve detailed information about the planogram by ID.

GET /planograms/{id}
GET
Params
Path Params
id
required
String
Planogram ID.
Header Parameters
Authorization
required
String
String in "Token XXXXXX..." format


Response parameters



id string

Unique ID.



name string

Human-readable name.



display string

Display ID.



musthavelist string

Planogram ID.







PUT /planograms/{id}

Update all planogram fields.

PUT /planograms/{id}
PUT
Params
Path Params
id
required
String
Planogram ID.
Header Parameters
Authorization
required
String
String in "Token XXXXXX..." format
Body Parameters
id
optional
String
Unique ID.
name
optional
String
Human-readable name.
display
optional
String
Display ID.


​Response parameters



id string

Unique ID.



name string

Human-readable name.



display string

Display ID.







PATCH /planograms/{id}

Update some of the planogram fields.

PATCH /planograms/{id}
PATCH
Params
Path Params
id
required
String
Planogram ID.
Header Parameters
Authorization
required
String
String in "Token XXXXXX..." format
Body Parameters
id
optional
String
Unique ID.
name
optional
String
Human-readable name.
display
optional
String
Display ID.


Response parameters​



id string

Unique ID.



name string

Human-readable name.



Display string

Display ID.







DELETE /planograms/{id}

Delete planogram by ID.

DELETE /planograms/{id}
DELETE
Params
Path Params
id
required
String
Planogram ID.
Header Parameters
Authorization
required
String
String in "Token XXXXXX..." format





Updated 14 Apr 2022
Did this page help you?
Yes
No
PREVIOUS
MHL record
NEXT
Planogram records
Docs powered by archbee 
Request example