POST LineItemsAPI/UpdateLineItemsBatch

Request Information

URI Parameters

None.

Body Parameters

Collection of LineItems
NameDescriptionTypeAdditional information
LineItemID

integer

None.

ItemTitle

string

None.

InvoiceID

integer

None.

ItemDescription

string

None.

ItemPrice

decimal number

None.

PKCourseSectionID

integer

None.

CourseSectionID

string

None.

LineItemClassFeeTotal

decimal number

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "LineItemID": 1,
    "ItemTitle": "sample string 2",
    "InvoiceID": 3,
    "ItemDescription": "sample string 4",
    "ItemPrice": 5.0,
    "PKCourseSectionID": 6,
    "CourseSectionID": "sample string 7",
    "LineItemClassFeeTotal": 8.0
  },
  {
    "LineItemID": 1,
    "ItemTitle": "sample string 2",
    "InvoiceID": 3,
    "ItemDescription": "sample string 4",
    "ItemPrice": 5.0,
    "PKCourseSectionID": 6,
    "CourseSectionID": "sample string 7",
    "LineItemClassFeeTotal": 8.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfLineItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QMA2020.Models">
  <LineItems>
    <CourseSectionID>sample string 7</CourseSectionID>
    <InvoiceID>3</InvoiceID>
    <ItemDescription>sample string 4</ItemDescription>
    <ItemPrice>5</ItemPrice>
    <ItemTitle>sample string 2</ItemTitle>
    <LineItemClassFeeTotal>8</LineItemClassFeeTotal>
    <LineItemID>1</LineItemID>
    <PKCourseSectionID>6</PKCourseSectionID>
  </LineItems>
  <LineItems>
    <CourseSectionID>sample string 7</CourseSectionID>
    <InvoiceID>3</InvoiceID>
    <ItemDescription>sample string 4</ItemDescription>
    <ItemPrice>5</ItemPrice>
    <ItemTitle>sample string 2</ItemTitle>
    <LineItemClassFeeTotal>8</LineItemClassFeeTotal>
    <LineItemID>1</LineItemID>
    <PKCourseSectionID>6</PKCourseSectionID>
  </LineItems>
</ArrayOfLineItems>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

decimal number

Response Formats

application/json, text/json

Sample:
1.0

application/xml, text/xml

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