POST api/v1/getcustomercompletedorders

Request Information

Body Parameters

OrderCompleteRequestModel
NameDescriptionTypeAdditional information
pageNo

integer

None.

limit

integer

None.

q

string

None.

sortField

string

None.

sortDirection

string

None.

sortOrder

integer

None.

adminMemberId

integer

None.

totalRecordsOut

integer

None.

sellerId

integer

None.

isOrderManageByParent

boolean

None.

ClientId

integer

None.

Request Formats
{
  "pageNo": 1,
  "limit": 1,
  "q": "sample string 1",
  "sortField": "sample string 2",
  "sortDirection": "sample string 3",
  "sortOrder": 1,
  "adminMemberId": 1,
  "totalRecordsOut": 4,
  "sellerId": 1,
  "isOrderManageByParent": true,
  "ClientId": 6
}
{"pageNo":1,"limit":1,"q":"sample string 1","sortField":"sample string 2","sortDirection":"sample string 3","sortOrder":1,"adminMemberId":1,"totalRecordsOut":4,"sellerId":1,"isOrderManageByParent":true,"ClientId":6}
<OrderCompleteRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order">
  <ClientId>6</ClientId>
  <adminMemberId>1</adminMemberId>
  <isOrderManageByParent>true</isOrderManageByParent>
  <limit>1</limit>
  <pageNo>1</pageNo>
  <q>sample string 1</q>
  <sellerId>1</sellerId>
  <sortDirection>sample string 3</sortDirection>
  <sortField>sample string 2</sortField>
  <sortOrder>1</sortOrder>
  <totalRecordsOut>4</totalRecordsOut>
</OrderCompleteRequestModel>

Sample not available.

Response Information

Description:

Return type: CustomerCompletedOrdersModel

Response Formats
{
  "Count": 1,
  "CustomerCompletedOrders": [
    {
      "ParentId": "sample string 1",
      "OrderDate": "2025-06-18T12:23:06.9756075+00:00",
      "OrderNumber": "sample string 3",
      "CustomerName": "sample string 4",
      "SellerName": "sample string 5",
      "DeliveryDate": "2025-06-18T12:23:06.9756075+00:00",
      "OrderItemId": 7,
      "ProductName": "sample string 8",
      "Packsize": "sample string 9",
      "ProductPrice": 10.0,
      "OrderPlacedFrom": "sample string 11",
      "PaymentStatus": "sample string 12",
      "OrderGUID": "ea5117b5-e596-4f2c-95ad-56012a932ed3"
    },
    {
      "ParentId": "sample string 1",
      "OrderDate": "2025-06-18T12:23:06.9756075+00:00",
      "OrderNumber": "sample string 3",
      "CustomerName": "sample string 4",
      "SellerName": "sample string 5",
      "DeliveryDate": "2025-06-18T12:23:06.9756075+00:00",
      "OrderItemId": 7,
      "ProductName": "sample string 8",
      "Packsize": "sample string 9",
      "ProductPrice": 10.0,
      "OrderPlacedFrom": "sample string 11",
      "PaymentStatus": "sample string 12",
      "OrderGUID": "ea5117b5-e596-4f2c-95ad-56012a932ed3"
    }
  ]
}
{"Count":1,"CustomerCompletedOrders":[{"ParentId":"sample string 1","OrderDate":"2025-06-18T12:23:06.9756075+00:00","OrderNumber":"sample string 3","CustomerName":"sample string 4","SellerName":"sample string 5","DeliveryDate":"2025-06-18T12:23:06.9756075+00:00","OrderItemId":7,"ProductName":"sample string 8","Packsize":"sample string 9","ProductPrice":10.0,"OrderPlacedFrom":"sample string 11","PaymentStatus":"sample string 12","OrderGUID":"ea5117b5-e596-4f2c-95ad-56012a932ed3"},{"ParentId":"sample string 1","OrderDate":"2025-06-18T12:23:06.9756075+00:00","OrderNumber":"sample string 3","CustomerName":"sample string 4","SellerName":"sample string 5","DeliveryDate":"2025-06-18T12:23:06.9756075+00:00","OrderItemId":7,"ProductName":"sample string 8","Packsize":"sample string 9","ProductPrice":10.0,"OrderPlacedFrom":"sample string 11","PaymentStatus":"sample string 12","OrderGUID":"ea5117b5-e596-4f2c-95ad-56012a932ed3"}]}
<CustomerCompletedOrdersModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order">
  <Count>1</Count>
  <CustomerCompletedOrders>
    <CustomerCompletedOrders>
      <CustomerName>sample string 4</CustomerName>
      <DeliveryDate>2025-06-18T12:23:06.9756075+00:00</DeliveryDate>
      <OrderDate>2025-06-18T12:23:06.9756075+00:00</OrderDate>
      <OrderGUID>ea5117b5-e596-4f2c-95ad-56012a932ed3</OrderGUID>
      <OrderItemId>7</OrderItemId>
      <OrderNumber>sample string 3</OrderNumber>
      <OrderPlacedFrom>sample string 11</OrderPlacedFrom>
      <Packsize>sample string 9</Packsize>
      <ParentId>sample string 1</ParentId>
      <PaymentStatus>sample string 12</PaymentStatus>
      <ProductName>sample string 8</ProductName>
      <ProductPrice>10</ProductPrice>
      <SellerName>sample string 5</SellerName>
    </CustomerCompletedOrders>
    <CustomerCompletedOrders>
      <CustomerName>sample string 4</CustomerName>
      <DeliveryDate>2025-06-18T12:23:06.9756075+00:00</DeliveryDate>
      <OrderDate>2025-06-18T12:23:06.9756075+00:00</OrderDate>
      <OrderGUID>ea5117b5-e596-4f2c-95ad-56012a932ed3</OrderGUID>
      <OrderItemId>7</OrderItemId>
      <OrderNumber>sample string 3</OrderNumber>
      <OrderPlacedFrom>sample string 11</OrderPlacedFrom>
      <Packsize>sample string 9</Packsize>
      <ParentId>sample string 1</ParentId>
      <PaymentStatus>sample string 12</PaymentStatus>
      <ProductName>sample string 8</ProductName>
      <ProductPrice>10</ProductPrice>
      <SellerName>sample string 5</SellerName>
    </CustomerCompletedOrders>
  </CustomerCompletedOrders>
</CustomerCompletedOrdersModel>