Change Project Member Role
Change Project Member Role
POSThttps://lastmileai.dev/api/2/auto_eval/project/change_member_role
Description of change_member_role
Request
- application/json
Body
projectId stringrequired
roleId integerrequired
The role id of the project member
projectRole ProjectRole (string)required
The new project role for the member
Possible values: [PROJECT_ROLE_UNSPECIFIED
, PROJECT_ROLE_ADMIN
, PROJECT_ROLE_MEMBER
]
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
success booleanrequired
{
"success": true
}
Authorization: http
name: BearerAuthtype: httpscheme: bearerbearerFormat: JWT
- curl
- python
- javascript
- CURL
curl -L 'https://lastmileai.dev/api/2/auto_eval/project/change_member_role' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"projectId": "string",
"roleId": 0,
"projectRole": "PROJECT_ROLE_UNSPECIFIED"
}'
ResponseClear