list-user-orgs
Retrieve a list of organizations associated with a specific GitHub Enterprise user using their username, with options for pagination and results per page.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
per_page | No | Number of results per page (max 100) | |
username | Yes | Username of the user whose organizations to list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number for pagination",
"type": "number"
},
"per_page": {
"description": "Number of results per page (max 100)",
"type": "number"
},
"username": {
"description": "Username of the user whose organizations to list",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}