POST api/v1/UpdateCartSaleTaxNew

Request Information

Body Parameters

Collection of LineItem
NameDescriptionTypeAdditional information
LineNumber

integer

None.

ItemCode

string

None.

TaxCode

string

None.

Amount

decimal number

None.

Quantity

decimal number

None.

Description

string

None.

TaxAmount

decimal number

None.

TaxableAmont

decimal number

None.

DiscountAmount

decimal number

None.

IsTaxable

boolean

None.

IsDiscountable

boolean

None.

Request Formats
[
  {
    "LineNumber": 1,
    "ItemCode": "sample string 2",
    "TaxCode": "sample string 3",
    "Amount": 4.0,
    "Quantity": 5.0,
    "Description": "sample string 6",
    "TaxAmount": 7.0,
    "TaxableAmont": 8.0,
    "DiscountAmount": 9.0,
    "IsTaxable": true,
    "IsDiscountable": true
  },
  {
    "LineNumber": 1,
    "ItemCode": "sample string 2",
    "TaxCode": "sample string 3",
    "Amount": 4.0,
    "Quantity": 5.0,
    "Description": "sample string 6",
    "TaxAmount": 7.0,
    "TaxableAmont": 8.0,
    "DiscountAmount": 9.0,
    "IsTaxable": true,
    "IsDiscountable": true
  }
]
[{"LineNumber":1,"ItemCode":"sample string 2","TaxCode":"sample string 3","Amount":4.0,"Quantity":5.0,"Description":"sample string 6","TaxAmount":7.0,"TaxableAmont":8.0,"DiscountAmount":9.0,"IsTaxable":true,"IsDiscountable":true},{"LineNumber":1,"ItemCode":"sample string 2","TaxCode":"sample string 3","Amount":4.0,"Quantity":5.0,"Description":"sample string 6","TaxAmount":7.0,"TaxableAmont":8.0,"DiscountAmount":9.0,"IsTaxable":true,"IsDiscountable":true}]
<ArrayOfLineItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Cart">
  <LineItem>
    <Amount>4</Amount>
    <Description>sample string 6</Description>
    <DiscountAmount>9</DiscountAmount>
    <IsDiscountable>true</IsDiscountable>
    <IsTaxable>true</IsTaxable>
    <ItemCode>sample string 2</ItemCode>
    <LineNumber>1</LineNumber>
    <Quantity>5</Quantity>
    <TaxAmount>7</TaxAmount>
    <TaxCode>sample string 3</TaxCode>
    <TaxableAmont>8</TaxableAmont>
  </LineItem>
  <LineItem>
    <Amount>4</Amount>
    <Description>sample string 6</Description>
    <DiscountAmount>9</DiscountAmount>
    <IsDiscountable>true</IsDiscountable>
    <IsTaxable>true</IsTaxable>
    <ItemCode>sample string 2</ItemCode>
    <LineNumber>1</LineNumber>
    <Quantity>5</Quantity>
    <TaxAmount>7</TaxAmount>
    <TaxCode>sample string 3</TaxCode>
    <TaxableAmont>8</TaxableAmont>
  </LineItem>
</ArrayOfLineItem>

Sample not available.

Response Information

Description:

Return type: string

Response Formats
"sample string 1"
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>