Skip to content

Latest commit

 

History

History

trellocard

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Trello Card

Create a new Trello card

Installation

flogo install github.com/retgits/flogo-components/activity/trellocard

Link for flogo web:

https://github.com/retgits/flogo-components/activity/trellocard

Schema

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"
        }
    ]
}

Inputs

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

Ouputs

Output Description
result The result (either OK or the error that was generated by the Trello API)