DELETE api/OrderLines/{orderNo}/{lineNo}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderNo

integer

Required

lineNo

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of OrderLine
NameDescriptionTypeAdditional information
LineNo

integer

None.

ProductNo

string

None.

TransactionDate

integer

None.

Quantity

decimal number

None.

Description

string

None.

MemoFile

string

None.

ProjectNo

string

None.

PriceInCurrency

decimal number

None.

DiscountAmount1InCurrency

decimal number

None.

DiscountPercent1

integer

None.

Comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "lineNo": 1,
    "productNo": "sample string 2",
    "transactionDate": 3,
    "quantity": 4.0,
    "description": "sample string 5",
    "memoFile": "sample string 6",
    "projectNo": "sample string 7",
    "priceInCurrency": 8.0,
    "discountAmount1InCurrency": 9.0,
    "discountPercent1": 10,
    "comment": "sample string 11"
  },
  {
    "lineNo": 1,
    "productNo": "sample string 2",
    "transactionDate": 3,
    "quantity": 4.0,
    "description": "sample string 5",
    "memoFile": "sample string 6",
    "projectNo": "sample string 7",
    "priceInCurrency": 8.0,
    "discountAmount1InCurrency": 9.0,
    "discountPercent1": 10,
    "comment": "sample string 11"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOrderLine xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController.Response">
  <OrderLine>
    <Comment xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 11</Comment>
    <Description xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 5</Description>
    <DiscountAmount1InCurrency xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">9</DiscountAmount1InCurrency>
    <DiscountPercent1 xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">10</DiscountPercent1>
    <MemoFile xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 6</MemoFile>
    <PriceInCurrency xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">8</PriceInCurrency>
    <ProductNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 2</ProductNo>
    <ProjectNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 7</ProjectNo>
    <Quantity xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">4</Quantity>
    <TransactionDate xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">3</TransactionDate>
    <LineNo>1</LineNo>
  </OrderLine>
  <OrderLine>
    <Comment xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 11</Comment>
    <Description xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 5</Description>
    <DiscountAmount1InCurrency xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">9</DiscountAmount1InCurrency>
    <DiscountPercent1 xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">10</DiscountPercent1>
    <MemoFile xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 6</MemoFile>
    <PriceInCurrency xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">8</PriceInCurrency>
    <ProductNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 2</ProductNo>
    <ProjectNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">sample string 7</ProjectNo>
    <Quantity xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">4</Quantity>
    <TransactionDate xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.OrderLinesController">3</TransactionDate>
    <LineNo>1</LineNo>
  </OrderLine>
</ArrayOfOrderLine>