Projectroles endpoint enables you to get role information and manage projectroles in Silverbucket's database. Endpoint's URL is:
https://<your_environment_url>/customer-api/1.0/projectroles/
When calling /projectroles/ endpoint without parameters you will get all the projectroles from database. Example response:
"csvUrl": "/customer-api/1.0/projectroles/?csv=true",
"excelUrl": "/customer-api/1.0/projectroles/?excel=true",
"hourly_rate_inherited": "100.00",
"hourly_rate_multiplier": "1.000000",
"competency_query": null,
"competency_requirement": null,
You can add projectroles with POST method to the same URL than get. POST body contains new projectrole's data in JSON format. Successful call will give response code 201 and return the newly created projectrole's JSON. Minimum JSON for adding a projectrole is:
"project": "<project_id>",