Trello Integration
Update Trello Action
API Documentation
Activity
- In-Game Tracking
- Users
- Sessions
- GETRetrieve Leaderboard
Order Logging
Staff
Workspace
- GETRetrieve a Workspace
- POSTUpdate a Workspace
- GETList Games
- POSTCreate Game
- DELDelete a Game
- GETList Roles
- POSTCreate a Role
- PUTUpdate Role
- DELDelete a Role
- GETList logbook templates
- GETRetrieve Logbook Template
- POSTCreate a Logbook Template
- PATCHUpdate a Logbook Template
- DELDelete a Logbook Template
- GETRetrieve GApps Config
- POSTSet GApps Service Account
- PATCHUpdate GApps Config
- DELDelete GApps Config
- GETGet Trello Config
- GETGet Trello boards
- POSTSet Trello board
- POSTSet Trello format
- DELDisconnect Trello board
- DELDelete Trello Config
- GETRetrieve Schedules
- POSTCreate a Schedule
- POSTUpdate a Schedule
Trello Integration
Bans (Invite Only)
Connections
Trello Integration
Update Trello Action
Update an action
PATCH
/
workspace
/
trello
/
{workspaceId}
/
actions
/
{actionId}
curl --request PATCH \
--url https://api.hyra.io/workspace/trello/{workspaceId}/actions/{actionId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '[
{
"type": "trigger",
"group": "<string>",
"name": "<string>",
"fields": [
{
"type": "regex",
"value": "<string>",
"reset_type": "never",
"after": 123,
"on": 123,
"grace": 123
}
]
}
]'
{
"_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"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json · object[]
Available options:
trigger
, action
Response
200 - application/json
Successful response
curl --request PATCH \
--url https://api.hyra.io/workspace/trello/{workspaceId}/actions/{actionId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '[
{
"type": "trigger",
"group": "<string>",
"name": "<string>",
"fields": [
{
"type": "regex",
"value": "<string>",
"reset_type": "never",
"after": 123,
"on": 123,
"grace": 123
}
]
}
]'
{
"_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"
}