[Status: Launched! ๐Ÿš€] API need to show Flexible effort allocated by assignees.

Now API doesn't show Flexible effort allocated by assignees. However, you can still use the GET/tasks/{taskId} endpoint with fields=["effortAllocation"] parameter to check total allocated effort.ย 

I used the following query in my test account to get this information: GET/ https://www.wrike.com/api/v4/tasks/IEADG63PKQYWBF4C?fields=["effortAllocation

Could you please extend with the developers somewhere-somehow the mentioned API with this information?

To get back an array instead of just an object which contains the relevant informations (effort allocated by assignees, mode, total effort, percentage).

Upvote 66
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos
16 comments

Welcome to the Community, Monika Mandi ๐Ÿ‘‹ Thanks a lot for sharing this feedback, I'm passing it on to the team now. Here's a post that explains how we work with Product Feedback; please let me know if you have any questions!ย 
If you'd like to know what this Community has to offer, please check out ourย New to Community forumย ๐Ÿ™‚

Lisa Community Team at Wrike Wrike Product Manager Become a Wrike expert with Wrike Discover

Lisa Wrike Team member Become a Wrike expert with Wrike Discover

1
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Hi Lisa,

we have the same problem here. We need the all effortAllocation per day and task. But the Wrike PAI have no endpoint to get this information. This post ist from 2022, you have some news for us about this feature reqeust?

ย 

Thanks a lot.

1
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos
Avatar
Juan

Hi Daniel Paul, welcome to the Community! I have opened a ticket with our Support Team so that one of our experts can provide you with an accurate reply, you will be contacted very soon ๐Ÿ‘

Allow me to mention that youย can visit our New to Community forum to get the most out of your experience with our Community ๐Ÿ™‚

ย 

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

This is really important for us, too!

ย 

1
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Thank you for supporting this suggestion Andrew Moore, and welcome to the Community ๐Ÿ‘‹ If you'd like to check out what these forums have to offer, I'd highly recommend our New to Community forum ๐Ÿ™‚ย 

Lisa Community Team at Wrike Wrike Product Manager Become a Wrike expert with Wrike Discover

Lisa Wrike Team member Become a Wrike expert with Wrike Discover

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

this is important for me too. i just upvoted.

1
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Really key for us.

Alternative proposal would be to make 2 new options in the Enum of the "fields" parameter to keep the API backward compatible with existing integrations:

Today we can use in the request: fields=[responsibleIds,responsiblePlaceholderIds]

Getting back such a json (removed some fields to make it shorter as example):

{
ย ย ย ย ย ย ย ย ย ย ย ย "id":ย "IEAFL755KQ7PR3PG",
ย ย ย ย ย ย ย ย ย ย ย ย "title":ย "Our task",
ย ย ย ย ย ย ย ย ย ย ย ย "responsibleIds":ย ["KUAO5H6E","KUAO5H6F"],
ย ย ย ย ย ย ย ย ย ย ย ย "responsiblePlaceholderIds":ย ["IEAFL755NMAAINMT"]
}

We might get new request parameters to get the outcome more complete: fields=[responsibleIdsWithAllocation,responsiblePlaceholderIdsWithAllocation]

Getting back a json like this one for instance (shorter for same reason):


{
ย ย ย ย ย ย ย ย ย ย ย ย "id":ย "IEAFL755KQ7PR4PG",
ย ย ย ย ย ย ย ย ย ย ย ย "title":ย "Our task",
ย ย ย ย ย ย ย ย ย ย ย ย "responsibleIdsWithAllocation":ย [
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย {
ย  ย  ย  ย  ย  ย  ย  ย  ย  ย  "id": "KUAO5H6E",
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  "effortAllocation":ย 60
ย ย ย ย ย ย ย ย ย ย ย ย  ย ย  },
ย ย ย ย ย ย ย ย ย ย ย ย  ย ย  {
ย  ย  ย  ย  ย  ย  ย  ย  ย  ย  "id": "KUAO5H6F",
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  "effortAllocation":ย 180
ย ย ย ย ย ย ย ย ย ย ย ย  ย ย  }
ย ย ย ย ย ย ย ย ย ย ย ย ],
ย ย ย ย ย ย ย ย ย ย ย ย "responsiblePlaceholderIdsWithAllocation":ย [
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย {
ย  ย  ย  ย  ย  ย  ย  ย  ย  ย  "id": "IEAFL755NMAAINMT",
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  "effortAllocation":ย 120
ย ย ย ย ย ย ย ย ย ย ย ย  ย ย  }
ย  ย  ย  ย  ย  ย  ย ]
}
5
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Hi Kaori Murayama, Eric Perche, welcome to the Community ๐Ÿ‘‹

Thank you both for sharing your feedback, I'll now pass it on to our team responsible for API.

Be sure to let me know if you need help with anything else ๐Ÿ™‚

Lisa Community Team at Wrike Wrike Product Manager Become a Wrike expert with Wrike Discover

Lisa Wrike Team member Become a Wrike expert with Wrike Discover

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

This is important for us too. Need a way to see effortAllocation by assignee when Effort is in flexible mode

3
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos
Avatar
Juan

Hi Scott Taft, thank you for adding your support, I've passed your comment on to our relevant team ๐Ÿ‘

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

and? Guys, yuo can't just say: I've passed it on and that's it. Give us some feedback. Is it going to be implemented? Is it a priority? When can we expect it?ย 

ย 

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos
Avatar
Juan

Hi Andrea Calvi, welcome to the Community. I'm afraid that this suggestion has a lower number of votes, and this feature isn't on the current roadmap. If you'd like to learn more about how we process feedback, feel free to check this article.

If you have any additional questions, please let us know ๐Ÿ‘

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Hey there @... how soon do you think this item will receive a status now that it hit 60 upvotes?

CC: Monika Mandi Daniel Paul Andrew Moore Kaori Murayama Eric Perche Andrea Calvi

4
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos
Hey Scott Taft ๐Ÿ‘‹
ย 
Thank you for flagging the lack of status.
ย 
Our team is aware of this and is aiming to implement this feature by the end of the year. We've added the "Coming soon" status to this post. Rest assured, I will keep you updated as soon as I have more info on this ๐Ÿ‘
ย 
In the meantime, let me know if I can help you with anything else. Thanks!

Rohan V Community Team at Wrike Wrike Product Manager Become a Wrike expert with Wrike Discover

Rohan V Wrike Team member Become a Wrike expert with Wrike Discover

2
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Hello, has there been any update on the status of this feature?

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Hi Scott Taft! ๐Ÿ™‹๐Ÿปโ€โ™€๏ธ The API for flexible effort has been released, and the documentation can be found here.ย 

Basudha Sakshyarika Community Team at Wrike Wrike Product Manager Become a Wrike expert with Wrike Discover

Basudha Sakshyarika Wrike Team member Become a Wrike expert with Wrike Discover

0
๐Ÿ‘ Spot On ๐Ÿ’ก Innovative Approach ๐Ÿ’ช Stellar Advice โœ… Solved ๐Ÿช„ Remove Kudos

Folllowing List for Post: [Status: Launched! ๐Ÿš€] API need to show Flexible effort allocated by assignees.
[this list is visible for admins and agents only]

Top
Didnโ€™t find what you were looking for? Write new post