Invitations
List and manage invitations to collaborate on the repository.
Table-Specific Information
Select
The driver processes all filters client-side within the driver. The following query is the only one processed server-side:
SELECT * FROM [Invitations]
Update
You can use the following columns to update a record:
- Permission
UPDATE [Invitations] SET [Permission] = 'triage' WHERE [DatabaseId] = '296829133'
Delete
You can specify the following column to delete a record: DatabaseId
DELETE FROM [Invitations] WHERE [DatabaseId] = '296829133'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
The Node ID of the invitation. | |
| DatabaseId | Long | True |
Identifies the primary key from the database. | |
| InviteeId | String | True |
The Node ID of the user who was invited to the repository. | |
| InviteeLogin | String | True |
The login of the user who was invited to the repository. | |
| InviterId | String | True |
The Node ID of the user who created the invitation. | |
| InviterLogin | String | True |
The login of the user who created the invitation. | |
| Permission | String | False |
The permissions granted to the invitee on the repository. | |
| CreatedAt | Datetime | True |
The datetime when the invitation was created. | |
| Url | String | True |
The API URL of the invitation. | |
| HtmlUrl | String | True |
The HTML URL of the invitation. |