Module: ChatWork::MyTask
- Extended by:
- EntityMethods
- Defined in:
- lib/chatwork/my_task.rb
Class Method Summary collapse
-
.get(assigned_by_account_id: nil, status: nil) ⇒ Array<Hashie::Mash>
Get the list of all unfinished tasks.
Class Method Details
.get(assigned_by_account_id: nil, status: nil) ⇒ 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)
37 38 39 |
# File 'lib/chatwork/my_task.rb', line 37 def self.get(assigned_by_account_id: nil, status: nil) _get("/my/tasks", assigned_by_account_id: assigned_by_account_id, status: status) end |