Project / People / Organizational Hierarchy Mapping API

Introduction

This API provides functionalities to manage people, projects, organizational hierarchy, and their relationships. Providing this data via these APIs can be useful for providing filters for Insights dashboards. You can create, read, and list data for each resource. Feel free to explore each endpoint section for further details.

Remember to generate an Opsera API token before accessing any of these endpoints. This API token must be included with all API calls as an Authorization header in the following format:

Authorization: {opsera_api_token}

People

The People endpoint manages data about the users involved in your projects. Use these functions to create new people records, retrieve all people records, or access specific person details.

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

/api/v2/data/people

POST

Creates a new record representing a user that is associated with any projects.

Required Fields: email
externalId: Id for relating this person back to the original data source.
organization/business/department/group/team: Use these fields for associating organizational hierarchy metadata.
organization would represent the highest entities while team would represent the lowest level.

API Access

{ "firstName": "John", "lastName": "Doe", "displayName": "John Doe", "email": "jd@opsera.io", "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "organization": "Opsera", "business": "Engineering", "department": "Platform", "group": "Phase 2", "team": "AOD" }
200 OK

/api/v2/data/people

GET

Lists all people records for which you have access.

API Access

 

/api/v2/data/people/{email}

GET

Gets the people record associated with the given email address.

API Access

 

 

Projects

The Project endpoint manages data about the relevant projects. Use these functions to create new project records, retrieve all project records, or access specific project details.

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

/api/v2/data/project

POST

Creates a new record representing a project that is associated with any users.

 

 

 

API Access

/api/v2/data/projects

GET

Lists all project records for which you have access.

API Access

 

/api/v2/data/project/{projectId}

GET

Gets the project record associated with the given email address.

API Access

 

 

People / Project Relationship Mapping

The Mappings endpoint bridges the gap between people and projects. Use these functions to assign individuals to projects and retrieve information about existing assignments.

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

/api/v2/data/mapping

POST

Creates a mapping record representing the relationship between the project and people.

 

 

 

 

 

API Access

/api/v2/data/mappings

GET

Lists all mapping records for which you have access.

API Access

 

/api/v2/data/mapping/{id}

GET

Gets the mapping record associated with the given email address.

API Access

 

 

Organizational Hierarchy Mapping

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

URL

METHOD

DESCRIPTION

Scope

REQUEST

RESPONSE

/api/v2/data/org-hierarchy

POST

Creates an organizational hierarchy mapping record representing the organizations, businesses, departments, groups, and/or teams hierarchy.

This is a convenience endpoint that creates a /mapping record where mappingType = "parent-child" and relationship = "org-hierarchy"

 

 

 

 

 

API Access