PSOhub API - Project Managers
Learn how to find accounts that are eligible to be a project manager in a project
In PSOhub, project managers are the people that have the access level where they can manage a project and related data. To find them, you can use this endpoint.
Get all project managers
To get all project managers, you can use the following endpoint
GET https://www.psohubapp.com/rest/psohubapi/v1/accounts/projectmanagers
You can use the limit parameter to determine the number of records to return. If you don't send this, we will send back 50 contacts.
If successful, the response will be this
[
{
"Name": "Art Volker",
"Email": "art@psohub.com",
"ObjectID": 39406496739491946
},
{
"Name": "Tim Helco",
"Email": "tim@hello.com",
"ObjectID": 39406496739491949
},
{
"Name": "Betty White",
"Email": "betty@test123.com",
"ObjectID": 39406496739491951
}
]
Find a project manager
If you need to find a specific project manager you can use the email parameter to find that person quickly
GET https://www.psohubapp.com/rest/psohubapi/v1/accounts/projectmanagers?email=tim@hello.com
If found, the response will return the record for tim@hello.com