ProductStores

productStores

list ProductStoreSetting

get
Authorizations
Path parameters
productStoreIdstringRequired
Query parameters
pageIndexnumber · int32Optional

Page number to return, starting with zero

pageSizenumber · int32Optional

Number of records per page (default 100)

orderByFieldstringOptional

Field name to order by (or comma separated names)

pageNoLimitstringOptional

If true don't limit page size (no pagination)

dependentLevelsnumber · int32Optional

Levels of dependent child records to include

settingTypeEnumIdstringOptional
settingValuestringOptional
lastUpdatedStampstring · date-timeOptional
Responses
200
Success
application/json
get
GET /rest/s1/inventory-cycle-count/productStores/{productStoreId}/settings HTTP/1.1
Host: dev-maarg.hotwax.io
Authorization: Basic username:password
Accept: */*
[
  {
    "_entity": "org.apache.ofbiz.product.store.ProductStoreSetting",
    "productStoreId": "text",
    "settingTypeEnumId": "text",
    "settingValue": "text",
    "lastUpdatedStamp": "2025-07-12T07:10:35.606Z"
  }
]

store ProductStoreSetting

post
Authorizations
Path parameters
productStoreIdstringRequired
Body
_entitystringOptionalDefault: org.apache.ofbiz.product.store.ProductStoreSetting
productStoreIdstringOptional
settingTypeEnumIdstringOptional
settingValuestringOptional
lastUpdatedStampstring · date-timeOptional
Responses
200
Success
application/json
post
POST /rest/s1/inventory-cycle-count/productStores/{productStoreId}/settings HTTP/1.1
Host: dev-maarg.hotwax.io
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 183

{
  "_entity": "org.apache.ofbiz.product.store.ProductStoreSetting",
  "productStoreId": "text",
  "settingTypeEnumId": "text",
  "settingValue": "text",
  "lastUpdatedStamp": "2025-07-12T07:10:35.606Z"
}
{
  "_entity": "org.apache.ofbiz.product.store.ProductStoreSetting.PK",
  "productStoreId": "text",
  "settingTypeEnumId": "text"
}

Was this helpful?