POST api/package/ReceiveRelayPackage
Request Information
URI Parameters
None.
Body Parameters
SaveMobileBulkRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PackageIds | Collection of integer |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PackageIds": [
1,
2
],
"UserId": 1
}
application/xml, text/xml
Sample:
<SaveMobileBulkRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.DTO.MobileDTO">
<PackageIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</PackageIds>
<UserId>1</UserId>
</SaveMobileBulkRequestDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DescriptiveResponseOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Value | boolean |
None. |
|
| CoreValue | string |
None. |
|
| IsErrorState | boolean |
None. |
|
| ErrorDescription | string |
None. |
|
| ErrorMetadata | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Value": true,
"CoreValue": "sample string 2",
"IsErrorState": true,
"ErrorDescription": "sample string 4",
"ErrorMetadata": {}
}
application/xml, text/xml
Sample:
<DescriptiveResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.Entities"> <CoreValue>sample string 2</CoreValue> <ErrorDescription>sample string 4</ErrorDescription> <ErrorMetadata /> <IsErrorState>true</IsErrorState> <Value>true</Value> </DescriptiveResponseOfboolean>