GET api/v1/inoutboundpoints/{inOutboundPointId}
Gets an specific InOutboundPoint.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| inOutboundPointId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
InOutboundPointDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| InOutboundPointId | globally unique identifier |
None. |
|
| LocationId | globally unique identifier |
Required |
|
| InOutboundPointName | string |
String length: inclusive between 0 and 50 |
|
| IsInboundPoint | boolean |
None. |
|
| IsOutboundPoint | boolean |
None. |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"InOutboundPointId": "9eb0cc3d-cc7a-4e41-8f9f-221785e5808f",
"LocationId": "41469fd5-7444-41cc-a73b-a11d0e001148",
"InOutboundPointName": "sample string 3",
"IsInboundPoint": true,
"IsOutboundPoint": true,
"Id": "9eb0cc3d-cc7a-4e41-8f9f-221785e5808f",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"InOutboundPointId":"9eb0cc3d-cc7a-4e41-8f9f-221785e5808f","LocationId":"41469fd5-7444-41cc-a73b-a11d0e001148","InOutboundPointName":"sample string 3","IsInboundPoint":true,"IsOutboundPoint":true,"Id":"9eb0cc3d-cc7a-4e41-8f9f-221785e5808f","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<InOutboundPointDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Location"> <CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord> <CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord> <Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">9eb0cc3d-cc7a-4e41-8f9f-221785e5808f</Id> <InOutboundPointId>9eb0cc3d-cc7a-4e41-8f9f-221785e5808f</InOutboundPointId> <InOutboundPointName>sample string 3</InOutboundPointName> <IsInboundPoint>true</IsInboundPoint> <IsOutboundPoint>true</IsOutboundPoint> <LocationId>41469fd5-7444-41cc-a73b-a11d0e001148</LocationId> </InOutboundPointDetails>