POST api/SupplierItem/Create

Create new supplier item

Request Information

URI Parameters

None.

Body Parameters

SupplierItemCreateParameters
NameDescriptionTypeAdditional information
ClientId

globally unique identifier

None.

OrderId

globally unique identifier

None.

SupplierId

globally unique identifier

None.

UserName

string

None.

PrefixSSCC

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientId": "3c7472ef-5cbc-486d-b180-e6fd999383cf",
  "OrderId": "f48eba77-aa2e-432a-8b3a-74a5e1a9c657",
  "SupplierId": "1cfe53f6-6879-406f-a7b5-aded652d3059",
  "UserName": "sample string 4",
  "PrefixSSCC": "sample string 5"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SupplierItemCreateParameters'.

Response Information

Resource Description

SupplierItem
NameDescriptionTypeAdditional information
SupplierItemId

globally unique identifier

None.

ClientId

globally unique identifier

None.

OrderId

globally unique identifier

None.

SSCCNumber

string

None.

Picked

boolean

None.

Delivered

boolean

None.

ProductName

string

None.

BatchNumber

string

None.

BestBefore

date

None.

Quantity

decimal number

None.

NetWeight

decimal number

None.

Grossweight

decimal number

None.

Topload

decimal number

None.

IsPickItem

boolean

None.

PackageNumber

integer

None.

TemperatureControlled

integer

None.

PackagingTypeId

globally unique identifier

None.

PackagingTypeName

string

None.

PackagingTypeCode

string

None.

PackagingTypeWeight

decimal number

None.

Volume

decimal number

None.

ProductId

globally unique identifier

None.

ProductNumber

string

None.

DetailList

Collection of SupplierItemDetail

None.

Response Formats

application/json, text/json

Sample:
{
  "SupplierItemId": "a5843cc6-1c19-4548-8274-0299f73f7aa3",
  "ClientId": "b59e9b14-8a21-479f-a358-3e8989a07b7e",
  "OrderId": "6d8d6e95-6c99-46c6-bea4-e1c8ddd51224",
  "SSCCNumber": "sample string 4",
  "Picked": true,
  "Delivered": true,
  "ProductName": "sample string 7",
  "BatchNumber": "sample string 8",
  "BestBefore": "2026-06-25T10:46:57.6866069+02:00",
  "Quantity": 10.0,
  "NetWeight": 11.0,
  "Grossweight": 12.0,
  "Topload": 13.0,
  "IsPickItem": true,
  "PackageNumber": 15,
  "TemperatureControlled": 16,
  "PackagingTypeId": "fa825f92-9fe0-418c-9c18-87da4e627f03",
  "PackagingTypeName": "sample string 18",
  "PackagingTypeCode": "sample string 19",
  "PackagingTypeWeight": 20.0,
  "Volume": 21.0,
  "ProductId": "f833c486-75e3-4ca5-bac8-15ab40c15130",
  "ProductNumber": "sample string 23",
  "DetailList": null
}