Team Management

Get application team members

get

Retrieves the list of team members for a specific application

Authorizations
api-tokenstringRequired
Path parameters
appIDstringRequired

ID of the application to retrieve team for

Responses
200

Team retrieved successfully

application/json
get
/app/{appID}/team

Add team member

post

Adds a new team member to an application with specified permissions

Authorizations
api-tokenstringRequired
Path parameters
appIDstringRequired

ID of the application to add a team member to

Body
modIDstringRequired

The unique identifier of the user to add as a team member

Responses
200

Team member added successfully

application/json
post
/app/{appID}/team

Update team member permissions

put

Updates permissions for an existing team member of an application

Authorizations
api-tokenstringRequired
Path parameters
appIDstringRequired

ID of the application to update team member in

Body
modIDstringRequired

The unique identifier of the user to add as a team member

Responses
200

Team member permissions updated successfully

application/json
put
/app/{appID}/team

Remove team member

delete

Removes a team member from an application

Authorizations
api-tokenstringRequired
Path parameters
appIDstringRequired

ID of the application to remove the team member from

modIDstringRequired

ID of the team member to remove

Responses
200

Team member removed successfully

application/json
delete
/app/{appID}/team/{modID}

Last updated