Does Workday have any API to put tasks to employee inbox? - workday-api

I'm looking for a solution to assign a task to the employee through Workday API. Does Workday have any API to put tasks to employee inbox?

Related

Workday API - GET_PAYMENT_ELECTION_ENROLLMENTS

We are using Informatica Intelligent Cloud Services (IICS) to connect to Workday (WD) and retrieve the information via API.
We are trying to get the bank details for a specific set of employees via the Cash Management ---> GET_PAYMENT_ELECTION_ENROLLMENTS
However there is no REQUEST CRITERIA available for this for us to filter on say Nationality or City.
Is it possible to have a API code with request criteria for this operation.
Thanks
Anand
There's not currently Request Criteria, so you would need to build a Report and make a REST call.

Acumatica - Create time cards using the API

I have successfully created Time Activities with the Rest API but now my customer wants to see those activities associated in a Time Card. I have been looking at the documentation but I haven't found how to create a time card and then associate activities to it.
Thanks
You would need to create your own end-point object of the screen on the same Web Service End-Point you call. I would suggest running all the activities and then create a timecard associated with the employee, the activities will then pull through based on the date of the activity within the period of the timecard.

How can I change a field value when SharePoint workflow is cancelled?

I am using SharePoint 2010 workflow template to create approval workflow for my organization. One thing I am stuck at is how to update a field when the users cancel the workflow. It does not seems like there is any workflow parameter that capture the workflow status when it is cancelled by user.
Have a look at the Workflow History List:
http://[servername]/[sitename]/lists/Workflow%20History

Does Asana webhooks only take tasks and projects as resources?

I want to create a webhook that will take a workspace as a resource instead of a task or project.
Per Asana's documentation, when creating a webhook, you're required to enter in a resource ID, which can be either a task or a project.

Office 365 REST API list resources (meeting rooms)

I have a question about Office365 REST API. Is there a way to obtain list of resources - meeting room calendars.
I can only get meetings that will take place in room if I know meeting room username.
https://outlook.office365.com/api/v1.0/users/room1#xxxx.onmicrosoft.com/calendars
Can I list all meeting rooms and obtain their calendars?
You can use the Azure AD Graph API to query the list of users. However, there is no field in the API that marks a user as being a conference room. Depending on how your organization creates and names rooms, maybe you can find a filter that will only return rooms.
After that, it's just a matter of implementing the client credential flow so you can access multiple mailboxes.