Skip to main content
Skip table of contents

Shelves

This resource allows you to fetch, create and update the Shelf details.

You can search for any existing shelves using filters as defined here.

Methods

GET (Group List)

This method allows you to fetch the shelves details.

Pagination is supported for this resource. Click here to see the details of it.

Use the page parameter to navigate, Next-Page and Page-Count headers for pagination details.

End Point: /shelves

Sample response payload

CODE
[
 {
    "recordid": "string",
    "id": "string",
    "description": "string",
    "active": true
  }
]

GET By ID

Retrieves the information of a specific Shelf by providing its Shelf ID or Record ID.

End Point: /shelves/{ID}

Sample response payload

CODE
{
 "recordid": "string",
 "id": "string",
 "description": "string",
 "active": true
}

POST

Creates a new Shelf.

End Point: /shelves/

Sample request payload

CODE
{
 "recordid": "string",
 "id": "string",
 "description": "string",
 "active": true
}

Sample response payload

CODE
{
 "recordid": "string",
 "id": "string",
 "description": "string",
 "active": true
}

PUT

Updates an existing Shelf.

End Point: /shelves/{iD}

Sample request payload

CODE
{
 "recordid": "string",
 "id": "string",
 "description": "string",
 "active": true
}

Sample response payload

CODE
{
 "recordid": "string",
 "id": "string",
 "description": "string",
 "active": true
}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.