GET api/negotiation/get-userNegotiations/{uniqueId}/{userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
uniqueId

string

Required

userId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of NegotiationDTO
NameDescriptionTypeAdditional information
BOSEId

integer

None.

UserId

integer

None.

Quantity

decimal number

None.

UnitPrice

decimal number

None.

Price

decimal number

None.

Status

boolean

None.

Description

string

None.

UOM

string

None.

StockEntryId

integer

None.

IsNegotiationToMultipleBuyers

boolean

None.

ActualQuantity

decimal number

None.

ActualPrice

decimal number

None.

NegotiationCreateBy

string

None.

OnbehalfOfId

integer

None.

StatusId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BOSEId": 1,
    "UserId": 1,
    "Quantity": 1.0,
    "UnitPrice": 1.0,
    "Price": 1.0,
    "Status": true,
    "Description": "sample string 3",
    "UOM": "sample string 4",
    "StockEntryId": 5,
    "IsNegotiationToMultipleBuyers": true,
    "ActualQuantity": 1.0,
    "ActualPrice": 1.0,
    "NegotiationCreateBy": "sample string 6",
    "OnbehalfOfId": 7,
    "StatusId": 1
  },
  {
    "BOSEId": 1,
    "UserId": 1,
    "Quantity": 1.0,
    "UnitPrice": 1.0,
    "Price": 1.0,
    "Status": true,
    "Description": "sample string 3",
    "UOM": "sample string 4",
    "StockEntryId": 5,
    "IsNegotiationToMultipleBuyers": true,
    "ActualQuantity": 1.0,
    "ActualPrice": 1.0,
    "NegotiationCreateBy": "sample string 6",
    "OnbehalfOfId": 7,
    "StatusId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfNegotiationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.StockEntries">
  <NegotiationDTO>
    <ActualPrice>1</ActualPrice>
    <ActualQuantity>1</ActualQuantity>
    <BOSEId>1</BOSEId>
    <Description>sample string 3</Description>
    <IsNegotiationToMultipleBuyers>true</IsNegotiationToMultipleBuyers>
    <NegotiationCreateBy>sample string 6</NegotiationCreateBy>
    <OnbehalfOfId>7</OnbehalfOfId>
    <Price>1</Price>
    <Quantity>1</Quantity>
    <Status>true</Status>
    <StatusId>1</StatusId>
    <StockEntryId>5</StockEntryId>
    <UOM>sample string 4</UOM>
    <UnitPrice>1</UnitPrice>
    <UserId>1</UserId>
  </NegotiationDTO>
  <NegotiationDTO>
    <ActualPrice>1</ActualPrice>
    <ActualQuantity>1</ActualQuantity>
    <BOSEId>1</BOSEId>
    <Description>sample string 3</Description>
    <IsNegotiationToMultipleBuyers>true</IsNegotiationToMultipleBuyers>
    <NegotiationCreateBy>sample string 6</NegotiationCreateBy>
    <OnbehalfOfId>7</OnbehalfOfId>
    <Price>1</Price>
    <Quantity>1</Quantity>
    <Status>true</Status>
    <StatusId>1</StatusId>
    <StockEntryId>5</StockEntryId>
    <UOM>sample string 4</UOM>
    <UnitPrice>1</UnitPrice>
    <UserId>1</UserId>
  </NegotiationDTO>
</ArrayOfNegotiationDTO>