Skip to main content

Hi,

Can I automate API commands?

For example if status changed > an API command will be executed

Hello there @shay.butran,


You can create a custom action as explained here for that.


I hope that helps!


Cheers,

Matias


Thank Matias!

I’m trying to build a custom automation:

trigger: when Item created

Action: Run API request

API request for example:

POST https://xxxx/xxxx/xxxx/xxx

Body:

{

“xxxx” : Column value (projact) from the item

}


how can i do it?


Hello again @shay.butran,


You can create the custom action as explained in the link above and then an endpoint on your end (you need to have an endpoint on your end for this) would be called when the event of the trigger occurs. When your endpoint is called, you can then send the HTTP request using the API.


Cheers,

Matias


Reply