<?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: Custom workflow action in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/808916#M65005</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes , I have created the workflow action as per he custom workflow action guide.&lt;/P&gt;&lt;P&gt;Below is the code -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// server.js&lt;BR /&gt;const express = require('express');&lt;BR /&gt;const https = require('https');&lt;BR /&gt;const fs = require('fs');&lt;BR /&gt;const customActionHandler = require('./actionHandler');&lt;BR /&gt;const bodyParser = require('body-parser');&lt;BR /&gt;const axios = require('axios');&lt;BR /&gt;require('dotenv').config();&lt;/P&gt;&lt;P&gt;const options = {&lt;BR /&gt;key: fs.readFileSync('./server.key'),&lt;BR /&gt;cert: fs.readFileSync('./server.cert')&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;// Create an Express app&lt;BR /&gt;const app = express();&lt;/P&gt;&lt;P&gt;const hubspot = require('@hubspot/api-client');&lt;BR /&gt;const hubspotClient = new hubspot.Client({"developerApiKey":process.env.HUBSPOT_API_KEY});&lt;/P&gt;&lt;P&gt;const appId = process.env.APP_ID;&lt;BR /&gt;const limit = undefined;&lt;BR /&gt;const after = undefined;&lt;BR /&gt;const archived = false;&lt;/P&gt;&lt;P&gt;app.use(bodyParser.urlencoded({&lt;BR /&gt;extended: true&lt;BR /&gt;}));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;app.get('/generate_refresh_token', (req, res) =&amp;gt; {&lt;BR /&gt;// Generate refresh and initial access token.&lt;/P&gt;&lt;P&gt;let code = req.query.code;&lt;BR /&gt;if(code != " ")&lt;BR /&gt;{&lt;BR /&gt;console.log('Code'+code);&lt;BR /&gt;let url = "&lt;A href="https://api.hubapi.com/oauth/v1/token" target="_blank"&gt;https://api.hubapi.com/oauth/v1/token&lt;/A&gt;";&lt;BR /&gt;let postData = {&lt;BR /&gt;grant_type:"authorization_code",&lt;BR /&gt;client_id:process.env.CLIENT_ID,&lt;BR /&gt;client_secret:process.env.CLIENT_SECRTET,&lt;BR /&gt;redirect_uri:"&lt;A href="https://localhost:3000/generate_refresh_token" target="_blank"&gt;https://localhost:3000/generate_refresh_token&lt;/A&gt;",&lt;BR /&gt;code: code&lt;BR /&gt;};&lt;BR /&gt;axios.post(url, postData, {&lt;BR /&gt;headers: {&lt;BR /&gt;'Content-Type': 'application/x-www-form-urlencoded',&lt;BR /&gt;}})&lt;BR /&gt;.then(response =&amp;gt; {&lt;BR /&gt;// Handle the API response&lt;BR /&gt;console.log(response);&lt;BR /&gt;//return response;&lt;BR /&gt;res.redirect('&lt;A href="https://localhost:3000/create_custom_action" target="_blank"&gt;https://localhost:3000/create_custom_action&lt;/A&gt;');&lt;BR /&gt;})&lt;BR /&gt;.catch(error =&amp;gt; {&lt;BR /&gt;// Handle errors&lt;BR /&gt;console.error(error);&lt;BR /&gt;});&lt;BR /&gt;}&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;app.get('/create_custom_action', (req, res) =&amp;gt; {&lt;BR /&gt;async function call_api(){&lt;/P&gt;&lt;P&gt;const ExtensionActionDefinitionInput = {&lt;BR /&gt;actionUrl: "&lt;A href="https://localhost:3000/create_custom_action" target="_blank"&gt;https://localhost:3000/create_custom_action&lt;/A&gt;",&lt;BR /&gt;inputFields: [&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetName",&lt;BR /&gt;"type": "string",&lt;BR /&gt;"fieldType": "text"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["STATIC_VALUE"],&lt;BR /&gt;"isRequired": true&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetColor",&lt;BR /&gt;"type": "enumeration",&lt;BR /&gt;"fieldType": "select",&lt;BR /&gt;"options": [&lt;BR /&gt;{ "value": "red", "label": "Red" },&lt;BR /&gt;{ "value": "blue", "label": "Blue" },&lt;BR /&gt;{ "value": "green", "label": "Green" }&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["STATIC_VALUE"]&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetOwner",&lt;BR /&gt;"type": "enumeration",&lt;BR /&gt;"referencedObjectType": "OWNER"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["STATIC_VALUE"]&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetQuantity",&lt;BR /&gt;"type": "number"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["OBJECT_PROPERTY"]&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;labels: {&lt;BR /&gt;"en": {&lt;BR /&gt;"actionName": "Create Widget - Example 1",&lt;BR /&gt;"actionDescription": "This action will create a new widget in our system. So cool!",&lt;BR /&gt;"actionCardContent": "Create widget {{widgetName}}",&lt;BR /&gt;"inputFieldLabels": {&lt;BR /&gt;"widgetName": "Widget Name",&lt;BR /&gt;"widgetColor": "Widget Color",&lt;BR /&gt;"widgetOwner": "Widget Owner",&lt;BR /&gt;"widgetQuantity": "Widget Quantity"&lt;BR /&gt;},&lt;BR /&gt;"inputFieldDescriptions": {&lt;BR /&gt;"widgetName": "Enter the full widget name. I support &amp;lt;a href=\"&lt;A href="https://hubspot.com\" target="_blank"&gt;https://hubspot.com\&lt;/A&gt;"&amp;gt;links&amp;lt;/a&amp;gt; too.",&lt;BR /&gt;"widgetColor": "This is the color that will be used to paint the widget."&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;objectTypes: ["CONTACT", "DEAL"]&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var output_response = {&lt;BR /&gt;error : "Something went wrong"&lt;BR /&gt;}&lt;BR /&gt;try {&lt;BR /&gt;const apiResponse = await hubspotClient.automation.actions.definitionsApi.create(appId, ExtensionActionDefinitionInput);&lt;BR /&gt;//console.log(JSON.stringify(apiResponse, null, 2));&lt;BR /&gt;output_response = JSON.stringify(apiResponse, null, 2);&lt;/P&gt;&lt;P&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;/P&gt;&lt;P&gt;output_response = JSON.stringify(e.response, null, 2);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;res.json(output_response);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;call_api();&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;const server = https.createServer(options, app);&lt;BR /&gt;const port = 3000; // or any other port you prefer&lt;/P&gt;&lt;P&gt;server.listen(port, () =&amp;gt; {&lt;BR /&gt;console.log(`Server running on &lt;A href="https://localhost:${port" target="_blank"&gt;https://localhost:${port&lt;/A&gt;}`);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Richa Mandhan&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2023 04:47:03 GMT</pubDate>
    <dc:creator>RMandhan</dc:creator>
    <dc:date>2023-06-19T04:47:03Z</dc:date>
    <item>
      <title>Custom workflow action</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/807774#M64947</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created one custom app in node.js to create a custom workflow action and I have successfully integrated that app with the HubSpot public app. I have also installed this public app in &lt;STRONG&gt;Test HubSpot Account &lt;/STRONG&gt;and it is visible in connected apps section in settings section. I have to use this installed public app in workflow. I have checked this app in connected apps section in workflow action section but it is not available there. It is not visible in workflow section. Is there any way to show the workflow custom action in the workflow section ?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 11:00:59 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/807774#M64947</guid>
      <dc:creator>RMandhan</dc:creator>
      <dc:date>2023-06-15T11:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom workflow action</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/808654#M64996</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/536145"&gt;@RMandhan&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Thanks for including all those details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One question that I don't see answered in your post,&amp;nbsp;have you created your custom workflow action as per the guide here: &lt;A href="https://developers.hubspot.com/docs/api/automation/custom-workflow-actions" target="_blank" rel="noopener"&gt;Custom Workflow Actions&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks! — Jaycee&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 22:00:55 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/808654#M64996</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-06-16T22:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Custom workflow action</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/808916#M65005</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes , I have created the workflow action as per he custom workflow action guide.&lt;/P&gt;&lt;P&gt;Below is the code -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// server.js&lt;BR /&gt;const express = require('express');&lt;BR /&gt;const https = require('https');&lt;BR /&gt;const fs = require('fs');&lt;BR /&gt;const customActionHandler = require('./actionHandler');&lt;BR /&gt;const bodyParser = require('body-parser');&lt;BR /&gt;const axios = require('axios');&lt;BR /&gt;require('dotenv').config();&lt;/P&gt;&lt;P&gt;const options = {&lt;BR /&gt;key: fs.readFileSync('./server.key'),&lt;BR /&gt;cert: fs.readFileSync('./server.cert')&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;// Create an Express app&lt;BR /&gt;const app = express();&lt;/P&gt;&lt;P&gt;const hubspot = require('@hubspot/api-client');&lt;BR /&gt;const hubspotClient = new hubspot.Client({"developerApiKey":process.env.HUBSPOT_API_KEY});&lt;/P&gt;&lt;P&gt;const appId = process.env.APP_ID;&lt;BR /&gt;const limit = undefined;&lt;BR /&gt;const after = undefined;&lt;BR /&gt;const archived = false;&lt;/P&gt;&lt;P&gt;app.use(bodyParser.urlencoded({&lt;BR /&gt;extended: true&lt;BR /&gt;}));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;app.get('/generate_refresh_token', (req, res) =&amp;gt; {&lt;BR /&gt;// Generate refresh and initial access token.&lt;/P&gt;&lt;P&gt;let code = req.query.code;&lt;BR /&gt;if(code != " ")&lt;BR /&gt;{&lt;BR /&gt;console.log('Code'+code);&lt;BR /&gt;let url = "&lt;A href="https://api.hubapi.com/oauth/v1/token" target="_blank"&gt;https://api.hubapi.com/oauth/v1/token&lt;/A&gt;";&lt;BR /&gt;let postData = {&lt;BR /&gt;grant_type:"authorization_code",&lt;BR /&gt;client_id:process.env.CLIENT_ID,&lt;BR /&gt;client_secret:process.env.CLIENT_SECRTET,&lt;BR /&gt;redirect_uri:"&lt;A href="https://localhost:3000/generate_refresh_token" target="_blank"&gt;https://localhost:3000/generate_refresh_token&lt;/A&gt;",&lt;BR /&gt;code: code&lt;BR /&gt;};&lt;BR /&gt;axios.post(url, postData, {&lt;BR /&gt;headers: {&lt;BR /&gt;'Content-Type': 'application/x-www-form-urlencoded',&lt;BR /&gt;}})&lt;BR /&gt;.then(response =&amp;gt; {&lt;BR /&gt;// Handle the API response&lt;BR /&gt;console.log(response);&lt;BR /&gt;//return response;&lt;BR /&gt;res.redirect('&lt;A href="https://localhost:3000/create_custom_action" target="_blank"&gt;https://localhost:3000/create_custom_action&lt;/A&gt;');&lt;BR /&gt;})&lt;BR /&gt;.catch(error =&amp;gt; {&lt;BR /&gt;// Handle errors&lt;BR /&gt;console.error(error);&lt;BR /&gt;});&lt;BR /&gt;}&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;app.get('/create_custom_action', (req, res) =&amp;gt; {&lt;BR /&gt;async function call_api(){&lt;/P&gt;&lt;P&gt;const ExtensionActionDefinitionInput = {&lt;BR /&gt;actionUrl: "&lt;A href="https://localhost:3000/create_custom_action" target="_blank"&gt;https://localhost:3000/create_custom_action&lt;/A&gt;",&lt;BR /&gt;inputFields: [&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetName",&lt;BR /&gt;"type": "string",&lt;BR /&gt;"fieldType": "text"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["STATIC_VALUE"],&lt;BR /&gt;"isRequired": true&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetColor",&lt;BR /&gt;"type": "enumeration",&lt;BR /&gt;"fieldType": "select",&lt;BR /&gt;"options": [&lt;BR /&gt;{ "value": "red", "label": "Red" },&lt;BR /&gt;{ "value": "blue", "label": "Blue" },&lt;BR /&gt;{ "value": "green", "label": "Green" }&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["STATIC_VALUE"]&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetOwner",&lt;BR /&gt;"type": "enumeration",&lt;BR /&gt;"referencedObjectType": "OWNER"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["STATIC_VALUE"]&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition": {&lt;BR /&gt;"name": "widgetQuantity",&lt;BR /&gt;"type": "number"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes": ["OBJECT_PROPERTY"]&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;labels: {&lt;BR /&gt;"en": {&lt;BR /&gt;"actionName": "Create Widget - Example 1",&lt;BR /&gt;"actionDescription": "This action will create a new widget in our system. So cool!",&lt;BR /&gt;"actionCardContent": "Create widget {{widgetName}}",&lt;BR /&gt;"inputFieldLabels": {&lt;BR /&gt;"widgetName": "Widget Name",&lt;BR /&gt;"widgetColor": "Widget Color",&lt;BR /&gt;"widgetOwner": "Widget Owner",&lt;BR /&gt;"widgetQuantity": "Widget Quantity"&lt;BR /&gt;},&lt;BR /&gt;"inputFieldDescriptions": {&lt;BR /&gt;"widgetName": "Enter the full widget name. I support &amp;lt;a href=\"&lt;A href="https://hubspot.com\" target="_blank"&gt;https://hubspot.com\&lt;/A&gt;"&amp;gt;links&amp;lt;/a&amp;gt; too.",&lt;BR /&gt;"widgetColor": "This is the color that will be used to paint the widget."&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;objectTypes: ["CONTACT", "DEAL"]&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var output_response = {&lt;BR /&gt;error : "Something went wrong"&lt;BR /&gt;}&lt;BR /&gt;try {&lt;BR /&gt;const apiResponse = await hubspotClient.automation.actions.definitionsApi.create(appId, ExtensionActionDefinitionInput);&lt;BR /&gt;//console.log(JSON.stringify(apiResponse, null, 2));&lt;BR /&gt;output_response = JSON.stringify(apiResponse, null, 2);&lt;/P&gt;&lt;P&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;/P&gt;&lt;P&gt;output_response = JSON.stringify(e.response, null, 2);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;res.json(output_response);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;call_api();&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;const server = https.createServer(options, app);&lt;BR /&gt;const port = 3000; // or any other port you prefer&lt;/P&gt;&lt;P&gt;server.listen(port, () =&amp;gt; {&lt;BR /&gt;console.log(`Server running on &lt;A href="https://localhost:${port" target="_blank"&gt;https://localhost:${port&lt;/A&gt;}`);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Richa Mandhan&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 04:47:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/808916#M65005</guid>
      <dc:creator>RMandhan</dc:creator>
      <dc:date>2023-06-19T04:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom workflow action</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/836441#M66569</link>
      <description>&lt;P&gt;Did you figure this out? I'm experiencing the same issue where the custom action is not visible in the test account.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 06:41:35 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/836441#M66569</guid>
      <dc:creator>zomer</dc:creator>
      <dc:date>2023-08-18T06:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Custom workflow action</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/836453#M66572</link>
      <description>&lt;P&gt;Yes , I found the solution for this,&amp;nbsp; You need to add &lt;STRONG&gt;published : true&amp;nbsp;&lt;/STRONG&gt;key and value in you workflow action definition. Like this -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//&lt;BR /&gt;{&lt;BR /&gt;"actionUrl":"&lt;A href="https://webhook.site/94d09471-6f4c-4a7f-bae2-c9a585dd41e0" target="_blank"&gt;https://webhook.site/94d09471-6f4c-4a7f-bae2-c9a585dd41e0&lt;/A&gt;",&lt;BR /&gt;"objectTypes":[&lt;BR /&gt;"CONTACT"&lt;BR /&gt;],&lt;BR /&gt;"inputFields":[&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition":{&lt;BR /&gt;"name":"staticInput",&lt;BR /&gt;"type":"string",&lt;BR /&gt;"fieldType":"text"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes":[&lt;BR /&gt;"STATIC_VALUE"&lt;BR /&gt;],&lt;BR /&gt;"isRequired":true&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition":{&lt;BR /&gt;"name":"objectInput",&lt;BR /&gt;"type":"string",&lt;BR /&gt;"fieldType":"text"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes":[&lt;BR /&gt;"OBJECT_PROPERTY"&lt;BR /&gt;],&lt;BR /&gt;"isRequired":true&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition":{&lt;BR /&gt;"name":"optionsInput",&lt;BR /&gt;"type":"enumeration",&lt;BR /&gt;"fieldType":"select",&lt;BR /&gt;"optionsUrl":"&lt;A href="https://webhook.site/94d09471-6f4c-4a7f-bae2-c9a585dd41e0" target="_blank"&gt;https://webhook.site/94d09471-6f4c-4a7f-bae2-c9a585dd41e0&lt;/A&gt;"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes":[&lt;BR /&gt;"STATIC_VALUE"&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"inputFieldDependencies":[&lt;BR /&gt;{&lt;BR /&gt;"dependencyType":"SINGLE_FIELD",&lt;BR /&gt;"dependentFieldNames":[&lt;BR /&gt;"objectInput"&lt;BR /&gt;],&lt;BR /&gt;"controllingFieldName":"staticInput"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"outputFields":[&lt;BR /&gt;{&lt;BR /&gt;"typeDefinition":{&lt;BR /&gt;"name":"myOutput",&lt;BR /&gt;"type":"string",&lt;BR /&gt;"fieldType":"text"&lt;BR /&gt;},&lt;BR /&gt;"supportedValueTypes":[&lt;BR /&gt;"STATIC_VALUE"&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"objectRequestOptions":{&lt;BR /&gt;"properties":[&lt;BR /&gt;"email"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"labels":{&lt;BR /&gt;"en":{&lt;BR /&gt;"inputFieldLabels":{&lt;BR /&gt;"staticInput":"Static Input",&lt;BR /&gt;"objectInput":"Object Property Input",&lt;BR /&gt;"optionsInput":"External Options Input"&lt;BR /&gt;},&lt;BR /&gt;"actionName":"My Extension",&lt;BR /&gt;"actionDescription":"My Extension Description",&lt;BR /&gt;"appDisplayName":"My App Display Name",&lt;BR /&gt;"actionCardContent":"My Action Card Content"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;"functions":[&lt;BR /&gt;{&lt;BR /&gt;"functionType":"POST_ACTION_EXECUTION",&lt;BR /&gt;"functionSource":"exports.main = (event, callback) =&amp;gt; {\r\n callback({\r\n outputFields: {\r\n myOutput: \"example output value\"\r\n }\r\n });\r\n}"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"functionType":"POST_FETCH_OPTIONS",&lt;BR /&gt;"functionSource":"exports.main = (event, callback) =&amp;gt; {\r\n callback({\r\n \"options\": [{\r\n \"label\": \"Big Widget\",\r\n \"description\": \"Big Widget\",\r\n \"value\": \"10\"\r\n },\r\n {\r\n \"label\": \"Small Widget\",\r\n \"description\": \"Small Widget\",\r\n \"value\": \"1\"\r\n }\r\n ]\r\n });\r\n}"&lt;BR /&gt;}&lt;BR /&gt;],&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;published : true&lt;/STRONG&gt;&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 07:12:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/836453#M66572</guid>
      <dc:creator>RMandhan</dc:creator>
      <dc:date>2023-08-18T07:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Custom workflow action</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/843702#M67114</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/536145"&gt;@RMandhan&lt;/a&gt;&amp;nbsp;- how are you testing the action? I have a test account where I installed my test app, but I can't create workflows without upgrading my test account where the app is installed.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 14:51:01 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-workflow-action/m-p/843702#M67114</guid>
      <dc:creator>YusriM</dc:creator>
      <dc:date>2023-09-01T14:51:01Z</dc:date>
    </item>
  </channel>
</rss>

