Questions tagged [project-online]
52 questions
14
votes
1 answer
How to access the Project Server REST API using Azure AD App permissions?
I have a standalone web application (not an add-in) and I would like to access Project Server PWA oData from this web application without using the PWA username/password combination.
I can do this for SharePoint oData by registering my web app in…

whatsinaname
- 186
- 9
5
votes
2 answers
Microsoft Project Online SDK API/REST API Support
I want to create/update project in microsoft project online using some reference data. Is there REST API or SDK available? Especially for Java clients?

Rakesh Jadhav
- 51
- 1
- 1
- 2
3
votes
1 answer
Using CSOM to update multiple tasks with only 1 project publish
I have the following code that updates certain task fields. The problem with this code is that I have to publish an entire project after updating each task one-by-one. So for example, if I had 500 tasks to update, the project would have to be…

Moon
- 33,439
- 20
- 81
- 132
2
votes
0 answers
How to get the ProjectContext after acquiring a Sharepoint ClientContext through multi factor authentication?
I would like to interact with Project Onine through CSOM/C#, for a client which has MFA enabled. With the snippet below I can get through the sharepoint MFA I think (the debugger progresses past those lines), but how then do I get the context for…

Bram de Vries
- 21
- 1
2
votes
0 answers
Alert me Project Online EventHandlers on TimesheetUpdated not fired.
I got the following scenario:
An Office 365 sharepoint PWA site.
A WCF instance deployed on a IIS server at a Server A with a service that inherids TimesheetEventReceiver and implements methods OnUpdatedRemote and OnUpdated.
I registered the…

OriolBG
- 2,031
- 2
- 18
- 21
1
vote
1 answer
Project Online Authenticate OData Feed using Azure AD and Postman
I have recently spent a substantial amount of time determining how to authenticate an OData feed from Project Online using Azure AD and Postman. There are many posts in different forums about this, but I wasn't able to find a single post that gave…

gwruck
- 341
- 2
- 9
1
vote
0 answers
Project Online - access project data and custom list in C# application
I've been asked to pull some data from our MS Project online instance. I have worked out how to register an app and i've been able to connect to get some data with
Web web = context.Web;
context.Load(web.Lists,
lists =>…

Pixelstiltskin
- 332
- 4
- 16
1
vote
0 answers
Microsoft Project Online - Rest API Get Token
I want to read projects and tasks from my Laravel application from Microsoft Project Online.
I've searched everywhere and couldn't find a documentation on how to login/authenticate my users.
Users on my web app should be able to link their Microsoft…

marcmaalouly
- 33
- 5
1
vote
0 answers
Fetch all the task links of a Project with Start - Id and End - Id of every task link
My requirement is to fetch all the task links of a Project with Start - Id and End - Id of every task link.
Currently I'm only able to fetch LinkId, ProjUid, Lag and Dependency type using REST API -…

georgyfelix
- 368
- 2
- 13
1
vote
2 answers
Microsoft Power Platform Custom Connector to Project Server API - OAuth 2.0 Settings
When building a custom connector from powerapps/powerautomate to the Project Server API where can I find out what the OAuth settings should be? Settings include:
Identity Provider
Client id
Client secret
Login URL
Tenant ID
Resource URL
Scope…

Eric Christoph
- 348
- 1
- 12
1
vote
0 answers
Project CSOM get remaining task work for user
I'm making a Web API to get data from Project Online to my app in C#. I already done my connection and load my timesheets with no problem. Now my team leader asked me to get the total work scheduled for the user logged in, remaining work and work…

Bruno Ferreira
- 130
- 7
1
vote
1 answer
How to programmatically save a copy of a Microsoft Project Online project?
I need to save local copies of all my projects stored in my PWA instance at Microsoft Project Online frequently. I have hundreds of them so doing it manually is not an option.
I've been able to connect to the PWA instance with Project Server CSOM…

John Meyers
- 21
- 5
1
vote
0 answers
Azure Logic App returns 404 with valid Project Online ODATA query using /_api/Projectdata
I want to filter and select Project Online data using Enterprise Custom Fields (ECF) in an Azure Logic App. I start with the out-of-the-box Project Online connector to trigger on project publish, then list project and task details.
Using the…

John Palmer
- 1,032
- 1
- 9
- 23
1
vote
2 answers
Fetching ProjectSiteUrl from Project Online not working
I have written the following code to get ProjectSiteUrl property from a project Published in Project Online
using (ProjectContext projContext = new ProjectContext(pwaUrl))
{
using (SecureString securePassword = new SecureString())
{
…

Abdul Hameed
- 1,025
- 12
- 27
1
vote
0 answers
Converting LookupEntry to LookupMask in ProjectServer.Client Library
So I can't wrap my head around this, I tried different typecasting and trying to instantiate the LookupEntry to a LookupMask but no avail.
I need to get the MaskType from the LookupMask, that is connected to LookupEntry
So the problem is I can't…

Franz Justin Buenaventura
- 366
- 3
- 20