Represents zero or more payments.
Type | Description |
---|---|
Payment | Represents a single payment. |
[ { "Id": 1, "DateCreated": "2000-01-01T00:00:00.000", "Description": "Commission from Example Pty Ltd", "Amount": 10.0000, "Balance": 10.0000 }, { "Id": 2, "DateCreated": "2000-01-02T00:00:00.000", "Description": "Commission from Example Pty Ltd", "Amount": 10.0000, "Balance": 20.0000 }, { "Id": 3, "DateCreated": "2000-01-03T00:00:00.000", "Description": "Commission from Example Pty Ltd", "Amount": 10.0000, "Balance": 30.0000 } ]
<PaymentArray xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Affiliate"> <Payment> <Id>1</Id> <DateCreated>2000-01-01T00:00:00.000</DateCreated> <Description>Commission from Example Pty Ltd</Description> <Amount>10.0000</Amount> <Balance>10.0000</Balance> </Payment> <Payment> <Id>2</Id> <DateCreated>2000-01-02T00:00:00.000</DateCreated> <Description>Commission from Example Pty Ltd</Description> <Amount>10.0000</Amount> <Balance>20.0000</Balance> </Payment> <Payment> <Id>3</Id> <DateCreated>2000-01-03T00:00:00.000</DateCreated> <Description>Commission from Example Pty Ltd</Description> <Amount>10.0000</Amount> <Balance>30.0000</Balance> </Payment> </PaymentArray>