Store arbitary data against a card through the Trello API? -
Store arbitary data against a card through the Trello API? -
i store arbitary info against each card in trello api (at moment single numerical value 0 100, if works i'll shift more card-related info own app on trello).
i cannot see available in api docs, correct?
i may have store comment json info in against each card. or maybe improve way?
thanks!
trello added ability store arbitrary amount of labels on each card. these labels can either color coded (which causes them show in board display in trello) or have no color (which causes them displayed on card detail display). little amounts of arbitrary info (such single number described) may reasonable alternative you.
you can create label , add together card in 1 phone call with:
post /1/cards/[card id or shortlink]/labels
(reference - https://trello.com/docs/api/card/index.html#post-1-cards-card-id-or-shortlink-labels)
if have larger amount of info store labels may not sufficient, suggest adding checklist store data. checklist items marked finish can hidden in interface. helpful in making ui little cleaner big amounts of data. if utilize each checklist item separate info object, develop flexible info construction store whatever want.
for more detail on how interact checklists , checkitems can read documentation here - https://trello.com/docs/api/checklist/index.html
trello
Comments
Post a Comment