Introduction
This API provides functionalities to manage people, projects, and their relationships. You can create, read, and list data for each resource, allowing you to efficiently manage projects, teams, and their relationships.
Feel free to explore each endpoint section for further details. Remember to authenticate before accessing any of these endpoints.
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 |
---|---|---|---|---|---|
| POST | Creates a new record representing a user that is associated with any projects. |
| { "firstName": "John", "lastName": "Doe", "displayName": "John Doe", "email": "jd@opsera.io", "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "organization": "Opsera", "business_group": "Engineering", "application": "Platform", "project": "Phase 2", "team": "AOD" } | 200 OK |
| GET | Lists all people records for which you have access. |
| { "count": 1, "data": [ { "firstName": "John", "lastName": "Doe", "displayName": "John Doe", "email": "jd@opsera.io", "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "organization": "Opsera", "business_group": "Engineering", "application": "Platform", "project": "Phase 2", "team": "AOD" }, ] } | |
| GET | Gets the people record associated with the given email address. |
| { "firstName": "John", "lastName": "Doe", "displayName": "John Doe", "email": "jd@opsera.io", "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "organization": "Opsera", "business_group": "Engineering", "application": "Platform", "project": "Phase 2", "team": "AOD" } |
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 |
---|---|---|---|---|---|
| POST | Creates a new record representing a project that is associated with any users. |
| { "projectId": "2322345", "projectName": "Phase 2", "projectOwner": { "firstName": "John", "lastName": "Doe", "email": "jd@opsera.io" } "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "assets": [ "repositories": [{ name: "web-portal", platform: "github.com", url: "https://github.com/Opsera/web-portal.git", }], "services": [{ name: "ha-proxy", identifier: "haprox01", dependencies: {}, externalId: "b558c4d4-1eba-45e8-92bb-b255df6abd87", }] ] } | 200 OK |
| GET | Lists all project records for which you have access. |
| { "count": 1, "data": [{ "projectId": "2322345", "projectName": "Phase 2", "projectOwner": { "firstName": "John", "lastName": "Doe", "email": "jd@opsera.io" } "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "assets": [ "repositories": [{ name: "web-portal", platform: "github.com", url: "https://github.com/Opsera/web-portal.git", }], "services": [{ name: "ha-proxy", identifier: "haprox01", dependencies: {}, externalId: "b558c4d4-1eba-45e8-92bb-b255df6abd87", }] ] }] } | |
| GET | Gets the project record associated with the given email address. |
| { "projectId": "2322345", "projectName": "Phase 2", "projectOwner": { "firstName": "John", "lastName": "Doe", "email": "jd@opsera.io" } "externalId": "25ce97e1-549b-4f31-bd01-80490847f8a6", "assets": [ "repositories": [{ name: "web-portal", platform: "github.com", url: "https://github.com/Opsera/web-portal.git", }], "services": [{ name: "ha-proxy", identifier: "haprox01", dependencies: {}, externalId: "b558c4d4-1eba-45e8-92bb-b255df6abd87", }] ] } |
Mappings
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 |
---|---|---|---|---|---|
| POST | Creates a mapping record representing the relationship between the project and people. |
| { "attribute1": "John", "attribute2": "Doe", "mappingType": "project-member", "relationship": "many-to-many", } | 200 OK |
| GET | Lists all mapping records for which you have access. |
| { "count": 1, "data": [ { "id": "fec3d924-b2b6-41ad-8231-43e1fc0957e6" "attribute1": "John", "attribute2": "Doe", "mappingType": "project-member", "relationship": "many-to-many", }, ] } | |
| GET | Gets the mapping record associated with the given email address. |
| { "id": "fec3d924-b2b6-41ad-8231-43e1fc0957e6" "attribute1": "John", "attribute2": "Doe", "mappingType": "project-member", "relationship": "many-to-many", } |