IntegrationsGithubActions
Invite GitHub organization member
Invite a user to the installation organization.
organization.members.invite · GitHub · v1
Details
Scopes
organization.members:write
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
org | string | Yes | minLength 1 |
email | string | Yes | minLength 1 |
role | string | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | integer | Yes | — |
email | string | Yes | — |
role | string | No | — |
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"
]
}