Gitpod · Example Payload

Gitpod List Organizations Example

Creates a new organization with the specified name and settings. Use this method to: - Create a new organization for team collaboration - Set up automatic domain-based invites for team members - Join the organization immediately upon creation ### Examples - Create a basic organization:

Developer ToolsCloud Development EnvironmentsWorkspacesAI AgentsDevOps

Gitpod List Organizations Example is an example object payload from Gitpod, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationdescriptionrequest_examplesrequest_schema

Example Payload

Raw ↑
{
  "operation": "gitpod.v1.OrganizationService.CreateOrganization",
  "description": "Creates a new organization with the specified name and settings.\n\n Use this method to:\n - Create a new organization for team collaboration\n - Set up automatic domain-based invites for team members\n - Join the organization immediately upon creation\n\n ### Examples\n\n - Create a basic organization:\n\n   ",
  "request_examples": {
    "create_a_basic_organization": {
      "joinOrganization": true,
      "name": "Acme Corp Engineering"
    },
    "create_with_domain_based_invites": {
      "inviteAccountsWithMatchingDomain": true,
      "joinOrganization": true,
      "name": "Acme Corp"
    }
  },
  "request_schema": {
    "$ref": "#/components/schemas/gitpod.v1.CreateOrganizationRequest"
  }
}