GET api/account/customer/referral

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerReferral
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerID

integer

None.

CreatedDate

date

None.

Name

string

None.

EmailAddress

string

None.

Notes

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "CustomerID": 2,
    "CreatedDate": "2025-05-11T12:28:41.7622382+00:00",
    "Name": "sample string 4",
    "EmailAddress": "sample string 5",
    "Notes": "sample string 6"
  },
  {
    "ID": 1,
    "CustomerID": 2,
    "CreatedDate": "2025-05-11T12:28:41.7622382+00:00",
    "Name": "sample string 4",
    "EmailAddress": "sample string 5",
    "Notes": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerReferral xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.Customers">
  <CustomerReferral>
    <CreatedDate>2025-05-11T12:28:41.7622382+00:00</CreatedDate>
    <CustomerID>2</CustomerID>
    <EmailAddress>sample string 5</EmailAddress>
    <ID>1</ID>
    <Name>sample string 4</Name>
    <Notes>sample string 6</Notes>
  </CustomerReferral>
  <CustomerReferral>
    <CreatedDate>2025-05-11T12:28:41.7622382+00:00</CreatedDate>
    <CustomerID>2</CustomerID>
    <EmailAddress>sample string 5</EmailAddress>
    <ID>1</ID>
    <Name>sample string 4</Name>
    <Notes>sample string 6</Notes>
  </CustomerReferral>
</ArrayOfCustomerReferral>