<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Updating customer profile in CIM clears merchantCustomerId in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57012#M31754</link>
    <description>&lt;P&gt;You can subscribe to this thread (in the "Options" button) to see any updates that are posted here. System changes and API changes have places on our website where updates are posted, but that doesn't necessarily include bug fixes of this kind.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without a&amp;nbsp;comprehensive changelog, we can try to notify you here, or feel free to ping me directly for an update, either with a PM here, or at the email in my profile.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Feb 2017 00:27:00 GMT</pubDate>
    <dc:creator>Aaron</dc:creator>
    <dc:date>2017-02-23T00:27:00Z</dc:date>
    <item>
      <title>Updating customer profile in CIM clears merchantCustomerId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57008#M31750</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working in PHP and json.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When updating CIM profiles I'm seeing that the&amp;nbsp;merchantCustomerId is being overriden even though I'm not providing&amp;nbsp;it in the update request.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the response for the &lt;STRONG&gt;getCustomerProfileRequest&amp;nbsp;&lt;/STRONG&gt;right after creation:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "profile": {
        "customerProfileId": "1810723214",
        "merchantCustomerId": "M_968069",
        "description": "Eos quas eligendi ut provident placeat suscipit.",
        "email": "moen.kathryne@example.com"
    },
    "refId": "T_1487792261",
    "messages": {
        "resultCode": "Ok",
        "message": [
            {
                "code": "I00001",
                "text": "Successful."
            }
        ]
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and then the&amp;nbsp;&lt;STRONG&gt;updateCustomerProfileRequest&amp;nbsp;&lt;/STRONG&gt;i'm sending:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "updateCustomerProfileRequest": {
        "merchantAuthentication": {
            "name": API_ID,
            "transactionKey": API_KEY
        },
        "refId": "T_1487792487",
        "profile": {
            "email": "test@example.com",
            "customerProfileId": "1810723214"
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and finally the second &lt;STRONG&gt;getCustomerProfileRequest&amp;nbsp;&lt;/STRONG&gt;where the&amp;nbsp;merchantCustomerId has been removed:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "profile": {
        "customerProfileId": "1810723214",
        "description": "Eos quas eligendi ut provident placeat suscipit.",
        "email": "test@example.com"
    },
    "refId": "T_1487792761",
    "messages": {
        "resultCode": "Ok",
        "message": [
            {
                "code": "I00001",
                "text": "Successful."
            }
        ]
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have some insight into why the&amp;nbsp;merchantCustomerId is being overriden but the description is not?&lt;/P&gt;&lt;P&gt;Do I have to provide the&amp;nbsp;merchantCustomerId everytime I want to update a record to make it stick through updates?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if you have any ideas.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 19:54:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57008#M31750</guid>
      <dc:creator>Dewbud</dc:creator>
      <dc:date>2017-02-22T19:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Updating customer profile in CIM clears merchantCustomerId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57010#M31752</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21282"&gt;@Dewbud&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a good catch. Thanks for posting!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've verified what you're seeing (and verified with XML as well just in case). If it's by design that we blank out anything you don't send in the update request, then why does description stick? And, if every field is supposed to persist if not updated, why does the merchant ID disappear?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll write it up on my end to get fixed. I don't know how the design is supposed to work, so I can't guarantee that ALL fields won't become required. But, in the meantime, I would suggest in your case to send all of the fields with each update request (assuming you're already storing them on your side as well).&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 22:52:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57010#M31752</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-22T22:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Updating customer profile in CIM clears merchantCustomerId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57011#M31753</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20843"&gt;@Aaron&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply, I'm happy I could help you identify something.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will pass the merchant ID with my update requests for now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to this forum/api, where will I be able to see the results on this issue?&lt;/P&gt;&lt;P&gt;Should I just keep this thread bookmarked or is there a location where all bug fixes are listed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 23:23:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57011#M31753</guid>
      <dc:creator>Dewbud</dc:creator>
      <dc:date>2017-02-22T23:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Updating customer profile in CIM clears merchantCustomerId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57012#M31754</link>
      <description>&lt;P&gt;You can subscribe to this thread (in the "Options" button) to see any updates that are posted here. System changes and API changes have places on our website where updates are posted, but that doesn't necessarily include bug fixes of this kind.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without a&amp;nbsp;comprehensive changelog, we can try to notify you here, or feel free to ping me directly for an update, either with a PM here, or at the email in my profile.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:27:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/57012#M31754</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-23T00:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Updating customer profile in CIM clears merchantCustomerId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/70561#M43343</link>
      <description>&lt;P&gt;Was this behavior changed yet? I tried updating the merchantCustomerId only and the email that had been previous set was lost. Is this how it's supposed to work?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 08:35:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Updating-customer-profile-in-CIM-clears-merchantCustomerId/m-p/70561#M43343</guid>
      <dc:creator>zstern</dc:creator>
      <dc:date>2020-02-09T08:35:21Z</dc:date>
    </item>
  </channel>
</rss>

