POST api/ERPDataUpdate/AddCustomerBulkLedger

Request Information

URI Parameters

None.

Body Parameters

CustomerBulkLedger
NameDescriptionTypeAdditional information
GroupName

string

None.

ReferenceID

globally unique identifier

None.

IsInvalid

boolean

None.

CustomerBalance

Collection of CustomerBalance

None.

Source

string

None.

Request Formats

application/json, text/json

Sample:
{
  "GroupName": "sample string 1",
  "ReferenceID": "d8a3787c-e53d-4400-82b5-f7f1756ef371",
  "IsInvalid": false,
  "CustomerBalance": [
    {
      "CustomerCode": "sample string 1",
      "Balance": 2.0,
      "IsInvalid": false,
      "Source": "sample string 3"
    },
    {
      "CustomerCode": "sample string 1",
      "Balance": 2.0,
      "IsInvalid": false,
      "Source": "sample string 3"
    }
  ],
  "Source": "sample string 3"
}

application/xml, text/xml

Sample:
<CustomerBulkLedger xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model.Orion">
  <CustomerBalance>
    <CustomerBalance>
      <Balance>2</Balance>
      <CustomerCode>sample string 1</CustomerCode>
      <Source>sample string 3</Source>
    </CustomerBalance>
    <CustomerBalance>
      <Balance>2</Balance>
      <CustomerCode>sample string 1</CustomerCode>
      <Source>sample string 3</Source>
    </CustomerBalance>
  </CustomerBalance>
  <GroupName>sample string 1</GroupName>
  <ReferenceID>d8a3787c-e53d-4400-82b5-f7f1756ef371</ReferenceID>
  <Source>sample string 3</Source>
</CustomerBulkLedger>

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.