<?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: Understanding hs_value Field Usage in Custom Surveys via API in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909711#M70479</link>
    <description>&lt;P&gt;Thank you for your prompt response. As requested, here's an example of my API request and the responses I'm receiving, which illustrate the issue with the hs_value field in custom surveys.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Request for an NPS Survey Submission&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;curl --request GET \&lt;BR /&gt;--url '&lt;A href="https://api.hubapi.com/crm/v3/objects/feedback_submissions/101983670229?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/feedback_submissions/101983670229?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false&lt;/A&gt;' \&lt;BR /&gt;--header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;{&lt;BR /&gt;"id": "101983670229",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_content": "Krångelfri IT och kompetens och lika mycket trevligt bemötande!",&lt;BR /&gt;"hs_createdate": "2024-01-22T15:32:45.060Z",&lt;BR /&gt;"hs_lastmodifieddate": "2024-01-22T15:33:57.018Z",&lt;BR /&gt;"hs_object_id": "101983670229",&lt;BR /&gt;"hs_survey_type": "NPS",&lt;BR /&gt;"hs_value": "10"&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "2024-01-22T15:32:45.060Z",&lt;BR /&gt;"updatedAt": "2024-01-22T15:33:57.018Z",&lt;BR /&gt;"archived": false&lt;BR /&gt;}&lt;BR /&gt;In this case, the hs_value&amp;nbsp;and hs_content&amp;nbsp;fields are present and holds the expected data.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Request for a Custom Survey Submission&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;curl --request GET \&lt;BR /&gt;--url '&lt;A href="https://api.hubapi.com/crm/v3/objects/feedback_submissions/101689525692?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/feedback_submissions/101689525692?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false&lt;/A&gt;' \&lt;BR /&gt;--header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;BR /&gt;{&lt;BR /&gt;"id": "101689525692",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_content": null,&lt;BR /&gt;"hs_createdate": "2024-01-20T15:33:12.897Z",&lt;BR /&gt;"hs_lastmodifieddate": "2024-01-20T15:33:13.451Z",&lt;BR /&gt;"hs_object_id": "101689525692",&lt;BR /&gt;"hs_survey_type": "CUSTOM",&lt;BR /&gt;"hs_value": null&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "2024-01-20T15:33:12.897Z",&lt;BR /&gt;"updatedAt": "2024-01-20T15:33:13.451Z",&lt;BR /&gt;"archived": false&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;However, for a custom survey submission, both hs_content and hs_value are null.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Given these examples, my questions are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is it expected that hs_value&amp;nbsp;and hs_content&amp;nbsp;would be null for custom survey types?&lt;/LI&gt;&lt;LI&gt;If hs_value is not applicable for custom surveys, is there another field that should be used to retrieve feedback or ratings?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any further insights would be greatly appreciated to help clarify this behavior.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jan 2024 22:39:41 GMT</pubDate>
    <dc:creator>krillman</dc:creator>
    <dc:date>2024-01-22T22:39:41Z</dc:date>
    <item>
      <title>Understanding hs_value Field Usage in Custom Surveys via API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909109#M70455</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm seeking clarification on using the hs_value field in custom survey submissions via the HubSpot API. Specifically, I'm encountering an issue where this field consistently returns None in API responses for custom surveys.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Objective&lt;/STRONG&gt;: Retrieve feedback rating from custom surveys.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Issue&lt;/STRONG&gt;: hs_value field is always None in API responses.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Question&lt;/STRONG&gt;:&lt;OL&gt;&lt;LI&gt;Is hs_value applicable to custom surveys, or is it specific to standard surveys like NPS?&lt;/LI&gt;&lt;LI&gt;If not applicable, which field(s) should be used for feedback or rating data in custom surveys?&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your insights on this matter would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Kristian&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2024 22:14:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909109#M70455</guid>
      <dc:creator>krillman</dc:creator>
      <dc:date>2024-01-21T22:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding hs_value Field Usage in Custom Surveys via API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909501#M70470</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/159249"&gt;@krillman&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Can you add a brief example of your request and the response, please? It will be easier for our community to understand with a bit more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you! — Jaycee&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 17:05:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909501#M70470</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2024-01-22T17:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding hs_value Field Usage in Custom Surveys via API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909698#M70477</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you for your response. As requested, here's an example of my API request and the responses I'm receiving, which illustrate the issue with the &lt;/SPAN&gt;hs_value&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;and hs_content fields in custom surveys.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Request for an NPS Survey Submission:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --request GET \
--url 'https://api.hubapi.com/crm/v3/objects/feedback_submissions/101958507729?properties=hs_survey_type%2Chs_value&amp;amp;archived=false' \
--header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Response:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "id": "101983670229",
  "properties": {
    "hs_content": "Krångelfri IT och kompetens och lika mycket trevligt bemötande!",
    "hs_survey_type": "NPS",
    "hs_value": "10"
  }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In this case, the hs_value&amp;nbsp;and hs_content&amp;nbsp;field is present and holds the expected data.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Request for a Custom Survey Submission:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --request GET \
  --url 'https://api.hubapi.com/crm/v3/objects/feedback_submissions/101689525692?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false' \
  --header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Response:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "id": "101689525692",
  "properties": {
    "hs_content": null,
    "hs_survey_type": "CUSTOM",
    "hs_value": null
  }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, for a custom survey submission, both hs_content and hs_value are null.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Given these examples, my questions are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is it expected that hs_value (and hs_content) would be null for custom survey types?&lt;/LI&gt;&lt;LI&gt;If hs_value is not applicable for custom surveys, is there another field that should be used to retrieve feedback or ratings?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any further insights would be greatly appreciated to help clarify this behavior.&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>Mon, 22 Jan 2024 22:22:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909698#M70477</guid>
      <dc:creator>krillman</dc:creator>
      <dc:date>2024-01-22T22:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding hs_value Field Usage in Custom Surveys via API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909711#M70479</link>
      <description>&lt;P&gt;Thank you for your prompt response. As requested, here's an example of my API request and the responses I'm receiving, which illustrate the issue with the hs_value field in custom surveys.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Request for an NPS Survey Submission&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;curl --request GET \&lt;BR /&gt;--url '&lt;A href="https://api.hubapi.com/crm/v3/objects/feedback_submissions/101983670229?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/feedback_submissions/101983670229?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false&lt;/A&gt;' \&lt;BR /&gt;--header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;{&lt;BR /&gt;"id": "101983670229",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_content": "Krångelfri IT och kompetens och lika mycket trevligt bemötande!",&lt;BR /&gt;"hs_createdate": "2024-01-22T15:32:45.060Z",&lt;BR /&gt;"hs_lastmodifieddate": "2024-01-22T15:33:57.018Z",&lt;BR /&gt;"hs_object_id": "101983670229",&lt;BR /&gt;"hs_survey_type": "NPS",&lt;BR /&gt;"hs_value": "10"&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "2024-01-22T15:32:45.060Z",&lt;BR /&gt;"updatedAt": "2024-01-22T15:33:57.018Z",&lt;BR /&gt;"archived": false&lt;BR /&gt;}&lt;BR /&gt;In this case, the hs_value&amp;nbsp;and hs_content&amp;nbsp;fields are present and holds the expected data.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Request for a Custom Survey Submission&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;curl --request GET \&lt;BR /&gt;--url '&lt;A href="https://api.hubapi.com/crm/v3/objects/feedback_submissions/101689525692?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/feedback_submissions/101689525692?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false&lt;/A&gt;' \&lt;BR /&gt;--header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;BR /&gt;{&lt;BR /&gt;"id": "101689525692",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_content": null,&lt;BR /&gt;"hs_createdate": "2024-01-20T15:33:12.897Z",&lt;BR /&gt;"hs_lastmodifieddate": "2024-01-20T15:33:13.451Z",&lt;BR /&gt;"hs_object_id": "101689525692",&lt;BR /&gt;"hs_survey_type": "CUSTOM",&lt;BR /&gt;"hs_value": null&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "2024-01-20T15:33:12.897Z",&lt;BR /&gt;"updatedAt": "2024-01-20T15:33:13.451Z",&lt;BR /&gt;"archived": false&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;However, for a custom survey submission, both hs_content and hs_value are null.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Given these examples, my questions are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is it expected that hs_value&amp;nbsp;and hs_content&amp;nbsp;would be null for custom survey types?&lt;/LI&gt;&lt;LI&gt;If hs_value is not applicable for custom surveys, is there another field that should be used to retrieve feedback or ratings?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any further insights would be greatly appreciated to help clarify this behavior.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 22:39:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909711#M70479</guid>
      <dc:creator>krillman</dc:creator>
      <dc:date>2024-01-22T22:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding hs_value Field Usage in Custom Surveys via API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909920#M70493</link>
      <description>&lt;P class=""&gt;Thank you&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;for your response. As requested, here's an example of my API request and the responses I'm receiving, which illustrate the issue with the hs_value field in custom surveys.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Request for an NPS Survey Submission&lt;/STRONG&gt;:&lt;BR /&gt;curl --request GET \&lt;/P&gt;&lt;P class="" data-unlink="true"&gt;--url 'https://api.hubapi.com/crm/v3/objects/feedback_submissions/xxx29?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false&amp;nbsp;' \&lt;/P&gt;&lt;P class=""&gt;--header 'authorization: Bearer xxx'&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;BR /&gt;{&lt;BR /&gt;"id": "xxx29",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_content": "Krångelfri IT och kompetens och lika mycket trevligt bemötande!",&lt;BR /&gt;"hs_createdate": "2024-01-22T15:32:45.060Z",&lt;BR /&gt;"hs_lastmodifieddate": "2024-01-22T15:33:57.018Z",&lt;BR /&gt;"hs_object_id": "xxx29",&lt;BR /&gt;"hs_survey_type": "NPS",&lt;BR /&gt;"hs_value": "10"&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "2024-01-22T15:32:45.060Z",&lt;BR /&gt;"updatedAt": "2024-01-22T15:33:57.018Z",&lt;BR /&gt;"archived": false&lt;BR /&gt;}&lt;BR /&gt;In this case, the hs_value&amp;nbsp;and hs_content&amp;nbsp;fields are present and holds the expected data.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Request for a Custom Survey Submission&lt;/STRONG&gt;:&lt;BR /&gt;curl --request GET \&lt;/P&gt;&lt;P class="" data-unlink="true"&gt;--url 'https://api.hubapi.com/crm/v3/objects/feedback_submissions/xxx92?properties=hs_survey_type%2Chs_value%2Chs_content&amp;amp;archived=false&amp;nbsp;' \&lt;/P&gt;&lt;P class=""&gt;--header 'authorization: Bearer xxx'&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;BR /&gt;{&lt;BR /&gt;"id": "xxx92",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_content": null,&lt;BR /&gt;"hs_createdate": "2024-01-20T15:33:12.897Z",&lt;BR /&gt;"hs_lastmodifieddate": "2024-01-20T15:33:13.451Z",&lt;BR /&gt;"hs_object_id": "xxx92",&lt;BR /&gt;"hs_survey_type": "CUSTOM",&lt;BR /&gt;"hs_value": null&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "2024-01-20T15:33:12.897Z",&lt;BR /&gt;"updatedAt": "2024-01-20T15:33:13.451Z",&lt;BR /&gt;"archived": false&lt;BR /&gt;}&lt;BR /&gt;However, for a custom survey submission, both hs_content and hs_value are null.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Given these examples, my questions are:&lt;/P&gt;&lt;OL class=""&gt;&lt;LI&gt;Is it expected that hs_value&amp;nbsp;and hs_content&amp;nbsp;would be null for custom survey types?&lt;/LI&gt;&lt;LI&gt;If hs_value is not applicable for custom surveys, is there another field that should be used to retrieve feedback or ratings?&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Any further insights would be greatly appreciated to help clarify this behavior.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;All the best!&lt;/P&gt;&lt;P class=""&gt;Kristian&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 08:29:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Understanding-hs-value-Field-Usage-in-Custom-Surveys-via-API/m-p/909920#M70493</guid>
      <dc:creator>krillman</dc:creator>
      <dc:date>2024-01-23T08:29:29Z</dc:date>
    </item>
  </channel>
</rss>

