IntegrationsGithubActions
Remove GitHub organization member
Remove a member from the installation organization.
organization.members.remove · GitHub · v1
Details
Scopes
organization.members:write
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
org | 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
},
"username": {
"type": "string",
"minLength": 1
}
},
"required": [
"org",
"username"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {}
}