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

Link to this function

create_card(card)

Create a new Card

Link to this function

create_card(handle, card)

See Favro.Card.create/2.

Link to this function

create_column(column)

Create a new column

Link to this function

create_column(handle, column)

See Favro.Column.create/2.

Link to this function

create_tag(tag)

Create a new Tag

Link to this function

create_tag(handle, tag)

See Favro.Tag.create/2.

Link to this function

create_task(task)

Create a new task

Link to this function

create_task(handle, task)

See Favro.Task.create/2.

Link to this function

create_task_list(task_list)

Create a new task list

Link to this function

create_task_list(handle, task_list)

See Favro.TaskList.create/2.

Link to this function

create_widget(widget)

Create a new widget

Link to this function

create_widget(handle, widget)

See Favro.Widget.create/2.

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

Link to this function

list_cards(handle_or_opts)

See Favro.Card.list/1.

Link to this function

list_cards(handle, opts)

See Favro.Card.list/2.

List Favro columns, optionally filtering using a set of query options.

Options

  • :widget - Return only columns from the widget with the specified ID
Link to this function

list_columns(handle_or_opts)

See Favro.Column.list/1.

Link to this function

list_columns(handle, opts)

See Favro.Column.list/2.

List Favro tags, optionally filtering using a set of query options.

Options

  • :name - Return only tags with this name
Link to this function

list_tags(handle_or_opts)

See Favro.Tag.list/1.

Link to this function

list_tags(handle, opts)

See Favro.Tag.list/2.

Link to this function

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
Link to this function

list_task_lists(handle_or_opts)

See Favro.TaskList.list/1.

Link to this function

list_task_lists(handle, opts)

See Favro.TaskList.list/2.

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

Link to this function

list_tasks(handle_or_opts)

See Favro.Task.list/1.

Link to this function

list_tasks(handle, opts)

See Favro.Task.list/2.

List Favro widgets, optionally filtering using a set of query options.

Options

* `:collection` - Return only widgets from the collection with the specified ID
Link to this function

list_widgets(handle_or_opts)

See Favro.Widget.list/1.

Link to this function

list_widgets(handle, opts)

See Favro.Widget.list/2.

Create a new Favro handle

Link to this function

new(username, password, organization, hostname \\ "https://favro.com/")