POST api/payment/CreatePaymentOrderLabOrder

Request Information

URI Parameters

None.

Body Parameters

CreateLabOrderRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

Address

string

None.

City

string

None.

State

string

None.

Pincode

string

None.

Contact

string

None.

ScheduledDate

date

None.

ScheduledSlot

string

None.

OrderAmount

decimal number

None.

PaymentMethod

string

None.

InputLatlong

string

None.

CartItems

Collection of LabOrderItemRequest

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "Address": "sample string 2",
  "City": "sample string 3",
  "State": "sample string 4",
  "Pincode": "sample string 5",
  "Contact": "sample string 6",
  "ScheduledDate": "2026-02-03T16:09:43.5461036+00:00",
  "ScheduledSlot": "sample string 8",
  "OrderAmount": 9.0,
  "PaymentMethod": "sample string 10",
  "InputLatlong": "sample string 11",
  "CartItems": [
    {
      "PlanTypeId": 1,
      "PlanId": 2,
      "CartId": 3,
      "PlanName": "sample string 4",
      "PersonName": "sample string 5",
      "UnitPrice": 6.0,
      "OriginalAmount": 7.0,
      "Savings": 8.0,
      "SelectedMemberId": 1
    },
    {
      "PlanTypeId": 1,
      "PlanId": 2,
      "CartId": 3,
      "PlanName": "sample string 4",
      "PersonName": "sample string 5",
      "UnitPrice": 6.0,
      "OriginalAmount": 7.0,
      "Savings": 8.0,
      "SelectedMemberId": 1
    }
  ]
}

application/xml, text/xml

Sample:
<CreateLabOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VELNO_API.Controllers">
  <Address>sample string 2</Address>
  <CartItems>
    <LabOrderItemRequest>
      <CartId>3</CartId>
      <OriginalAmount>7</OriginalAmount>
      <PersonName>sample string 5</PersonName>
      <PlanId>2</PlanId>
      <PlanName>sample string 4</PlanName>
      <PlanTypeId>1</PlanTypeId>
      <Savings>8</Savings>
      <SelectedMemberId>1</SelectedMemberId>
      <UnitPrice>6</UnitPrice>
    </LabOrderItemRequest>
    <LabOrderItemRequest>
      <CartId>3</CartId>
      <OriginalAmount>7</OriginalAmount>
      <PersonName>sample string 5</PersonName>
      <PlanId>2</PlanId>
      <PlanName>sample string 4</PlanName>
      <PlanTypeId>1</PlanTypeId>
      <Savings>8</Savings>
      <SelectedMemberId>1</SelectedMemberId>
      <UnitPrice>6</UnitPrice>
    </LabOrderItemRequest>
  </CartItems>
  <City>sample string 3</City>
  <Contact>sample string 6</Contact>
  <CustomerId>1</CustomerId>
  <InputLatlong>sample string 11</InputLatlong>
  <OrderAmount>9</OrderAmount>
  <PaymentMethod>sample string 10</PaymentMethod>
  <Pincode>sample string 5</Pincode>
  <ScheduledDate>2026-02-03T16:09:43.5461036+00:00</ScheduledDate>
  <ScheduledSlot>sample string 8</ScheduledSlot>
  <State>sample string 4</State>
</CreateLabOrderRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.