Skip to main content
FuseFuse
IntegrationsGithubActions

Invite GitHub organization member

Invite a user to the installation organization.

Agent markdown

organization.members.invite · GitHub · v1

Details

Risk
Write
Idempotency
Unsafe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=false, openWorld=true

Scopes

  • organization.members:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
orgstringYesminLength 1
emailstringYesminLength 1
rolestringNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idintegerYes
emailstringYes
rolestringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "org": {
      "type": "string",
      "minLength": 1
    },
    "email": {
      "type": "string",
      "minLength": 1
    },
    "role": {
      "type": "string"
    }
  },
  "required": [
    "org",
    "email"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "integer"
    },
    "email": {
      "type": "string"
    },
    "role": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "email"
  ]
}