<?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: queued calls disappear from /search API response in Webex for Developers</title>
    <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809045#M3409</link>
    <description>&lt;P&gt;The sequence of state transitions makes sense.&amp;nbsp; The question is why does the call exist in my search result at 12:52:30 (approximately) but not in my search result when executing the same query at 12:55:00 (approximately)&lt;/P&gt;&lt;P&gt;If they were still sitting in a parked state shouldn't every invocation of my search query between 12:52:24.643 and 12:58:20.780 have included that call in the result set?&lt;/P&gt;</description>
    <pubDate>Wed, 05 Apr 2023 20:42:23 GMT</pubDate>
    <dc:creator>jcombs10</dc:creator>
    <dc:date>2023-04-05T20:42:23Z</dc:date>
    <item>
      <title>queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4807071#M3405</link>
      <description>&lt;P&gt;I'm using the graphql search API to gather info on calls currently in queue awaiting an agent (calls in a parked state if I'm understanding correctly).&amp;nbsp; I can see a call in a parked state but after some time (usually ~30 seconds), the call vanishes.&amp;nbsp; It doesn't become a callback nor an abandoned call, it's just gone.&amp;nbsp; If I re-run my query and look for the task id from the previously parked call it's nowhere to be found.&amp;nbsp; I came back like an hour later and again re-ran my query and the call is back with a terminationType of "normal". suggested sometime during that period when it had vanished it was connected and completed by an agent successfully.&lt;/P&gt;&lt;P&gt;What happened to the task during this period of time?&lt;/P&gt;&lt;P&gt;My search query:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;query&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$fromTime&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;Long&lt;/SPAN&gt;&lt;SPAN&gt;!&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;$toTime&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;Long&lt;/SPAN&gt;&lt;SPAN&gt;!&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    task&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        from&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;$fromTime&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN&gt;        to&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;$toTime&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN&gt;        timeComparator&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;createdTime&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        filter&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            and&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                {&lt;/SPAN&gt; &lt;SPAN&gt;direction&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt; &lt;SPAN&gt;equals&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"inbound"&lt;/SPAN&gt; &lt;SPAN&gt;}&lt;/SPAN&gt; &lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                {&lt;/SPAN&gt; &lt;SPAN&gt;channelType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt; &lt;SPAN&gt;equals&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;telephony&lt;/SPAN&gt; &lt;SPAN&gt;}&lt;/SPAN&gt; &lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                {&lt;/SPAN&gt; &lt;SPAN&gt;or&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            ]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    )&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        tasks&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            id&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN&gt;            createdTime&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            endedTime&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            entryPoint&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            terminationType&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            owner&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            isActive&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            isCallback&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            status&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            queueDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            connectedDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            totalDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            holdDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            wrapupDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            selfserviceDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            ringingDuration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            destination&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            lastQueue&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                id&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            lastTeam&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                id&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            origin&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            destination&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            contactReason&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            direction&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            terminationType&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            customer&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            callbackData&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;                callbackNumber&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        pageInfo&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            hasNextPage&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;            endCursor&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;        }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;    }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Apr 2023 03:22:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4807071#M3405</guid>
      <dc:creator>jcombs10</dc:creator>
      <dc:date>2023-04-04T03:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4807647#M3406</link>
      <description>&lt;P&gt;Hello Jcombs10,&lt;/P&gt;
&lt;P&gt;Do you mean you place a call and park it, when you run query initially you will see the parked call from your above query, But after 30 seconds, the query does not return anything.&lt;/P&gt;
&lt;P&gt;What are the values of to and from you are passing?&lt;/P&gt;
&lt;P&gt;-Thanks,&lt;/P&gt;
&lt;P&gt;Shrishail&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 14:42:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4807647#M3406</guid>
      <dc:creator>sdoddali</dc:creator>
      <dc:date>2023-04-04T14:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4808034#M3407</link>
      <description>&lt;P&gt;I'm passing the current system time in millis as the 2 and the from is to time minus an hour (3600000 ms)&lt;/P&gt;&lt;P&gt;It's not so much that I'm placing the call as I'm watching the flow of things in our call center.&amp;nbsp; When there are no available agent and a call arrives that call goes into a parked state if I'm understanding correctly.&amp;nbsp; This is supported by what I see in my first query in that I see a call in a parked state:&lt;/P&gt;&lt;PRE&gt;{&lt;BR /&gt;    "id": "a0be1129-1c5f-4039-946c-1631f5db0ddc",&lt;BR /&gt;    "createdTime": 1680540737197,&lt;BR /&gt;    "endedTime": -1,&lt;BR /&gt;    "terminationType": null,&lt;BR /&gt;    "isActive": true,&lt;BR /&gt;    "isCallback": false,&lt;BR /&gt;    "status": "parked",&lt;BR /&gt;    "queueDuration": 0,&lt;BR /&gt;    "connectedDuration": 0,&lt;BR /&gt;    "totalDuration": 0,&lt;BR /&gt;    "holdDuration": 0,&lt;BR /&gt;    "wrapupDuration": 0,&lt;BR /&gt;    "selfserviceDuration": 6704,&lt;BR /&gt;    "ringingDuration": 0,&lt;BR /&gt;    "lastQueue": {&lt;BR /&gt;        "name": "MY QUEUE NAME",&lt;BR /&gt;        "id": "055577f6-0681-4c01-b2d5-ecc24467a4ab"&lt;BR /&gt;    },&lt;BR /&gt;    "direction": "inbound",&lt;BR /&gt;    "callbackData": {&lt;BR /&gt;        "callbackNumber": null&lt;BR /&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;My query is pretty broad, looking at all tasks for that queue during the time window, but the call center is low volume so I'm certain the result set isn't paginating.&amp;nbsp; All tasks fit into the query response.&amp;nbsp; If I re-run my query 30 seconds to a minute later the result set no longer contains a task with the id of the parked task that was present in my first query.&amp;nbsp; An hour or so later I ran my query for a 3rd time and the task with that id was again present in the result set with a terminationType of normal and a status of ended&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 02:32:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4808034#M3407</guid>
      <dc:creator>jcombs10</dc:creator>
      <dc:date>2023-04-05T02:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809035#M3408</link>
      <description>&lt;P&gt;The graphQL endpoint shows only one active state of the call at any given point in time.&lt;/P&gt;
&lt;P&gt;Let's say a call comes in and gets parked - your query will show that call as parked.&lt;/P&gt;
&lt;P&gt;After the parked state, if the agent becomes available then the state of the call will change to connect (while ringing to an agent) and then to connected(once it's connected to agent).&lt;/P&gt;
&lt;P&gt;For the above interaction which you shared, here are the different states that the call went through.&lt;/P&gt;
&lt;P&gt;a0be1129-1c5f-4039-946c-1631f5db0ddc&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sdoddali_0-1680723809572.png" style="width: 366px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/180998iF8E69959D7065784/image-dimensions/366x753?v=v2" width="366" height="753" role="button" title="sdoddali_0-1680723809572.png" alt="sdoddali_0-1680723809572.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;// The call was in the parked state for ~5mins before moving to 'connect', at that point you should start seeing the call with status as 'connect' and then 'connected' and so on...&lt;/P&gt;
&lt;P&gt;Let me know if that clarifies your question.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 20:15:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809035#M3408</guid>
      <dc:creator>sdoddali</dc:creator>
      <dc:date>2023-04-05T20:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809045#M3409</link>
      <description>&lt;P&gt;The sequence of state transitions makes sense.&amp;nbsp; The question is why does the call exist in my search result at 12:52:30 (approximately) but not in my search result when executing the same query at 12:55:00 (approximately)&lt;/P&gt;&lt;P&gt;If they were still sitting in a parked state shouldn't every invocation of my search query between 12:52:24.643 and 12:58:20.780 have included that call in the result set?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 20:42:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809045#M3409</guid>
      <dc:creator>jcombs10</dc:creator>
      <dc:date>2023-04-05T20:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809495#M3410</link>
      <description>&lt;P&gt;That is correct, In this case, you should see it as parked between 12:52 to 12:58.&lt;/P&gt;
&lt;P&gt;The total records for 'task' object per page is 500, I see you are passing 'hasNextPage' parameter, Do you know if that was true by any chance?&lt;/P&gt;
&lt;P&gt;Do you have the complete output of the query you ran at 12:55 that I can review?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 13:23:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809495#M3410</guid>
      <dc:creator>sdoddali</dc:creator>
      <dc:date>2023-04-06T13:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809590#M3411</link>
      <description>&lt;P&gt;I've attached query results from when it first entered a parked state as well as a couple minutes later when the parked call had vanished.&amp;nbsp; Note that it may not have been precisely 12:55 but it was definitely prior to the call being connected.&amp;nbsp; I don't have the exact time but it was probably closer to 12:53:30 or so.&lt;/P&gt;&lt;P&gt;My from time on this was actually started of the work day (8 AM).&amp;nbsp; Also, my query had an or condition to select tasks for 5 or 6 queues since I didn't know which one was going to experience this strange behavior and I wanted to make sure I could capture it.&amp;nbsp; Despite that the volume on these queues is low enough that we did not paginate.&amp;nbsp; hasNextPage was false on every query response.&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;tasks_with_call_on_hold.txt - this was the first query execution when I initially observed a parked call.&amp;nbsp; By my count there are 185 tasks in this response&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;tasks_with_call_missing_from_response.txt - this was a second execution of the same query somewhere around 12:53:30 or so when the call would still have been in a parked state according to the timeline above.&amp;nbsp; I count 184 tasks in this response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;tasks_with_call_reappeared.txt - a third execution of the same query a couple hours later, long after the call had completed and it shows back up in the search result.&amp;nbsp; I see 306 tasks in this response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;This happens with every call that enters a parked state due to no available agents so I can reproduce it pretty easily and grab additional samples if needed.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 15:45:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4809590#M3411</guid>
      <dc:creator>jcombs10</dc:creator>
      <dc:date>2023-04-06T15:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4810362#M3412</link>
      <description>&lt;P&gt;I do see in the backend you ran the query at the correct time to get that particular call in a parked state.&lt;/P&gt;
&lt;P&gt;// Your first query.&lt;/P&gt;
&lt;P&gt;Apr 3, 2023 @ &lt;STRONG&gt;12:52:46.983&lt;/STRONG&gt;&amp;nbsp; - {fromTime=1680497566604, toTime=1680540766604}&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Result count: &lt;STRONG&gt;185&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;// Your second query&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Apr 3, 2023 @ &lt;STRONG&gt;12:53:19.646&amp;nbsp;&lt;/STRONG&gt; {fromTime=1680497599407, toTime=1680540799407}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Result count: &lt;STRONG&gt;184 &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;// I don't see a reason why that call would not show up.&lt;/P&gt;
&lt;P&gt;Probably you can run a query with the following filter when a call does not show up in the parked state and check what the output is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;filter&lt;/SPAN&gt;&lt;SPAN&gt;: {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;SPAN&gt;: [&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;SPAN&gt;direction&lt;/SPAN&gt;&lt;SPAN&gt;: { &lt;/SPAN&gt;&lt;SPAN&gt;equals&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"inbound"&lt;/SPAN&gt;&lt;SPAN&gt; } }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;SPAN&gt;channelType&lt;/SPAN&gt;&lt;SPAN&gt;: { &lt;/SPAN&gt;&lt;SPAN&gt;equals&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;telephony&lt;/SPAN&gt;&lt;SPAN&gt; } }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt; { id: { equals: "2d646729-6bc5-4a16-80f2-a4f9e8c1f956" } }&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ]&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;// This will provide some insights into what was the actual state of that call according to the graphQL server.&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 22:32:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4810362#M3412</guid>
      <dc:creator>sdoddali</dc:creator>
      <dc:date>2023-04-07T22:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: queued calls disappear from /search API response</title>
      <link>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4816189#M3413</link>
      <description>&lt;P&gt;I've been out of the country so I haven't had a chance to do anything with this.&amp;nbsp; Before I left I did come at this from a slightly different angle and executed the /v1/tasks GET endpoint rather than the /v1/search POST endpoint.&amp;nbsp; On the GET endpoint I could see the task with a status of "queued" in that response even though it did not come back on the search endpoint.&lt;/P&gt;&lt;P&gt;It's as if the /v1/search endpoint ignores a status of queued even though there is not status filter in my query.&lt;/P&gt;&lt;P&gt;I'll try to catch a case of this today and run the search query with the task ID filter as you suggest.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 18:25:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/queued-calls-disappear-from-search-api-response/m-p/4816189#M3413</guid>
      <dc:creator>jcombs10</dc:creator>
      <dc:date>2023-04-17T18:25:59Z</dc:date>
    </item>
  </channel>
</rss>

