APIs & Integrations

biahn
Participant | Diamond Partner
Participant | Diamond Partner

workflow extensions cannot deleted

SOLVE

https://developers.hubspot.com/docs/methods/workflow-extensions/workflow-extensions-overview

 

definition id : 1455

appid : 216918

 

DELETE https://api.hubapi.com/automationextensions/v1/definitions/1455?hapikey=<<hapikey>>&applicationId=21...

 

response status : 204 

but, call fetch api, it still appears to have been not deleted.

why didn't work?

 

 

0 Upvotes
1 Accepted solution
biahn
Solution
Participant | Diamond Partner
Participant | Diamond Partner

workflow extensions cannot deleted

SOLVE

i solved this problem.

After checking an hour later, workflow extensions was deleted.

 

View solution in original post

2 Replies 2
rgriss
Participant

workflow extensions cannot deleted

SOLVE

Perhaps this will help someone else: I had a similar maddening experience for days.  Following the docs perfectly, my DELETE request appeared to be successful, but the workflow extensions were never archived as expected.  My solution was to PATCH like this:

PATCH https://api.hubapi.com/automation/v4/actions/{appid}/{actionid}
body : { 'published' : false } 

 

This still does not "delete" the action, but at least it yielded the result I was looking for: the "unpublished" action is no longer visible in the client.

0 Upvotes
biahn
Solution
Participant | Diamond Partner
Participant | Diamond Partner

workflow extensions cannot deleted

SOLVE

i solved this problem.

After checking an hour later, workflow extensions was deleted.