favro v0.2.1 Favro
Provides functions for querying the Favro API
Link to this section Summary
Functions
Create a new Card
Create a new column
Create a new Tag
Create a new task
Create a new task list
Create a new widget
List Favro cards, optionally filtering using a set of query options.
List Favro columns, optionally filtering using a set of query options.
List Favro tags, optionally filtering using a set of query options.
List Favro task lists, optionally filtering using a set of query options.
List Favro tasks, optionally filtering using a set of query options.
List Favro widgets, optionally filtering using a set of query options.
Create a new Favro handle
Link to this section Functions
create_card(card)
Create a new Card
create_card(handle, card)
See Favro.Card.create/2
.
create_column(column)
Create a new column
create_column(handle, column)
create_tag(tag)
Create a new Tag
create_tag(handle, tag)
See Favro.Tag.create/2
.
create_task(task)
Create a new task
create_task(handle, task)
See Favro.Task.create/2
.
create_task_list(task_list)
Create a new task list
create_task_list(handle, task_list)
create_widget(widget)
Create a new widget
create_widget(handle, widget)
list_cards()
List Favro cards, optionally filtering using a set of query options.
Options
:collection
- Return only cards from the collection with the specified ID:widget
- Return only cards from the widget with the specified ID:column
- Return only cards from the column with the specified ID:archived
- If true, only returns cards that have been archived:unique
- If true, only returns unique cards
list_cards(handle_or_opts)
See Favro.Card.list/1
.
list_cards(handle, opts)
See Favro.Card.list/2
.
list_columns()
List Favro columns, optionally filtering using a set of query options.
Options
:widget
- Return only columns from the widget with the specified ID
list_columns(handle_or_opts)
See Favro.Column.list/1
.
list_columns(handle, opts)
See Favro.Column.list/2
.
list_tags()
List Favro tags, optionally filtering using a set of query options.
Options
:name
- Return only tags with this name
list_tags(handle_or_opts)
See Favro.Tag.list/1
.
list_tags(handle, opts)
See Favro.Tag.list/2
.
list_task_lists()
List Favro task lists, optionally filtering using a set of query options.
Options
* `:card` - Return only task lists from the card with the given ID
list_task_lists(handle_or_opts)
list_task_lists(handle, opts)
list_tasks()
List Favro tasks, optionally filtering using a set of query options.
Options
:card
- Return only tasks from the card with the given ID:task_list
- Return only tasks from the task list with the given ID
list_tasks(handle_or_opts)
See Favro.Task.list/1
.
list_tasks(handle, opts)
See Favro.Task.list/2
.
list_widgets()
List Favro widgets, optionally filtering using a set of query options.
Options
* `:collection` - Return only widgets from the collection with the specified ID
list_widgets(handle_or_opts)
See Favro.Widget.list/1
.
list_widgets(handle, opts)
See Favro.Widget.list/2
.
new()
Create a new Favro handle