GET api/ContactCheckout?portalId={portalId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
portalId

System.String

Required

Body Parameters

None.

Response Information

Resource Description

Altai.Web.Services.Models.ContactCheckoutInfo
NameDescriptionTypeAdditional information
Email

System.String

None.

BillToAddress

Altai.Web.Services.Models.CheckoutAddress

None.

ShipToAddress

Altai.Web.Services.Models.CheckoutAddress

None.

Response Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "BillToAddress": {
    "Name": "sample string 1",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "EmailAddress": "sample string 4",
    "Telephone": "sample string 5",
    "Address": {
      "Id": "sample string 1",
      "Street1": "sample string 2",
      "Street2": "sample string 3",
      "City": "sample string 4",
      "StateOrProvince": "sample string 5",
      "PostalCode": "sample string 6",
      "Country": "sample string 7",
      "AddressType": "sample string 8"
    }
  },
  "ShipToAddress": {
    "Name": "sample string 1",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "EmailAddress": "sample string 4",
    "Telephone": "sample string 5",
    "Address": {
      "Id": "sample string 1",
      "Street1": "sample string 2",
      "Street2": "sample string 3",
      "City": "sample string 4",
      "StateOrProvince": "sample string 5",
      "PostalCode": "sample string 6",
      "Country": "sample string 7",
      "AddressType": "sample string 8"
    }
  }
}

application/xml, text/xml

Sample:
<ContactCheckoutInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models">
  <BillToAddress>
    <Address>
      <AddressType>sample string 8</AddressType>
      <City>sample string 4</City>
      <Country>sample string 7</Country>
      <Id>sample string 1</Id>
      <PostalCode>sample string 6</PostalCode>
      <StateOrProvince>sample string 5</StateOrProvince>
      <Street1>sample string 2</Street1>
      <Street2>sample string 3</Street2>
    </Address>
    <EmailAddress>sample string 4</EmailAddress>
    <FirstName>sample string 2</FirstName>
    <LastName>sample string 3</LastName>
    <Name>sample string 1</Name>
    <Telephone>sample string 5</Telephone>
  </BillToAddress>
  <Email>sample string 1</Email>
  <ShipToAddress>
    <Address>
      <AddressType>sample string 8</AddressType>
      <City>sample string 4</City>
      <Country>sample string 7</Country>
      <Id>sample string 1</Id>
      <PostalCode>sample string 6</PostalCode>
      <StateOrProvince>sample string 5</StateOrProvince>
      <Street1>sample string 2</Street1>
      <Street2>sample string 3</Street2>
    </Address>
    <EmailAddress>sample string 4</EmailAddress>
    <FirstName>sample string 2</FirstName>
    <LastName>sample string 3</LastName>
    <Name>sample string 1</Name>
    <Telephone>sample string 5</Telephone>
  </ShipToAddress>
</ContactCheckoutInfo>