Get all actions
curl --request GET \
--url https://api.hyra.io/workspace/trello/{workspaceId}/actions \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"triggers": [
{
"type": "<string>",
"group": "<string>",
"name": "<string>",
"fields": [
{
"type": "<string>",
"value": "<string>",
"reset_type": "<string>",
"after": 123,
"on": 123,
"grace": 123
}
]
}
],
"workspace": "<string>",
"created_by": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object[]
.
curl --request GET \
--url https://api.hyra.io/workspace/trello/{workspaceId}/actions \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"triggers": [
{
"type": "<string>",
"group": "<string>",
"name": "<string>",
"fields": [
{
"type": "<string>",
"value": "<string>",
"reset_type": "<string>",
"after": 123,
"on": 123,
"grace": 123
}
]
}
],
"workspace": "<string>",
"created_by": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]