Workspace role object

Workspace Roles and Rates allow you to create a company-wide rate card. These roles and rates can then be added or linked to client-specific rate cards.

🚧

Workspace Roles are only available in the pro plan and require the Workspace and Client Rate Cards feature to be turned on in your workspace.

Example

{
  "id": "f17849a0-06e4-48d0-9f63-13d1d07bd58d",
   "name": "Senior Project Manager",
   "isActive": true,
   "isBillable": true,
   "rate": 175,
   "currency": "USD",
   "createdAt": "2024-09-18T12:21:39.591Z",
   "practice": {
     "id": "cbf29d83-1cbd-4f69-a352-073f46712a2f",
     "name": "IT Outsourcing"
   },
  "location": {
    "id": "75e6ed16-2cdb-466e-88ad-ceeb0663ddb2",
    "name": "North America"
  },
   "discipline": {
     "id": "14aa2bab-ea87-4ca3-9d5b-08aade12376e",
     "name": "Project Management"
    }
}

Attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the workspace role.
isActivebooleanA flag to indicate if the workspace role is active in the system.
isBillablebooleanA flag to indicate if the workspace role is billable.
ratenumberThe rate of the workspace role. Will only be available for billable workspace roles.
currencystringThe currency code for the workspace role.
createdAttimestampThe timestamp when the object was created.
practiceobjectA simple object to the related practice, if defined. See attributes .
locationobjectA simple object to the related location, if defined. See attributes .
disciplineobjectA simple object to the related discipline, if defined. See attributes .

Practice attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the practice.

Location attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the location.

Discipline attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the discipline.