Members
Update a member
Get Started
API Documentation
Members
Update a member
Update a team member’s role
PUT
/
api
/
teams
/
{slug}
/
members
/
{memberId}
curl --location 'http://localhost:3005/api/teams/acme/members' \
--header 'Accept: application/json' \
--header 'Authorization: Token <token>'
{
"data": {
"id": 1,
"teamId": 1,
"userId": 2,
"role": "MEMBER",
"createdAt": "2023-07-03T19:24:35.739Z",
"updatedAt": "2023-07-03T19:33:51.341Z"
}
}
Path
Team slug
ID of the member to update
Body
Role of the member
curl --location 'http://localhost:3005/api/teams/acme/members' \
--header 'Accept: application/json' \
--header 'Authorization: Token <token>'
{
"data": {
"id": 1,
"teamId": 1,
"userId": 2,
"role": "MEMBER",
"createdAt": "2023-07-03T19:24:35.739Z",
"updatedAt": "2023-07-03T19:33:51.341Z"
}
}
curl --location 'http://localhost:3005/api/teams/acme/members' \
--header 'Accept: application/json' \
--header 'Authorization: Token <token>'
{
"data": {
"id": 1,
"teamId": 1,
"userId": 2,
"role": "MEMBER",
"createdAt": "2023-07-03T19:24:35.739Z",
"updatedAt": "2023-07-03T19:33:51.341Z"
}
}