Update coming soon
This module can help you to view your order's statuses realtime with Trello™ board updates. All you need to do is to set up your API key & token and grab a board ID. You can read how to set up module here.
As for now, you cannot control your Magento™ orders using Trello™ Board.
Will be released about 4th of March.
Also, this module provide simple API methods to interact with Trello™. If you want to know more, see here.
# Setting Up
To set up a module, you should log in into your admin panel (if you already logged in, you probably should log out first). Then go to system → configuration. In sidebar, find Trello API under services tab.
To set up token and access key, go to https://trello.com/app-key, copy a key ang generate token (there's a link under token description). Paste key and token to the corresponding fields.
Then, create or open in browser one of existing Trello™ boards, click the "show menu" button
if menu not opened, click "More" → "Print and Export" and then select "Export as JSON".
The JSON document will be opened in your browser, you need to copy the value of id field, it is like
id: "0123456789abcdef12345678"
, then paste that id (like 0123456789abcdef12345678
) into
Board ID field inside Order Status box.
# API Methods
# Mage::getSingleton('trello')->createCard($params)
Creates a card with following params.
Called API method: https://developers.trello.com/v1.0/reference#cards-2
# Mage::getSingleton('trello')->updateCard($cardId, $params)
Updates a card with cardId with following params.
Called API method: https://developers.trello.com/v1.0/reference#cards-1
# Card Params
Params should be passed as associative array with following keys to method:
name
(string)
Card namedesc
(string)
Card detailed description in full viewclosed
Is card makred as closedidMembers
List of members that connected to this cardidAttachmentCover
Id of attachment that used as card coveridList
Id of list to which card belongsidLabels
Id of labels (tags) for this cardidBoard
Id of board on which card should appearpos
Card position in listdue
Due datedueComplete
Mark due date as completesubscribed
Packaged with american english (en_US) and russian (ru_RU) translations.
Most of API methods are covered, as well as order helpers. Unit tests provided by EcomDev_PHPUnit.
- Sometimes order card may not be created or updated, because we hardly limit execution time to keep your store fast. This probably will be fixed in near future, as we release a scheduling module for queues.
- Add dependency for scheduled running of API calls, with TTL and retries
- Maybe using RabbitMQ
- Opposite direction API - update orders when cards updated
N.B. You can update all cards at any time using action in admin order grid.