IntegrationsGithubActions
Remove GitHub team member
Remove a user from a GitHub team.
teams.members.remove · GitHub · v1
Details
Scopes
organization.members:write
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
org | string | Yes | minLength 1 |
team_slug | string | Yes | minLength 1 |
username | string | Yes | minLength 1 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"org": {
"type": "string",
"minLength": 1
},
"team_slug": {
"type": "string",
"minLength": 1
},
"username": {
"type": "string",
"minLength": 1
}
},
"required": [
"org",
"team_slug",
"username"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {}
}