Update Team Group Users

puthttps://app.fossa.com/api/teams/groups/{id}/users

Update team group users by adding, removing, or replacing user roles in the team group

Path parameters

idintegerrequired

ID of the team group

Request body (required) · application/json

actionenumrequired

Action to perform on team group users

addremovereplace
usersobject[]required

List of users to add, remove, or replace

idintegerrequired

ID of the user

roleIdinteger

Role ID for the user (required for add and replace actions)

Responses

200Team group users updated successfully
idinteger

Team group ID

usersobject[]

Updated list of team group users

idinteger

User ID

roleIdinteger

Role ID

400Bad Request
uuidstring

Unique identifier associated with the error

codeinteger

fossa specific error code

messagestring

message associated with this error

namestring

name of the error

httpStatusCodeinteger

http status code number

403Forbidden
uuidstring

Unique identifier associated with the error

codeinteger

fossa specific error code

messagestring

message associated with this error

namestring

name of the error

httpStatusCodeinteger

http status code number

404Not Found
uuidstring

Unique identifier associated with the error

codeinteger

fossa specific error code

messagestring

message associated with this error

namestring

name of the error

httpStatusCodeinteger

http status code number

500Server Error
uuidstring

Unique identifier associated with the error

codeinteger

fossa specific error code

messagestring

message associated with this error

namestring

name of the error

httpStatusCodeinteger

http status code number

Try this endpoint

Build a request and run it against app.fossa.com.

Bearer

Stored in this browser for 24 hours. Try It uses a docs proxy for CORS and does not store tokens server-side.

PUT https://app.fossa.com/api/teams/groups/1/users
curl --request PUT \  --url 'https://app.fossa.com/api/teams/groups/1/users' \  --header 'accept: application/json' \  --header 'authorization: Bearer YOUR_API_TOKEN' \  --header 'content-type: application/json' \  --data '{  "action": "add",  "users": [    {      "id": 123,      "roleId": 2    },    {      "id": 456,      "roleId": 3    }  ]}'

Real request. Mutating methods can change data.

Click Try It to run a request and see the response here.
Enter a Bearer token before running this request.

Path params

idintegerrequired

ID of the team group

application/json