CIM :: Create Customer Profile

Results

Response Error
code E00044
Successful? no
Error? yes
Customer Profile ID
Customer Payment Profile ID
Customer Shipping Address ID

Raw Input/Output

Class Parameters
API Login ID3cL9T4xD
Transaction Key5588es6BM7hJbT5V
Authnet Server URLhttps://api.authorize.net/xml/v1/request.api
Request XML
XML:
<?xml version="1.0"?>
<createCustomerProfileRequest>
  <merchantAuthentication>
    <name>3cL9T4xD</name>
    <transactionKey>5588es6BM7hJbT5V</transactionKey>
  </merchantAuthentication>
  <profile>
    <merchantCustomerId>87657</merchantCustomerId>
    <email>user@example.com</email>
    <paymentProfiles>
      <billTo>
        <firstName>John</firstName>
        <lastName>Smith</lastName>
        <address>123 Main Street</address>
        <city>Townsville</city>
        <state>NJ</state>
        <zip>12345</zip>
        <phoneNumber>800-555-1234</phoneNumber>
      </billTo>
      <payment>
        <creditCard>
          <cardNumber>4111111111111111</cardNumber>
          <expirationDate>2016-08</expirationDate>
        </creditCard>
      </payment>
    </paymentProfiles>
    <shipToList>
      <firstName>John</firstName>
      <lastName>Smith</lastName>
      <address>123 Main Street</address>
      <city>Townsville</city>
      <state>NJ</state>
      <zip>12345</zip>
      <phoneNumber>800-555-1234</phoneNumber>
    </shipToList>
  </profile>
  <validationMode>liveMode</validationMode>
</createCustomerProfileRequest>

Response XML
XML:
<?xml version="1.0" encoding="utf-8"?>
<createCustomerProfileResponse>
  <messages>
    <resultCode>Error</resultCode>
    <message>
      <code>E00044</code>
      <text>Customer Information Manager is not enabled.</text>
    </message>
  </messages>
  <customerPaymentProfileIdList/>
  <customerShippingAddressIdList/>
  <validationDirectResponseList/>
</createCustomerProfileResponse>