Get a specified card automation

GET /io/board/:boardId/automation/:automationId

Get an automation by id.

Example Request

1curl -X GET \
3  -H 'Authorization: Basic base64encodedauthhere'

Example successful response

01200 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}