Pick Method
The pick method resource.
/pickMethodList pick methods
Retrieve a paginated list of pick methods. Filter, order, and select columns with PostgREST query parameters.
Query parameters
selectstringComma-separated columns to return. Defaults to all.
orderstringColumn to sort by, e.g. `createdAt.desc`.
limitintegerMaximum rows to return.
offsetintegerRows to skip, for pagination.
curl --request GET \
--url 'https://rest.carbon.ms/pickMethod?select=*&limit=10' \
--header 'Authorization: Bearer <api-key>'[
{
"itemId": "xyz789",
"locationId": "xyz789",
"companyId": "xyz789",
"createdBy": "string",
"createdAt": "2026-01-01T00:00:00Z",
"defaultStorageUnitId": "xyz789",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}
]/pickMethodRetrieve a pick method
Fetch a single pick method by filtering on `itemId`.
Query parameters
itemIdstringMatch on the pick method's `itemId`, e.g. `eq.{id}`.
curl --request GET \
--url 'https://rest.carbon.ms/pickMethod?itemId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'{
"itemId": "xyz789",
"locationId": "xyz789",
"companyId": "xyz789",
"createdBy": "string",
"createdAt": "2026-01-01T00:00:00Z",
"defaultStorageUnitId": "xyz789",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}/pickMethodCreate a pick method
Create a new pick method.
Body parameters
itemIdstringrequiredReferences item.id
locationIdstringrequiredReferences location.id
defaultStorageUnitIdstringReferences storageUnit.id
companyIdstringrequiredReferences company.id
customFieldsobjectcurl --request POST \
--url https://rest.carbon.ms/pickMethod \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"itemId":"xyz789","locationId":"xyz789","companyId":"xyz789"}'{
"itemId": "xyz789",
"locationId": "xyz789",
"companyId": "xyz789",
"createdBy": "string",
"createdAt": "2026-01-01T00:00:00Z",
"defaultStorageUnitId": "xyz789",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}/pickMethodUpdate a pick method
Update an existing pick method, matched on `itemId`.
Body parameters
itemIdstringrequiredReferences item.id
locationIdstringrequiredReferences location.id
defaultStorageUnitIdstringReferences storageUnit.id
companyIdstringrequiredReferences company.id
customFieldsobjectcurl --request PATCH \
--url 'https://rest.carbon.ms/pickMethod?itemId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"itemId":"xyz789"}'{
"itemId": "xyz789",
"locationId": "xyz789",
"companyId": "xyz789",
"createdBy": "string",
"createdAt": "2026-01-01T00:00:00Z",
"defaultStorageUnitId": "xyz789",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}/pickMethodDelete a pick method
Delete a pick method, matched on `itemId`. Returns 204 No Content.
Query parameters
itemIdstringThe `itemId` of the pick method to delete, e.g. `eq.{id}`.
curl --request DELETE \
--url 'https://rest.carbon.ms/pickMethod?itemId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'