<?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 Regarding ContactList V3 API endpoint with out asking for ILS list ID in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993302#M74367</link>
    <description>&lt;P&gt;Hi Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am using contactList V1 in my app and now upgrading to V3. One of the major requirement of my app is to fetch all contactlists in the hubspot account and show them to the users. To do so, I am looking for a contactlist endpoint where it wont ask for&amp;nbsp;&lt;SPAN&gt;ILS list ID in request. But most of the V3 contactlists endpoints has&amp;nbsp;"ILS list ID" as mandatory fields. In my requirement, i dont know anything about how many lists exists and what are their ILS list ID's. Could you please let me know is there any endpoint in contactList V3 where i can fetch all contactlists in the account?&amp;nbsp;&lt;BR /&gt;This is the endpoint I am looking at the moment&lt;BR /&gt;&lt;A href="https://developers.hubspot.com/docs/api/crm/lists" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developers.hubspot.com/docs/api/crm/lists&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jun 2024 16:03:05 GMT</pubDate>
    <dc:creator>RKOSURI</dc:creator>
    <dc:date>2024-06-17T16:03:05Z</dc:date>
    <item>
      <title>Regarding ContactList V3 API endpoint with out asking for ILS list ID</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993302#M74367</link>
      <description>&lt;P&gt;Hi Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am using contactList V1 in my app and now upgrading to V3. One of the major requirement of my app is to fetch all contactlists in the hubspot account and show them to the users. To do so, I am looking for a contactlist endpoint where it wont ask for&amp;nbsp;&lt;SPAN&gt;ILS list ID in request. But most of the V3 contactlists endpoints has&amp;nbsp;"ILS list ID" as mandatory fields. In my requirement, i dont know anything about how many lists exists and what are their ILS list ID's. Could you please let me know is there any endpoint in contactList V3 where i can fetch all contactlists in the account?&amp;nbsp;&lt;BR /&gt;This is the endpoint I am looking at the moment&lt;BR /&gt;&lt;A href="https://developers.hubspot.com/docs/api/crm/lists" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developers.hubspot.com/docs/api/crm/lists&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 16:03:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993302#M74367</guid>
      <dc:creator>RKOSURI</dc:creator>
      <dc:date>2024-06-17T16:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ContactList V3 API endpoint with out asking for ILS list ID</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993364#M74372</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/665129"&gt;@RKOSURI&lt;/a&gt;&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; It looks like there are some required fields for the Search API — Lists, that shouldn't be marked that way. I'll make a request to get that updated. I have a list from 2022 (pre-dating list ILS) and it was returned with the expected ILS in the response. Here's what I did:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I used Postman, as the dev doc page has ListID set as required for the search endpoint (incorrectly)&lt;/LI&gt;
&lt;LI&gt;This is the endpoint —&amp;nbsp;POST /crm/v3/lists/search&lt;/LI&gt;
&lt;LI&gt;If you want&amp;nbsp;&lt;STRONG&gt;all&lt;/STRONG&gt; lists returned, you can send the request with only the `processingTypes` set in the body&lt;/LI&gt;
&lt;LI&gt;If you want to filter by list type, list name, or both, you can include this in the request body:&lt;BR /&gt;Example (query is for the list title, if you intend to filter that way)&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;{
 "query": "HubSpot",
 "processingTypes": ["MANUAL"]
}​&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;In my case, I wanted to return only lists that are Active lists:&lt;BR /&gt;Request&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;POST https://api.hubapi.com/crm/v3/lists/search​&lt;/LI-CODE&gt;&lt;BR /&gt;Body&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;{
    "processingTypes": [
        "DYNAMIC"
    ]
}​&lt;/LI-CODE&gt;&lt;BR /&gt;Response&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;{
    "offset": 20,
    "hasMore": true,
    "lists": [
        {
            "listId": "9",
            "listVersion": 1,
            "createdAt": "2022-08-17T16:47:35.714Z",
            "updatedAt": "2024-05-22T05:40:01.885Z",
            "filtersUpdatedAt": "2022-08-17T16:47:35.714Z",
            "processingStatus": "COMPLETE",
            "createdById": "10233975",
            "processingType": "DYNAMIC",
            "objectTypeId": "0-1",
            "name": "Testerr-1",
            "additionalProperties": {
                "hs_list_reference_count": "0",
                "hs_list_size": "1",
                "hs_last_record_added_at": "1660754866212"
            }
        }...​&lt;/LI-CODE&gt;&lt;BR /&gt;Screenshot showing the ID returned in the response is the ILS&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2024-06-17 at 11.11.23@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/119910iD058EC169C57089B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2024-06-17 at 11.11.23@2x.png" alt="CleanShot 2024-06-17 at 11.11.23@2x.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I hope this helps get you moving forward! — Jaycee&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 18:16:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993364#M74372</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2024-06-17T18:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ContactList V3 API endpoint with out asking for ILS list ID</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993746#M74388</link>
      <description>&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074" target="_blank"&gt;@Jaycee_Lewis&lt;/A&gt;&amp;nbsp; Thank you very much. yeah, it worked out. Quick suggestion if you dont mind. Not only for this search endpoint in lists API, there are places where the * (mandatory) sign in parameters section misleading the developers who are consuming this API. So far i have assumed like, * are mandatory fields and spend good amount of time on how to get the listIds. I realised, it is not a mandatory field after your post. Could you send this feedback to devs , so that the swagger will gets updated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RKOSURI_0-1718710238497.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/119947i2E8829E05621DE67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RKOSURI_0-1718710238497.png" alt="RKOSURI_0-1718710238497.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 11:30:46 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993746#M74388</guid>
      <dc:creator>RKOSURI</dc:creator>
      <dc:date>2024-06-18T11:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ContactList V3 API endpoint with out asking for ILS list ID</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993838#M74392</link>
      <description>&lt;P&gt;Hey, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/665129"&gt;@RKOSURI&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; I'm happy to do that. I also noticed it has `additional properties` set as required too. I'll make that request to the dev docs team. Have a fantastic day! — Jaycee&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 14:43:52 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Regarding-ContactList-V3-API-endpoint-with-out-asking-for-ILS/m-p/993838#M74392</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2024-06-18T14:43:52Z</dc:date>
    </item>
  </channel>
</rss>

