GET api/NebimMalKabul/GetPlacementTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResponseModelOfListOfParamPlacementType| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Errors | Collection of string |
None. |
|
| Code | integer |
None. |
|
| Data | Collection of ParamPlacementType |
None. |
|
| Warning | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"errors": [
"sample string 1",
"sample string 2"
],
"code": 3,
"data": [
{
"id": 1,
"placementTypeDescription": "sample string 2",
"isPallet": true,
"isPackage": true
},
{
"id": 1,
"placementTypeDescription": "sample string 2",
"isPallet": true,
"isPackage": true
}
],
"warning": true
}
application/xml, text/xml
Sample:
<ResponseModelOfArrayOfParamPlacementTypejV0Ux9QZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VolisServer.CustomClasses">
<Code>3</Code>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/VolisServer.Domain.Entities">
<d2p1:ParamPlacementType>
<d2p1:Id>1</d2p1:Id>
<d2p1:IsPackage>true</d2p1:IsPackage>
<d2p1:IsPallet>true</d2p1:IsPallet>
<d2p1:PlacementTypeDescription>sample string 2</d2p1:PlacementTypeDescription>
</d2p1:ParamPlacementType>
<d2p1:ParamPlacementType>
<d2p1:Id>1</d2p1:Id>
<d2p1:IsPackage>true</d2p1:IsPackage>
<d2p1:IsPallet>true</d2p1:IsPallet>
<d2p1:PlacementTypeDescription>sample string 2</d2p1:PlacementTypeDescription>
</d2p1:ParamPlacementType>
</Data>
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Errors>
<Message>sample string 2</Message>
<Success>true</Success>
<Warning>true</Warning>
</ResponseModelOfArrayOfParamPlacementTypejV0Ux9QZ>