PUT api/storageCards/UpdateEquipmentSet
Updates an existing equipmentset
Request Information
URI Parameters
None.
Body Parameters
EquipmentSetRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EquipmentSetId |
The id, only required for PUT requests |
globally unique identifier |
None. |
| BranchId |
Branch Id |
integer |
Required |
| SeasonId |
Season Id |
integer |
Required |
| ExternalNote |
External note |
string |
Max length: 4000 |
| InternalNote |
Internal note |
string |
Max length: 4000 |
| InStorage |
Indicates if the equipmentSet is in storage |
boolean |
Required |
| IsMissing |
Indicates if the equipmentSet is missing |
boolean |
Required |
| HasNoteChanged |
Has Note changed |
boolean |
Required |
| Nitrogen |
Nitrogen |
boolean |
Required |
| MissingDate |
Missing date |
date |
None. |
| MissingReasonId |
Refers to the PackingListLineStatusId |
integer |
None. |
| DebitModelId |
Use api/DebitModels for information about a debit model. |
globally unique identifier |
None. |
| Equipments |
The equipments of this set. |
Collection of EquipmentRequest |
None. |
Remarks
None.
Example
None.
Request Formats
application/json, text/json
Sample:
{
"EquipmentSetId": "d4af0dde-3c0b-4ddc-96ac-e40b692a45aa",
"BranchId": 1,
"SeasonId": 2,
"ExternalNote": "sample string 3",
"InternalNote": "sample string 4",
"InStorage": true,
"IsMissing": true,
"HasNoteChanged": true,
"Nitrogen": true,
"MissingDate": "4/16/2026 1:18:38 PM",
"MissingReasonId": 1,
"DebitModelId": "13f75090-98c5-42c8-bf71-9c5e359ac8cb",
"Equipments": [
{
"Id": "f9c31591-0c32-4afa-a0bc-d32be0172582",
"ContactId": "82f6694c-6418-484b-b78e-77e194397b82",
"CustomerId": "1d22c96c-5952-4de6-8643-34e05d3853bc",
"EquipmentSetId": "a8775442-cce8-4e0c-aedc-d41842ee58d5",
"Position": 1,
"EquipmentRim": {
"Diameter": 1.0,
"BoltPattern": 1.0,
"CentreBore": 1.0,
"Offset": 1.0,
"Width": 1.0,
"Backspacing": 1.0,
"IsAlloy": true,
"IsOriginal": true
},
"EquipmentText": {
"Text": "sample string 1"
},
"EquipmentTyre": {
"SectionWidth": 1.0,
"AspectRatio": 1.0,
"RimDiameter": 1.0,
"LoadIndexId": 1,
"SpeedRating": "sample string 1",
"Circumference": 1.0,
"TreadPattern": "sample string 2",
"TreadDepth": 1.0,
"RecommendedPressure": 1.0,
"Pressure": 1.0,
"Make": "sample string 3",
"Studs": true,
"Hubcap": true
}
},
{
"Id": "f9c31591-0c32-4afa-a0bc-d32be0172582",
"ContactId": "82f6694c-6418-484b-b78e-77e194397b82",
"CustomerId": "1d22c96c-5952-4de6-8643-34e05d3853bc",
"EquipmentSetId": "a8775442-cce8-4e0c-aedc-d41842ee58d5",
"Position": 1,
"EquipmentRim": {
"Diameter": 1.0,
"BoltPattern": 1.0,
"CentreBore": 1.0,
"Offset": 1.0,
"Width": 1.0,
"Backspacing": 1.0,
"IsAlloy": true,
"IsOriginal": true
},
"EquipmentText": {
"Text": "sample string 1"
},
"EquipmentTyre": {
"SectionWidth": 1.0,
"AspectRatio": 1.0,
"RimDiameter": 1.0,
"LoadIndexId": 1,
"SpeedRating": "sample string 1",
"Circumference": 1.0,
"TreadPattern": "sample string 2",
"TreadDepth": 1.0,
"RecommendedPressure": 1.0,
"Pressure": 1.0,
"Make": "sample string 3",
"Studs": true,
"Hubcap": true
}
}
]
}
application/xml, text/xml
Sample:
<EquipmentSetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TyreHotel">
<BranchId>1</BranchId>
<DebitModelId>13f75090-98c5-42c8-bf71-9c5e359ac8cb</DebitModelId>
<EquipmentSetId>d4af0dde-3c0b-4ddc-96ac-e40b692a45aa</EquipmentSetId>
<Equipments>
<EquipmentRequest>
<ContactId>82f6694c-6418-484b-b78e-77e194397b82</ContactId>
<CustomerId>1d22c96c-5952-4de6-8643-34e05d3853bc</CustomerId>
<EquipmentRim>
<Backspacing>1</Backspacing>
<BoltPattern>1</BoltPattern>
<CentreBore>1</CentreBore>
<Diameter>1</Diameter>
<IsAlloy>true</IsAlloy>
<IsOriginal>true</IsOriginal>
<Offset>1</Offset>
<Width>1</Width>
</EquipmentRim>
<EquipmentSetId>a8775442-cce8-4e0c-aedc-d41842ee58d5</EquipmentSetId>
<EquipmentText>
<Text>sample string 1</Text>
</EquipmentText>
<EquipmentTyre>
<AspectRatio>1</AspectRatio>
<Circumference>1</Circumference>
<Hubcap>true</Hubcap>
<LoadIndexId>1</LoadIndexId>
<Make>sample string 3</Make>
<Pressure>1</Pressure>
<RecommendedPressure>1</RecommendedPressure>
<RimDiameter>1</RimDiameter>
<SectionWidth>1</SectionWidth>
<SpeedRating>sample string 1</SpeedRating>
<Studs>true</Studs>
<TreadDepth>1</TreadDepth>
<TreadPattern>sample string 2</TreadPattern>
</EquipmentTyre>
<Id>f9c31591-0c32-4afa-a0bc-d32be0172582</Id>
<Position>1</Position>
</EquipmentRequest>
<EquipmentRequest>
<ContactId>82f6694c-6418-484b-b78e-77e194397b82</ContactId>
<CustomerId>1d22c96c-5952-4de6-8643-34e05d3853bc</CustomerId>
<EquipmentRim>
<Backspacing>1</Backspacing>
<BoltPattern>1</BoltPattern>
<CentreBore>1</CentreBore>
<Diameter>1</Diameter>
<IsAlloy>true</IsAlloy>
<IsOriginal>true</IsOriginal>
<Offset>1</Offset>
<Width>1</Width>
</EquipmentRim>
<EquipmentSetId>a8775442-cce8-4e0c-aedc-d41842ee58d5</EquipmentSetId>
<EquipmentText>
<Text>sample string 1</Text>
</EquipmentText>
<EquipmentTyre>
<AspectRatio>1</AspectRatio>
<Circumference>1</Circumference>
<Hubcap>true</Hubcap>
<LoadIndexId>1</LoadIndexId>
<Make>sample string 3</Make>
<Pressure>1</Pressure>
<RecommendedPressure>1</RecommendedPressure>
<RimDiameter>1</RimDiameter>
<SectionWidth>1</SectionWidth>
<SpeedRating>sample string 1</SpeedRating>
<Studs>true</Studs>
<TreadDepth>1</TreadDepth>
<TreadPattern>sample string 2</TreadPattern>
</EquipmentTyre>
<Id>f9c31591-0c32-4afa-a0bc-d32be0172582</Id>
<Position>1</Position>
</EquipmentRequest>
</Equipments>
<ExternalNote>sample string 3</ExternalNote>
<HasNoteChanged>true</HasNoteChanged>
<InStorage>true</InStorage>
<InternalNote>sample string 4</InternalNote>
<IsMissing>true</IsMissing>
<MissingDate>2026-04-16T13:18:38.3807123+01:00</MissingDate>
<MissingReasonId>1</MissingReasonId>
<Nitrogen>true</Nitrogen>
<SeasonId>2</SeasonId>
</EquipmentSetRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.