<?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: Hubspot custom workflow action error on external api call in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109156#M80352</link>
    <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813499"&gt;@KPadhiyar&lt;/a&gt;&amp;nbsp;yes I'm getting HubSpot call from HubSpot in my optionsUrl.&lt;BR /&gt;We probably have different issue.&lt;/P&gt;</description>
    <pubDate>Fri, 14 Feb 2025 11:49:30 GMT</pubDate>
    <dc:creator>nickiearchua</dc:creator>
    <dc:date>2025-02-14T11:49:30Z</dc:date>
    <item>
      <title>Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/968791#M73218</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am trying to create a custom action for workflow for whoever uses my application. I want to make an external API call to get data based on the `portalId` of the account.&amp;nbsp;&lt;BR /&gt;I have drop down a drop down select which will show options based on the data that is returned from the external API call.&lt;BR /&gt;But for some reason&amp;nbsp; I am getting error &lt;STRONG&gt;could not load due to a 3rd-party API failure.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Here is a sample of code that I am using&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
  "actionUrl": "https://example.com/hubspot",
  "published" : true,
  "inputFields": [
    {
      "typeDefinition": {
        "name": "widgetName",
        "type": "string",
        "fieldType": "text"
      },
      "supportedValueTypes": ["STATIC_VALUE"],
      "isRequired": true
    },
    {
      "typeDefinition": {
        "name": "widgetColor",
        "type": "enumeration",
        "fieldType": "select",
        "options": [
          { "value": "red", "description": "red", "label": "Red" },
          { "value": "blue", "description": "blue", "label": "Blue" },
          { "value": "green", "description": "green", "label": "Green" }
        ]
      },
      "supportedValueTypes": ["STATIC_VALUE"]
    },
    {
      "typeDefinition": {
        "name": "widgetSize",
        "type": "enumeration",
        "fieldType": "select",
        "optionsUrl": "https://api.example.com/v1/widget-sizes"
      },
      "supportedValueTypes": ["STATIC_VALUE"]
    },
    {
      "typeDefinition": {
        "name": "widgetCost",
        "type": "number",
        "fieldType": "number"
      },
      "supportedValueTypes": ["OBJECT_PROPERTY"]
    }
  ],
  "inputFieldDependencies": [
    {
      "dependencyType": "SINGLE_FIELD",
      "controllingFieldName": "widgetColor",
      "dependentFieldNames": ["widgetSize"]
    },
    {
      "dependencyType": "CONDITIONAL_SINGLE_FIELD",
      "controllingFieldName": "widgetColor",
      "controllingFieldValue": "red",
      "dependentFieldNames": ["widgetCost"]
    }
  ],
  "labels": {
    "en": {
      "actionName": "Create Widget - Example 3",
      "actionCardContent": "Create widget {{widgetName}}",
      "inputFieldLabels": {
        "widgetName": "Widget Name",
        "widgetColor": "Widget Color",
        "widgetSize": "Widget Size",
        "widgetCost": "Widget Cost"
      }
    }
  },
  "objectTypes": ["CONTACT", "DEAL"],
  "functions": [
    {
      "functionType": "PRE_FETCH_OPTIONS",
      "id": "widgetSize",
      "functionSource": "exports.main = function(event, callback) { return callback(transformRequest(event)); }\nfunction transformRequest(request) { return { webhookUrl: request.webhookUrl + '?color=' + request.fields.widgetColor.value, body: JSON.stringify(request.fields), httpMethod: 'GET' }; }"
    }
  ]
}&lt;/LI-CODE&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;&lt;STRONG&gt;And this is the error which is being shown in the workflow &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="neer_0-1714450670823.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/116436iC84F242581BAF32C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="neer_0-1714450670823.png" alt="neer_0-1714450670823.png" /&gt;&lt;/span&gt;&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, 30 Apr 2024 04:18:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/968791#M73218</guid>
      <dc:creator>neer</dc:creator>
      <dc:date>2024-04-30T04:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/969543#M73265</link>
      <description>&lt;P&gt;Hi, &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/748435"&gt;@neer&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Thanks for your question. I'd like to invite some of our community members to the conversation — 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/324811"&gt;@zach_threadint&lt;/a&gt;&lt;/SPAN&gt; &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/539078"&gt;@MatthiasKunz&lt;/a&gt;&lt;/SPAN&gt; do you have any recent experience with similar errors to what &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/748435"&gt;@neer&lt;/a&gt;&lt;/SPAN&gt; shared?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have some basic troubleshooting steps:&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;Check that the external API (&lt;A href="https://api.example.com/v1/widget-sizes" target="_blank"&gt;https://api.example.com/v1/widget-sizes&lt;/A&gt;) is operational and accessible. You can use a tool like Postman to test the endpoint directly&lt;/LI&gt;
 &lt;LI&gt;Ensure the API’s response matches the expected format for HubSpot, like [{ "value": "size1", "label": "Size 1" }]&lt;/LI&gt;
 &lt;LI&gt;Double-check your custom function that modifies the request to ensure it constructs a valid API URL and correctly passes all necessary parameters. Make sure the method (GET or POST) matches the requirements&lt;/LI&gt;
 &lt;LI&gt;Confirm there are no network issues or CORS policies preventing HubSpot from accessing the API&lt;BR /&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Jaycee&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 22:59:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/969543#M73265</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2024-04-30T22:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970001#M73284</link>
      <description>&lt;P&gt;How your passing portal id in external api. Can you show the code snippet. I believe you added in&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"functionType"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"POST_FETCH_OPTIONS"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"id"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"yourinputfieldid"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"functionSource"&lt;/SPAN&gt;&lt;SPAN&gt;: "your code"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 May 2024 18:28:49 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970001#M73284</guid>
      <dc:creator>Saravanakumart</dc:creator>
      <dc:date>2024-05-01T18:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970186#M73289</link>
      <description>&lt;P&gt;Adding to what&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;is writing above, if you have the option to observe the traffic either on your code or on the external API's side, that might give you some more details on that error message you are getting here. As it is, it's hard to tell what might be going wrong since we do not know what you are calling, or what the exact error message from the other endpoint is. If this is not an option, you would have to resort to the steps above to narrow things down a little.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 06:34:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970186#M73289</guid>
      <dc:creator>MatthiasKunz</dc:creator>
      <dc:date>2024-05-02T06:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970194#M73291</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/748435"&gt;@neer&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I'm getting the same error message when trying to implement the only full example using the "PRE_FETCH_OPTIONS" function type outlined in &lt;A href="https://developers.hubspot.com/docs/api/automation/custom-workflow-actions#example-3" target="_blank" rel="noopener"&gt;the HubSpot documentation&lt;/A&gt;. &lt;FONT color="#808080"&gt;(Example #3, right down the bottom of the doc)&lt;/FONT&gt;. The only meaningful change I made to the documented example was to point to my 'actionUrl' and 'optionsUrl' endpoints:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;POST&lt;/STRONG&gt;:&amp;nbsp;&lt;SPAN&gt;/automation/v4/actions/:APP_ID&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "actionUrl": "https://webhook.site/12345-abcde",
  "published": true,
  "inputFields": [
    {
      "typeDefinition": {
        "name": "widgetName",
        "type": "string",
        "fieldType": "text"
      },
      "supportedValueTypes": ["STATIC_VALUE"],
      "isRequired": true
    },
    {
      "typeDefinition": {
        "name": "widgetColor",
        "type": "enumeration",
        "fieldType": "select",
        "options": [
          { "value": "red", "description": "red", "label": "Red" },
          { "value": "blue", "description": "blue", "label": "Blue" },
          { "value": "green", "description": "green", "label": "Green" }
        ]
      },
      "supportedValueTypes": ["STATIC_VALUE"]
    },
    {
      "typeDefinition": {
        "name": "widgetSize",
        "type": "enumeration",
        "fieldType": "select",
        "optionsUrl": "https://webhook.site/abcde-12345"
      },
      "supportedValueTypes": ["STATIC_VALUE"]
    },
    {
      "typeDefinition": {
        "name": "widgetCost",
        "type": "number",
        "fieldType": "number"
      },
      "supportedValueTypes": ["OBJECT_PROPERTY"]
    }
  ],
  "inputFieldDependencies": [
    {
      "dependencyType": "SINGLE_FIELD",
      "controllingFieldName": "widgetColor",
      "dependentFieldNames": ["widgetSize"]
    },
    {
      "dependencyType": "CONDITIONAL_SINGLE_FIELD",
      "controllingFieldName": "widgetColor",
      "controllingFieldValue": "red",
      "dependentFieldNames": ["widgetCost"]
    }
  ],
  "labels": {
    "en": {
      "actionName": "Create Widget",
      "actionCardContent": "Create widget {{widgetName}}",
      "inputFieldLabels": {
        "widgetName": "Widget Name",
        "widgetColor": "Widget Color",
        "widgetSize": "Widget Size",
        "widgetCost": "Widget Cost"
      }
    }
  },
  "objectTypes": ["CONTACT", "DEAL"],
  "functions": [
    {
      "functionType": "PRE_FETCH_OPTIONS",
      "id": "widgetSize",
      "functionSource": "exports.main = function(event, callback) { return callback(transformRequest(event)); }\nfunction transformRequest(request) { return { webhookUrl: request.webhookUrl + '?color=' + request.fields.widgetColor.value, body: JSON.stringify(request.fields), httpMethod: 'GET' }; }"
    }
  ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That request succeeds in creating the custom workflow action. Then, when I try to interact with the workflow action in HubSpot UI, I get the same error message experienced by&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/748435"&gt;@neer&lt;/a&gt; and no request is received by my example endpoint. There could be something funny going on, or at least the example in the documentation needs to be reviewed (I suspect something wrong with the example 'functionSource', but I could be wrong).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this proves helpful. Please let me know if you have any follow-up questions.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 07:10:11 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970194#M73291</guid>
      <dc:creator>zach_threadint</dc:creator>
      <dc:date>2024-05-02T07:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970855#M73323</link>
      <description>&lt;P&gt;I also used Example 3 from hubspot custom workflow action documentation.&lt;/P&gt;&lt;P&gt;Just changed the&amp;nbsp; `optionsURL`&amp;nbsp; and `actionURL`.&lt;BR /&gt;I am able to hit my 'actionURL' but don't know why 'optionsUrl' is not getting hit and I am getting error while populating the fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 08:29:08 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/970855#M73323</guid>
      <dc:creator>neer</dc:creator>
      <dc:date>2024-05-03T08:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/971573#M73348</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/324811"&gt;@zach_threadint&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Is there any work around for this?&lt;BR /&gt;My "actionUrl" is working fine&amp;nbsp;&lt;BR /&gt;but "optionsUrl" is not.&lt;BR /&gt;Show the functionType be&amp;nbsp; "PRE_FETCH_OPTIONS" or is there any other things I am missing ?&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2024 10:26:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/971573#M73348</guid>
      <dc:creator>neer</dc:creator>
      <dc:date>2024-05-05T10:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1038139#M76453</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/748435"&gt;@neer&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/324811"&gt;@zach_threadint&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;There is any solution for above problem because I also faced same problem for my action. Please let me know if there is any solution for it. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 05:42:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1038139#M76453</guid>
      <dc:creator>KPadhiyar</dc:creator>
      <dc:date>2024-09-09T05:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109136#M80348</link>
      <description>&lt;P&gt;I'm also encountering this issue now.&amp;nbsp;For some reason, the fields and inputFields are empty.&lt;BR /&gt;I have 2 identical apps with same custom actions and it's only happening to my test app.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2025 11:18:31 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109136#M80348</guid>
      <dc:creator>nickiearchua</dc:creator>
      <dc:date>2025-02-14T11:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109140#M80349</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/280867"&gt;@nickiearchua&lt;/a&gt;I think the issue is related to your local environment because the local project URL can't be called by HubSpot to fetch options. Can you please tell me which language you use?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2025 11:25:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109140#M80349</guid>
      <dc:creator>KPadhiyar</dc:creator>
      <dc:date>2025-02-14T11:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109146#M80350</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813499"&gt;@KPadhiyar&lt;/a&gt;&amp;nbsp;it's pointing to the correct URL.&lt;BR /&gt;This is the sampe payload I'm getting in my test app&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;{&lt;BR /&gt;  &lt;SPAN&gt;"origin"&lt;/SPAN&gt;: {&lt;BR /&gt;  &lt;SPAN&gt;"portalId"&lt;/SPAN&gt;: &lt;SPAN&gt;123123123&lt;/SPAN&gt;,&lt;BR /&gt;    &lt;SPAN&gt;"actionDefinitionId"&lt;/SPAN&gt;: &lt;SPAN&gt;123123&lt;/SPAN&gt;,&lt;BR /&gt;    &lt;SPAN&gt;"actionDefinitionVersion"&lt;/SPAN&gt;: &lt;SPAN&gt;1&lt;/SPAN&gt;,&lt;BR /&gt;    &lt;SPAN&gt;"actionExecutionIndexIdentifier"&lt;/SPAN&gt;: &lt;SPAN&gt;null&lt;/SPAN&gt;,&lt;BR /&gt;    &lt;SPAN&gt;"extensionDefinitionId"&lt;/SPAN&gt;: &lt;SPAN&gt;123123&lt;/SPAN&gt;,&lt;BR /&gt;    &lt;SPAN&gt;"extensionDefinitionVersionId"&lt;/SPAN&gt;: &lt;SPAN&gt;1&lt;BR /&gt;&lt;/SPAN&gt;},&lt;BR /&gt;  &lt;SPAN&gt;"inputFieldName"&lt;/SPAN&gt;: &lt;SPAN&gt;"myField"&lt;/SPAN&gt;,&lt;BR /&gt;  &lt;SPAN&gt;"fetchOptions"&lt;/SPAN&gt;: {&lt;BR /&gt;  &lt;SPAN&gt;"q"&lt;/SPAN&gt;: &lt;SPAN&gt;""&lt;BR /&gt;&lt;/SPAN&gt;},&lt;BR /&gt;  &lt;SPAN&gt;"objectTypeId"&lt;/SPAN&gt;: &lt;SPAN&gt;"0-1"&lt;/SPAN&gt;,&lt;BR /&gt;  &lt;SPAN&gt;"fields"&lt;/SPAN&gt;: {},&lt;BR /&gt;  &lt;SPAN&gt;"userId"&lt;/SPAN&gt;: &lt;SPAN&gt;123123&lt;/SPAN&gt;,&lt;BR /&gt;  &lt;SPAN&gt;"inputFields"&lt;/SPAN&gt;: {},&lt;BR /&gt;  &lt;SPAN&gt;"extensionDefinitionId"&lt;/SPAN&gt;: &lt;SPAN&gt;123123&lt;/SPAN&gt;,&lt;BR /&gt;  &lt;SPAN&gt;"extensionsDefinitionVersion"&lt;/SPAN&gt;: &lt;SPAN&gt;1&lt;/SPAN&gt;,&lt;BR /&gt;  &lt;SPAN&gt;"portalId"&lt;/SPAN&gt;: &lt;SPAN&gt;123123123&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;But when I test the other app which is completely identical, the fields and inputFields have values in it.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2025 11:38:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109146#M80350</guid>
      <dc:creator>nickiearchua</dc:creator>
      <dc:date>2025-02-14T11:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109152#M80351</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/280867"&gt;@nickiearchua&lt;/a&gt;&amp;nbsp;&amp;nbsp;Do you get a HubSpot call for fetching options? Because when I worked on this, I had a problem with my project's local URL, which couldn't be accessed by HubSpot.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2025 11:46:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109152#M80351</guid>
      <dc:creator>KPadhiyar</dc:creator>
      <dc:date>2025-02-14T11:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom workflow action error on external api call</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109156#M80352</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/813499"&gt;@KPadhiyar&lt;/a&gt;&amp;nbsp;yes I'm getting HubSpot call from HubSpot in my optionsUrl.&lt;BR /&gt;We probably have different issue.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2025 11:49:30 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Hubspot-custom-workflow-action-error-on-external-api-call/m-p/1109156#M80352</guid>
      <dc:creator>nickiearchua</dc:creator>
      <dc:date>2025-02-14T11:49:30Z</dc:date>
    </item>
  </channel>
</rss>

