Module: ChatWork::Client::MyTaskMethods
- Included in:
- ChatWork::Client
- Defined in:
- lib/chatwork/client/my_task_methods.rb
Instance Method Summary collapse
-
#get_my_tasks(assigned_by_account_id: nil, status: nil) {|response_body, response_header| ... } ⇒ Array<Hashie::Mash>
Get the list of all unfinished tasks.
Instance Method Details
#get_my_tasks(assigned_by_account_id: nil, status: nil) {|response_body, response_header| ... } ⇒ Array<Hashie::Mash>
Get the list of all unfinished tasks
(*This method returns up to 100 entries. We are planning to implement pagination to support larger number of data retrieval)
38 39 40 |
# File 'lib/chatwork/client/my_task_methods.rb', line 38 def get_my_tasks(assigned_by_account_id: nil, status: nil, &block) get("/my/tasks", assigned_by_account_id: assigned_by_account_id, status: status, &block) end |