<?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 Get hubspot multiselect column data in the order they are added in specific row. in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Get-hubspot-multiselect-column-data-in-the-order-they-are-added/m-p/268961#M24264</link>
    <description>&lt;P&gt;We have used hubspot multiselect column to store data for multiple countries.Here i want to display data in the order they are added in perticular row.But currently getting data order by id.Mean if i added india first at the time of multiselect column creation&amp;nbsp; it willl get first no matter when we have added it in specific row(first or last or middle).Is it possible to do such a thing.&lt;/P&gt;</description>
    <pubDate>Wed, 08 May 2019 05:50:58 GMT</pubDate>
    <dc:creator>nutan1</dc:creator>
    <dc:date>2019-05-08T05:50:58Z</dc:date>
    <item>
      <title>Get hubspot multiselect column data in the order they are added in specific row.</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Get-hubspot-multiselect-column-data-in-the-order-they-are-added/m-p/268961#M24264</link>
      <description>&lt;P&gt;We have used hubspot multiselect column to store data for multiple countries.Here i want to display data in the order they are added in perticular row.But currently getting data order by id.Mean if i added india first at the time of multiselect column creation&amp;nbsp; it willl get first no matter when we have added it in specific row(first or last or middle).Is it possible to do such a thing.&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 05:50:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Get-hubspot-multiselect-column-data-in-the-order-they-are-added/m-p/268961#M24264</guid>
      <dc:creator>nutan1</dc:creator>
      <dc:date>2019-05-08T05:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get hubspot multiselect column data in the order they are added in specific row.</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Get-hubspot-multiselect-column-data-in-the-order-they-are-added/m-p/269329#M24318</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/78464"&gt;@nutan1&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my tests, property values for multiple checkbox field types were stored and returned in the order they were added, so this should be possible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, I created a property named &lt;CODE&gt;multiple_checkbox_test_property&lt;/CODE&gt; with four options: &lt;CODE&gt;Option 1&lt;/CODE&gt;, &lt;CODE&gt;Option 2&lt;/CODE&gt;, &lt;CODE&gt;Option 3&lt;/CODE&gt;, and &lt;CODE&gt;Option 4&lt;/CODE&gt;. See the screenshot below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Multiple Checkbox Property 1.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/17074iCBC11C579FAF044A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Multiple Checkbox Property 1.png" alt="Multiple Checkbox Property 1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I then gave a contact an&amp;nbsp;&lt;CODE&gt;Option 4&lt;/CODE&gt;&amp;nbsp;value first, then&amp;nbsp;&lt;CODE&gt;Option 3&lt;/CODE&gt;, then&amp;nbsp;&lt;CODE&gt;Option 2&lt;/CODE&gt;, and finally&lt;CODE&gt;Option 1&lt;/CODE&gt;. This screenshot shows how the values look on the contact record:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Multiple Checkbox Property 2.png" style="width: 642px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/17075i6812682304AC0F43/image-size/large?v=v2&amp;amp;px=999" role="button" title="Multiple Checkbox Property 2.png" alt="Multiple Checkbox Property 2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I retrieve the contact using &lt;A href="https://developers.hubspot.com/docs/methods/contacts/get_contact" target="_self"&gt;this endpoint&lt;/A&gt;, the property values are returned in the order I set them:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;"multiple_checkbox_test_property": {
            "value": "Option 4;Option 3;Option 2;Option 1",
            "versions": [
                {
                    "value": "Option 4;Option 3;Option 2;Option 1",
                    "source-type": "CRM_UI",
                    "source-id": "",
                    "source-label": null,
                    "timestamp": 1557413789371,
                    "selected": false
                },
                {
                    "value": "Option 4;Option 3;Option 2",
                    "source-type": "CRM_UI",
                    "source-id": "",
                    "source-label": null,
                    "timestamp": 1557413786395,
                    "selected": false
                },
                {
                    "value": "Option 4;Option 3",
                    "source-type": "CRM_UI",
                    "source-id": "",
                    "source-label": null,
                    "timestamp": 1557413782134,
                    "selected": false
                },
                {
                    "value": "Option 4",
                    "source-type": "CRM_UI",
                    "source-id": "",
                    "source-label": null,
                    "timestamp": 1557413776978,
                    "selected": false
                }
            ]
        }
    }&lt;/PRE&gt;
&lt;P&gt;If you are seeing different behavior, please share a link to an example contact in your account.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 15:14:55 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Get-hubspot-multiselect-column-data-in-the-order-they-are-added/m-p/269329#M24318</guid>
      <dc:creator>IsaacTakushi</dc:creator>
      <dc:date>2019-05-09T15:14:55Z</dc:date>
    </item>
  </channel>
</rss>

