GET api/MGDReport/GetPayableAnalysisDetails?BranchId={BranchId}&VendGroup={VendGroup}&Date={Date}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BranchId

integer

Required

VendGroup

string

Required

Date

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of VendAging
NameDescriptionTypeAdditional information
Branch

string

None.

BranchId

string

None.

VendGroup

string

None.

VendGroupName

string

None.

Total

decimal number

None.

Due

decimal number

None.

Age90Days

decimal number

None.

PaidAmount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Branch": "sample string 1",
    "BranchId": "sample string 2",
    "VendGroup": "sample string 3",
    "VendGroupName": "sample string 4",
    "Total": 5.0,
    "Due": 6.0,
    "Age90Days": 7.0,
    "PaidAmount": 8.0
  },
  {
    "Branch": "sample string 1",
    "BranchId": "sample string 2",
    "VendGroup": "sample string 3",
    "VendGroupName": "sample string 4",
    "Total": 5.0,
    "Due": 6.0,
    "Age90Days": 7.0,
    "PaidAmount": 8.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfVendAging xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <VendAging>
    <Age90Days>7</Age90Days>
    <Branch>sample string 1</Branch>
    <BranchId>sample string 2</BranchId>
    <Due>6</Due>
    <PaidAmount>8</PaidAmount>
    <Total>5</Total>
    <VendGroup>sample string 3</VendGroup>
    <VendGroupName>sample string 4</VendGroupName>
  </VendAging>
  <VendAging>
    <Age90Days>7</Age90Days>
    <Branch>sample string 1</Branch>
    <BranchId>sample string 2</BranchId>
    <Due>6</Due>
    <PaidAmount>8</PaidAmount>
    <Total>5</Total>
    <VendGroup>sample string 3</VendGroup>
    <VendGroupName>sample string 4</VendGroupName>
  </VendAging>
</ArrayOfVendAging>