Create a new Trello card
flogo install github.com/retgits/flogo-components/activity/trellocard
Link for flogo web:
https://github.com/retgits/flogo-components/activity/trellocard
Inputs and Outputs:
{
"inputs": [
{
"name": "token",
"type": "string",
"required": true
},
{
"name": "appkey",
"type": "string",
"required": true
},
{
"name": "list",
"type": "string",
"required": true
},
{
"name": "position",
"type": "string",
"allowed": [
"top",
"bottom"
],
"required": true
},
{
"name": "title",
"type": "string",
"required": true
},
{
"name": "description",
"type": "string"
}
],
"outputs": [
{
"name": "result",
"type": "string"
}
]
}
Input | Description |
---|---|
token | Your Trello App token |
appkey | Your Trello App key |
list | The ID of the list you want to send the card to |
position | The position of the new card on the list (can be either top or bottom ) |
title | The title for your new card |
description | The description you want to add to the card |
Output | Description |
---|---|
result | The result (either OK or the error that was generated by the Trello API) |