POST api/stockEntry/save-return-stock-delvery

Request Information

URI Parameters

None.

Body Parameters

StockEntryTransactionDTO
NameDescriptionTypeAdditional information
StockEntryId

integer

None.

TypeId

integer

None.

Quantity

decimal number

None.

RemainingQuantity

decimal number

None.

PerformedById

integer

None.

Description

string

None.

Status

boolean

None.

ReasionId

integer

None.

SalesOrderId

integer

None.

RedirectTo

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "StockEntryId": 1,
  "TypeId": 2,
  "Quantity": 3.0,
  "RemainingQuantity": 4.0,
  "PerformedById": 5,
  "Description": "sample string 6",
  "Status": true,
  "ReasionId": 8,
  "SalesOrderId": 1,
  "RedirectTo": 1
}

application/xml, text/xml

Sample:
<StockEntryTransactionDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.StockEntries">
  <Description>sample string 6</Description>
  <PerformedById>5</PerformedById>
  <Quantity>3</Quantity>
  <ReasionId>8</ReasionId>
  <RedirectTo>1</RedirectTo>
  <RemainingQuantity>4</RemainingQuantity>
  <SalesOrderId>1</SalesOrderId>
  <Status>true</Status>
  <StockEntryId>1</StockEntryId>
  <TypeId>2</TypeId>
</StockEntryTransactionDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>