Get an automation by id.
1 | curl -X GET \ |
3 | -H 'Authorization: Basic base64encodedauthhere' |
01 | 200 OK |
02 | { |
03 | "cardAutomation" : { |
04 | "id" : "7795679304" , |
05 | "boardId" : "917601939" , |
06 | "userId" : "902179392" , |
07 | "description" : "Post to Slack when a Card is ready for testing" , |
08 | "enabled" : true , |
09 | "events" : [ |
10 | "movedTo" |
11 | ], |
12 | "filter" : { |
13 | "cardTypes" : [], |
14 | "lanes" : [ |
15 | "918189498" |
16 | ], |
17 | "priorities" : [], |
18 | "tags" : [] |
19 | }, |
20 | "action" : { |
21 | "type" : "postToSlack" , |
22 | "params" : { |
23 | "url" : "https://my-incoming-slack-url" , |
24 | "messagePrefix" : "Ready for testing" , |
25 | "includeDescription" : false |
26 | } |
27 | }, |
28 | "hasSecrets" : false |
29 | } |
30 | } |