Actual Time represents the timesheet data capturing the work performed by employees and logged against assigned Project Offerings. Actual Time is used to compare planned vs. actual effort, drive utilization reporting, support variance analysis, and inform project health and forecasting across the platform.
- UpdateProjectOffering
Parallax Api (v1)
Access to the Parallax API is available exclusively to Parallax API customers. To learn more about becoming a Parallax API customer, please reach out to your Customer Success Manager.
All Parallax API calls are made under https://api.getparallax.com and all responses return standard JSON. The following HTTP methods are supported:
- GET
- POST
- PATCH
- DELETE
Clients
A client represents the customer organization associated with one or more projects. Clients serve as the primary entity used to group projects, service offerings, and resource plans, allowing for aggregated reporting on revenue, margin, utilization, and forecasting. Each project is tied to a client, enabling organizations to track work and financial performance at both the individual project and client account levels.
Departments
A department is used to categorize and group roles within the organization based on functional teams or disciplines. Departments help segment resource capacity, manage utilization targets, and support filtering within reporting and planning workflows. Each role in Parallax belongs to a department for organizational clarity and capacity planning.
People
People represent the individual resources available for assignment to projects. People are assigned roles, billable capacity, and utilization targets, and can be categorized by worker type, billing type, and department. A Persons record is central to capacity planning, resource allocation, forecasting, and reporting across the platform.
ProjectOfferingRoles
A Project Offering Role defines the specific role, resource allocation, and scheduled hours needed within a Project Offering. These roles form the basis of the resource plan by identifying the skill sets, timelines, and capacity requirements for successful delivery of the scoped work.
ProjectOfferings
A Project Offering represents a distinct scope or phase of work within a Project. Each Project Offering contains resource plans, financial models, and revenue data, allowing organizations to model different work types and billing structures within a single project. Offerings help align sales, delivery, and operations teams around specific scopes of work and resourcing needs.
WebhookSubscribers
Webhook configurations enable organizations to receive real-time event notifications via HTTP callbacks. Organizations can configure a single webhook endpoint to receive notifications about events such as project or offering, creation or changes. Each webhook includes a secret key for validating the authenticity of incoming requests.Only one Webhook Subscriber is currently allowed per organization.
UpdateProject
The name of the Project, typically describing the work engagement or scope for the Client.
Target margin for the Project. Defaults to Organization's target margin.
The target budget for the Project, representing the expected revenue from the Client.
Indicates whether the Project is archived and no longer active for delivery or planning.
A list of tags assigned to the Project for filtering, categorization, or reporting.
{ "name": "string", "status": {}, "start_date": "2019-08-24", "end_date": "2019-08-24", "target_margin": 0.1, "target_budget": { "currency_code": "string", "amount": 0 }, "archived": true, "client_id": "5b3fa7ba-57d3-4017-a65b-d57dcd2db643", "stage_id": "f38d2b9c-0a0a-4eea-91a8-e974413bb670", "tags": [ "string" ], "project_model": {}, "is_included": true }
UpdateProjectOffering
The new Billing Model for the Project Offering. This cannot be updated for a project offering that is In Progress
Additional Billing Model configuration for the Project Offering.
Additional Billing Model configuration for the Project Offering.
{ "name": "string", "billing_model": {}, "billing_model_options": { "service_fee": { … }, "billing_model": {} } }
UpdateProjectOfferingRole
Id of the organization Role that will be performing work on this ProjectOffering.
Assignment of a Person or Requisition to this role. Set to null to unassign. Note: Removing or replacing an assignment where the person has actuals will return a 409 Conflict. The person must first be reassigned to another role or have their actuals removed.
{ "role_id": "ac4e70c8-d5be-48af-93eb-760f58fc91a9", "assignment": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "type": {} }, "should_clear_assignment": true, "tags": [ "string" ] }