POST api/domesticsale/ForcMatchEntry
Request Information
URI Parameters
None.
Body Parameters
QueryrequestDtoName | Description | Type | Additional information |
---|---|---|---|
IdsmatchId | integer |
None. |
|
Queries | Collection of queryMany |
None. |
|
PageSize | integer |
None. |
|
PageIndex | integer |
None. |
|
TotalCount | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "idsmatchId": 1, "queries": [ { "guid": 1, "selectQty": 2.0 }, { "guid": 1, "selectQty": 2.0 } ], "pageSize": 2, "pageIndex": 3, "totalCount": 4 }
application/xml, text/xml
Sample:
<QueryrequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model.Wms.Dto"> <PageIndex xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">3</PageIndex> <PageSize xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">2</PageSize> <TotalCount xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">4</TotalCount> <IdsmatchId>1</IdsmatchId> <Queries> <queryMany> <guid>1</guid> <selectQty>2</selectQty> </queryMany> <queryMany> <guid>1</guid> <selectQty>2</selectQty> </queryMany> </Queries> </QueryrequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResultOfStringName | Description | Type | Additional information |
---|---|---|---|
Status | integer |
None. |
|
Success | boolean |
None. |
|
Data | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": 1, "success": true, "data": "sample string 3", "message": "sample string 4" }
application/xml, text/xml
Sample:
<ReturnResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model"> <Data>sample string 3</Data> <Message>sample string 4</Message> <Status>1</Status> <Success>true</Success> </ReturnResultOfstring>