Skip to content
English
  • There are no suggestions because the search field is empty.

PSOhub API: Project Managers

Learn how to retrieve accounts eligible to be a project manager in PSOhub via the API

Published: 1 June 2026

Audience

  • Admin

Objective

This reference article covers the PSOhub API endpoints for retrieving project manager accounts. Use these endpoints to get a list of all eligible project managers or find a specific one by email.

Prerequisites

Eligible access
        You must have Admin user access in PSOhub.

API enabled
        You must have API access enabled for your PSOhub account.

How to Get All Project Managers

Steps

  1. Use this endpoint to retrieve all user accounts in PSOhub that are eligible to be assigned as a project manager.

Endpoint

 
 
GET https://www.psohubapp.com/rest/psohubapi/v1/accounts/projectmanagers

       2.    Use the limit parameter to control the number of records returned. If not specified, the                       API returns 50 records by default.

Example response

 
 

json

[   {     "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   } ]

How to Find a Project Manager

Steps

  1. Use the email parameter to find a specific project manager by their email address.

Endpoint

 
 
GET https://www.psohubapp.com/rest/psohubapi/v1/accounts/projectmanagers?email=tim@hello.com

       2.    The response returns the record matching the specified email address.

Search parameters

Parameter Type Description
email String The email address of the project manager to find.

Related Articles