GET api/MGDReport/GetMYReferralCreditCustomerTransaction?intEmpCode={intEmpCode}&strCustomerId={strCustomerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
intEmpCode

integer

Required

strCustomerId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerCreditsTrnas
NameDescriptionTypeAdditional information
strInvoiceNo

string

None.

decAmount

decimal number

None.

strTransDate

string

None.

strDueDate

string

None.

strAddress

string

None.

strPhone

string

None.

strDescription

string

None.

strGlobalCustomerId

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "strInvoiceNo": "sample string 1",
    "decAmount": 2.0,
    "strTransDate": "sample string 3",
    "strDueDate": "sample string 4",
    "strAddress": "sample string 5",
    "strPhone": "sample string 6",
    "strDescription": "sample string 7",
    "strGlobalCustomerId": "sample string 8"
  },
  {
    "strInvoiceNo": "sample string 1",
    "decAmount": 2.0,
    "strTransDate": "sample string 3",
    "strDueDate": "sample string 4",
    "strAddress": "sample string 5",
    "strPhone": "sample string 6",
    "strDescription": "sample string 7",
    "strGlobalCustomerId": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerCreditsTrnas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <CustomerCreditsTrnas>
    <decAmount>2</decAmount>
    <strAddress>sample string 5</strAddress>
    <strDescription>sample string 7</strDescription>
    <strDueDate>sample string 4</strDueDate>
    <strGlobalCustomerId>sample string 8</strGlobalCustomerId>
    <strInvoiceNo>sample string 1</strInvoiceNo>
    <strPhone>sample string 6</strPhone>
    <strTransDate>sample string 3</strTransDate>
  </CustomerCreditsTrnas>
  <CustomerCreditsTrnas>
    <decAmount>2</decAmount>
    <strAddress>sample string 5</strAddress>
    <strDescription>sample string 7</strDescription>
    <strDueDate>sample string 4</strDueDate>
    <strGlobalCustomerId>sample string 8</strGlobalCustomerId>
    <strInvoiceNo>sample string 1</strInvoiceNo>
    <strPhone>sample string 6</strPhone>
    <strTransDate>sample string 3</strTransDate>
  </CustomerCreditsTrnas>
</ArrayOfCustomerCreditsTrnas>