GET api/Customers/BillingInfo

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BillingInfoResponseModel
NameDescriptionTypeAdditional information
FirstName

string

None.

LastName

string

None.

Email

string

None.

Address

AddressReponseModel

None.

ReferrerEmailId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "Email": "sample string 3",
  "Address": {
    "StreetAddress": "sample string 1",
    "City": "sample string 2",
    "State": "sample string 3",
    "Country": {
      "CountryId": 1,
      "CountryName": "sample string 2",
      "CountryCode": "sample string 3",
      "ISOCode": "sample string 4"
    },
    "ZipCode": "sample string 4",
    "HomePhone": "sample string 5",
    "WorkPhone": "sample string 6",
    "Mobile": "sample string 7",
    "AccountEmail": "sample string 8"
  },
  "ReferrerEmailId": "sample string 4"
}

application/xml, text/xml

Sample:
<BillingInfoResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Customer.Response">
  <Address>
    <AccountEmail>sample string 8</AccountEmail>
    <City>sample string 2</City>
    <Country>
      <CountryCode>sample string 3</CountryCode>
      <CountryId>1</CountryId>
      <CountryName>sample string 2</CountryName>
      <ISOCode>sample string 4</ISOCode>
    </Country>
    <HomePhone>sample string 5</HomePhone>
    <Mobile>sample string 7</Mobile>
    <State>sample string 3</State>
    <StreetAddress>sample string 1</StreetAddress>
    <WorkPhone>sample string 6</WorkPhone>
    <ZipCode>sample string 4</ZipCode>
  </Address>
  <Email>sample string 3</Email>
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
  <ReferrerEmailId>sample string 4</ReferrerEmailId>
</BillingInfoResponseModel>