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

PSOhub API: Project Type

Learn how to retrieve available project types via the PSOhub API

Published: 1 June 2026

Audience

  • Admin

Objective

This reference article covers the PSOhub API endpoint for retrieving project types. Use this endpoint to get the ObjectID of each project type so you can assign one when creating a project via the API.

Prerequisites

Eligible access
        You must have Admin user access in PSOhub.
 
API enabled
        You must have API access enabled for your PSOhub account.
 
Project types ready
        Project types must already be configured in PSOhub.

Get All Project Types

Use this endpoint to retrieve a list of all project types configured in your PSOhub organization:

Endpoint

 
 
GET https://www.psohubapp.com/rest/psohubapi/v1/projecttype

Example response

 
 

json

[   {     "ProjectTypeName": "Consultancy",     "ObjectID": 117938015241764922   },   {     "ProjectTypeName": "Other",     "ObjectID": 117938015241764924   },   {     "ProjectTypeName": "Product sales",     "ObjectID": 117938015241764923   } ]

Response fields

Name Type Description
ProjectTypeName String The name of the project type as configured in PSOhub.
ObjectID Integer/Long The unique ID of the project type. Pass this value as ProjectTypeID when creating a project via the API.

Related Articles