<?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: Ticket workflow custom code to create associated note in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1019480#M75463</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/164274"&gt;@MatBehr&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; That error looks like it's coming from the workflow not recognizing the objectId ","context":{"id":["hs_object_id"]},"category":"OBJECT_NOT_FOUND"}" I'd start by testing with a hard-coded value and then once successful, looking at how you are declaring the variable for `id`.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you've already done this, please follow up here and we'll take another look.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Jaycee&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jul 2024 15:01:21 GMT</pubDate>
    <dc:creator>Jaycee_Lewis</dc:creator>
    <dc:date>2024-07-31T15:01:21Z</dc:date>
    <item>
      <title>Ticket workflow custom code to create associated note</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1018829#M75425</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to preface i am a complete beginner with code. What i am trying to accomplish is a note being created on an enrolled ticket that contains special instruction on how to handle specific customers. the code i have cobbled together is as follows, (using a private app)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;const hubspot = require('@hubspot/api-client');&lt;BR /&gt;exports.main = async () =&amp;gt; {&lt;BR /&gt;&lt;BR /&gt;const token = process.env.OPS_TOKEN&lt;/P&gt;&lt;P&gt;const hubspotClient = new hubspot.Client({"accessToken":token});&lt;/P&gt;&lt;P&gt;const properties = {&lt;BR /&gt;"hs_timestamp": Date.now(), // Current time/date,&lt;BR /&gt;"hs_note_body": "testing note creation" // Body of the note,&lt;BR /&gt;};&lt;BR /&gt;const SimplePublicObjectInputForCreate = { associations: [{"types":[{"associationCategory":"HUBSPOT_DEFINED","associationTypeId":228}],"to":{"id":"hs_object_id"}}], properties };&lt;/P&gt;&lt;P&gt;try {&lt;BR /&gt;const apiResponse = await hubspotClient.crm.objects.notes.basicApi.create(SimplePublicObjectInputForCreate);&lt;BR /&gt;console.log(JSON.stringify(apiResponse, null, 2));&lt;BR /&gt;} catch (e) {&lt;BR /&gt;e.message === 'HTTP request failed'&lt;BR /&gt;? console.error(JSON.stringify(e.response, null, 2))&lt;BR /&gt;: console.error(e)&lt;BR /&gt;}}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;WARNING: The logs for this function have exceeded the 4KB limit.
...
,"context":{"id":["hs_object_id"]},"category":"OBJECT_NOT_FOUND"}
Headers: {"access-control-allow-credentials":"false","cf-cache-status":"DYNAMIC","cf-ray":"8ab64e11bbadc946-IAD","connection":"keep-alive","content-encoding":"gzip","content-type":"application/json;charset=utf-8","date":"Tue, 30 Jul 2024 15:15:35 GMT","nel":"{\"success_fraction\":0.01,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=DlL2tufyf5hwqkNFpqnuX1ooIs%2B4mzKw%2BXYeaASlUElsAdZJK4IMEFczXc8W4qSgoTq2y1VLlyU09bIXqh2lWQQyukyHRbZ2J6LFz1%2Fto32IMZvDDE3zh0sU6Mq%2BHTkr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","strict-transport-security":"max-age=31536000; includeSubDomains; preload","transfer-encoding":"chunked","vary":"origin, Accept-Encoding","x-content-type-options":"nosniff","x-envoy-upstream-service-time":"71","x-evy-trace-listener":"listener_https","x-evy-trace-route-configuration":"listener_https/all","x-evy-trace-route-service-name":"envoyset-translator","x-evy-trace-served-by-pod":"iad02/hubapi-td/envoy-proxy-7dd59b876-tndmq","x-evy-trace-virtual-host":"all","x-hubspot-correlation-id":"9eb78ec2-5940-48fb-b9bf-57785fe8c203","x-hubspot-notfound":"true","x-hubspot-ratelimit-daily":"500000","x-hubspot-ratelimit-daily-remaining":"499994","x-hubspot-ratelimit-interval-milliseconds":"10000","x-hubspot-ratelimit-max":"150","x-hubspot-ratelimit-remaining":"149","x-hubspot-ratelimit-secondly":"15","x-hubspot-ratelimit-secondly-remaining":"14","x-request-id":"9eb78ec2-5940-48fb-b9bf-57785fe8c203"}
    at BasicApiResponseProcessor.&amp;lt;anonymous&amp;gt; (/opt/nodejs/node_modules/@hubspot/api-client/lib/codegen/crm/objects/notes/apis/BasicApi.js:209:23)
    at Generator.next (&amp;lt;anonymous&amp;gt;)
    at fulfilled (/opt/nodejs/node_modules/@hubspot/api-client/lib/codegen/crm/objects/notes/apis/BasicApi.js:5:58)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
  code: 404,
  body: {
    status: 'error',
    message: 'Object not found.  objectId are usually numeric.',
    correlationId: '9eb78ec2-5940-48fb-b9bf-57785fe8c203',
    context: { id: [Array] },
    category: 'OBJECT_NOT_FOUND'
  },
  headers: {
    'access-control-allow-credentials': 'false',
    'cf-cache-status': 'DYNAMIC',
    'cf-ray': '8ab64e11bbadc946-IAD',
    connection: 'keep-alive',
    'content-encoding': 'gzip',
    'content-type': 'application/json;charset=utf-8',
    date: 'Tue, 30 Jul 2024 15:15:35 GMT',
    nel: '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}',
    'report-to': '{"endpoints":[{"url":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=DlL2tufyf5hwqkNFpqnuX1ooIs%2B4mzKw%2BXYeaASlUElsAdZJK4IMEFczXc8W4qSgoTq2y1VLlyU09bIXqh2lWQQyukyHRbZ2J6LFz1%2Fto32IMZvDDE3zh0sU6Mq%2BHTkr"}],"group":"cf-nel","max_age":604800}',
    server: 'cloudflare',
    'strict-transport-security': 'max-age=31536000; includeSubDomains; preload',
    'transfer-encoding': 'chunked',
    vary: 'origin, Accept-Encoding',
    'x-content-type-options': 'nosniff',
    'x-envoy-upstream-service-time': '71',
    'x-evy-trace-listener': 'listener_https',
    'x-evy-trace-route-configuration': 'listener_https/all',
    'x-evy-trace-route-service-name': 'envoyset-translator',
    'x-evy-trace-served-by-pod': 'iad02/hubapi-td/envoy-proxy-7dd59b876-tndmq',
    'x-evy-trace-virtual-host': 'all',
    'x-hubspot-correlation-id': '9eb78ec2-5940-48fb-b9bf-57785fe8c203',
    'x-hubspot-notfound': 'true',
    'x-hubspot-ratelimit-daily': '500000',
    'x-hubspot-ratelimit-daily-remaining': '499994',
    'x-hubspot-ratelimit-interval-milliseconds': '10000',
    'x-hubspot-ratelimit-max': '150',
    'x-hubspot-ratelimit-remaining': '149',
    'x-hubspot-ratelimit-secondly': '15',
    'x-hubspot-ratelimit-secondly-remaining': '14',
    'x-request-id': '9eb78ec2-5940-48fb-b9bf-57785fe8c203'
  }
}

Memory: 87/128 MB
Runtime: 522.71 ms&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 15:24:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1018829#M75425</guid>
      <dc:creator>MatBehr</dc:creator>
      <dc:date>2024-07-30T15:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Ticket workflow custom code to create associated note</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1019480#M75463</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/164274"&gt;@MatBehr&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; That error looks like it's coming from the workflow not recognizing the objectId ","context":{"id":["hs_object_id"]},"category":"OBJECT_NOT_FOUND"}" I'd start by testing with a hard-coded value and then once successful, looking at how you are declaring the variable for `id`.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you've already done this, please follow up here and we'll take another look.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Jaycee&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 15:01:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1019480#M75463</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2024-07-31T15:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ticket workflow custom code to create associated note</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1020291#M75514</link>
      <description>&lt;P&gt;Hi Jaycee,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hard-coding the value works and the note is successfully associated. so the issue is with the variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MAt&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 20:02:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1020291#M75514</guid>
      <dc:creator>MatBehr</dc:creator>
      <dc:date>2024-08-01T20:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Ticket workflow custom code to create associated note</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1020306#M75515</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MatBehr_0-1722543958886.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/123774iACAD2AF70FD6CCC2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MatBehr_0-1722543958886.png" alt="MatBehr_0-1722543958886.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;so when i hover my input field for getting my ticket id for association it says its not used,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;const hubspot = require('@hubspot/api-client');&lt;BR /&gt;exports.main = async (event) =&amp;gt; {&lt;BR /&gt;&lt;BR /&gt;const token = process.env.OPS_TOKEN&lt;/P&gt;&lt;P&gt;const hubspotClient = new hubspot.Client({"accessToken":token});&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;const hs_ticket_id = event.inputFields['hs_ticket_id'];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;const properties = {&lt;BR /&gt;"hs_timestamp": Date.now(), // Current time/date,&lt;BR /&gt;"hs_note_body": "testing note creation" // Body of the note,&lt;BR /&gt;};&lt;BR /&gt;const SimplePublicObjectInputForCreate = { associations: [{"types":[{"associationCategory":"HUBSPOT_DEFINED","associationTypeId":228}],"to":{"id":"&lt;FONT color="#FF0000"&gt;hs_ticket_id&lt;/FONT&gt;"}}], properties };&lt;/P&gt;&lt;P&gt;try {&lt;BR /&gt;const apiResponse = await hubspotClient.crm.objects.notes.basicApi.create(SimplePublicObjectInputForCreate);&lt;BR /&gt;console.log(JSON.stringify(apiResponse, null, 2));&lt;BR /&gt;} catch (e) {&lt;BR /&gt;e.message === 'HTTP request failed'&lt;BR /&gt;? console.error(JSON.stringify(e.response, null, 2))&lt;BR /&gt;: console.error(e)&lt;BR /&gt;}}&lt;/P&gt;&lt;P&gt;i assumed as i had defined the field above it could be used as a ref in the association.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mat&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 20:30:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1020306#M75515</guid>
      <dc:creator>MatBehr</dc:creator>
      <dc:date>2024-08-01T20:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ticket workflow custom code to create associated note</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1020328#M75516</link>
      <description>&lt;P&gt;I have this working now with some trial and error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;const hubspot = require('@hubspot/api-client');&lt;/P&gt;&lt;P&gt;exports.main = async (event) =&amp;gt; {&lt;BR /&gt;const token = process.env.OPS_TOKEN; // Calls the Private app&lt;BR /&gt;const ticketId = event.inputFields.ticketId; // Pulls the Ticket id into the code&lt;/P&gt;&lt;P&gt;if (!token) {&lt;BR /&gt;console.error('OPS_TOKEN is not set');&lt;BR /&gt;return;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if (!ticketId) {&lt;BR /&gt;console.error('TICKET_ID is not set');&lt;BR /&gt;return;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;console.log('Using ticket ID:', ticketId);&lt;/P&gt;&lt;P&gt;const hubspotClient = new hubspot.Client({ "accessToken": token });&lt;/P&gt;&lt;P&gt;// Fetch the ticket information&lt;BR /&gt;let ticket;&lt;BR /&gt;try {&lt;BR /&gt;ticket = await hubspotClient.crm.tickets.basicApi.getById(ticketId);&lt;BR /&gt;console.log('Ticket retrieved:', JSON.stringify(ticket, null, 2));&lt;BR /&gt;} catch (e) {&lt;BR /&gt;console.error('Error fetching ticket:', e);&lt;BR /&gt;return;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;// Step 2: Use the ticket ID to create a note&lt;BR /&gt;const properties = {&lt;BR /&gt;"hs_timestamp": Date.now(), // Current time/date&lt;BR /&gt;"hs_note_body": "testing note creation" // Edit this section with the required message&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;const SimplePublicObjectInputForCreate = {&lt;BR /&gt;associations: [{&lt;BR /&gt;"types": [{ "associationCategory": "HUBSPOT_DEFINED", "associationTypeId": 228 }], // Use correct association type ID for tickets&lt;BR /&gt;"to": { "id": ticketId }&lt;BR /&gt;}],&lt;BR /&gt;properties&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;try {&lt;BR /&gt;const apiResponse = await hubspotClient.crm.objects.notes.basicApi.create(SimplePublicObjectInputForCreate);&lt;BR /&gt;console.log(JSON.stringify(apiResponse, null, 2));&lt;BR /&gt;} catch (e) {&lt;BR /&gt;e.message === 'HTTP request failed'&lt;BR /&gt;? console.error(JSON.stringify(e.response, null, 2))&lt;BR /&gt;: console.error(e);&lt;BR /&gt;}&lt;BR /&gt;};&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 21:07:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1020328#M75516</guid>
      <dc:creator>MatBehr</dc:creator>
      <dc:date>2024-08-01T21:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Ticket workflow custom code to create associated note</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1066711#M78033</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/192796"&gt;@marcodirk&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good news, this is now possible!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Workflows&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Create note workflow action&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;November 7, 2024&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;What is it?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;You can now automatically create notes using the new "Create note" workflow action.&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Why does it matter?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Notes are a versatile tool for adding important context to records, highlighting key information, or summarizing changes for your team. With the new "Create note" workflow action, you can now automate the addition of notes to records as part of any process. For instance, when handing a customer off to the onboarding team, you can use a workflow to automatically add a note summarizing the information gathered during the sales process. Any data from the workflow can be included in the note body, including enrolled record properties, associated record properties, and workflow run time data like action outputs.&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;How does it work?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;To use the action, create a new workflow and set up your trigger.&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Search workflow actions or view the CRM action category to find the "Create note" action&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Select the action and draft the note body&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Add personalization tokens from the enrolled record, associated record, or workflow action outputs to the note body as desired&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;The workflow automatically associates the note with the enrolled record.&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Who gets it?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Marketing Hub Pro, Marketing Hub Enterprise, Operations Hub Pro, Operations Hub Enterprise, Sales Hub Pro, Sales Hub Enterprise, Service Hub Pro, Service Hub Enterprise&lt;/EM&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can find the beta here:&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="karstenkoehler_1-1731043406854.png" style="width: 777px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/131213i7B445CDD283B533B/image-dimensions/777x342?v=v2" width="777" height="342" role="button" title="karstenkoehler_1-1731043406854.png" alt="karstenkoehler_1-1731043406854.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to make it easier for others to find this product update and beta, you can accept my reply as a solution. I'd appreciate it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a great day!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 05:25:16 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Ticket-workflow-custom-code-to-create-associated-note/m-p/1066711#M78033</guid>
      <dc:creator>karstenkoehler</dc:creator>
      <dc:date>2024-11-08T05:25:16Z</dc:date>
    </item>
  </channel>
</rss>

