Call Outcome
Contract Type
Custom Field
Delivery Method
Industry
Lead Source
Loss Reason
Market Sector
Project Stages
Project Team Membership
Project Team Role
Task List
Tender Type
Webhook Message
Project Team Role
Create project team role
POST
/
api
/
2023-01
/
project_team_roles
Copy
Ask AI
curl --request POST \
--url https://api.buildr.com/api/2023-01/project_team_roles \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"project_team_role": {
"project_team_membership_id": "123",
"role": "project_manager"
}
}'
Copy
Ask AI
{
"project_team_role": {
"id": "830",
"created_at": "2023-02-14T18:13:00Z",
"updated_at": "2023-04-03T20:16:30Z",
"role": "project_manager",
"name": "Project Manager"
}
}
Headers
Body
application/json
Response
201
application/json
Created Response
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.buildr.com/api/2023-01/project_team_roles \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"project_team_role": {
"project_team_membership_id": "123",
"role": "project_manager"
}
}'
Copy
Ask AI
{
"project_team_role": {
"id": "830",
"created_at": "2023-02-14T18:13:00Z",
"updated_at": "2023-04-03T20:16:30Z",
"role": "project_manager",
"name": "Project Manager"
}
}
Assistant
Responses are generated using AI and may contain mistakes.