CreateCustomDomain
client.organizations.customDomains.create(CustomDomainCreateParams { domainName, organizationId, awsAccountId, 2 more } body, RequestOptionsoptions?): CustomDomainCreateResponse { customDomain }
POST/gitpod.v1.OrganizationService/CreateCustomDomain
Creates a custom domain configuration for an organization.
Use this method to configure custom domains for organization workspaces
Examples
-
Configure AWS custom domain:
Sets up a custom domain with AWS provider.
organizationId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047" domainName: "workspaces.acme-corp.com" provider: CUSTOM_DOMAIN_PROVIDER_AWS awsAccountId: "123456789012"
CreateCustomDomain
import Gitpod from '@gitpod/sdk';
const client = new Gitpod({
bearerToken: process.env['GITPOD_API_KEY'], // This is the default and can be omitted
});
const customDomain = await client.organizations.customDomains.create({
domainName: 'workspaces.acme-corp.com',
organizationId: 'b0e12f6c-4c67-429d-a4a6-d9838b5da047',
awsAccountId: '123456789012',
provider: 'CUSTOM_DOMAIN_PROVIDER_AWS',
});
console.log(customDomain.customDomain);{
"customDomain": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"createdAt": "2019-12-27T18:11:19.117Z",
"domainName": "xxxx",
"organizationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"updatedAt": "2019-12-27T18:11:19.117Z",
"awsAccountId": "awsAccountId",
"cloudAccountId": "cloudAccountId",
"provider": "CUSTOM_DOMAIN_PROVIDER_UNSPECIFIED"
}
}Returns Examples
{
"customDomain": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"createdAt": "2019-12-27T18:11:19.117Z",
"domainName": "xxxx",
"organizationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"updatedAt": "2019-12-27T18:11:19.117Z",
"awsAccountId": "awsAccountId",
"cloudAccountId": "cloudAccountId",
"provider": "CUSTOM_DOMAIN_PROVIDER_UNSPECIFIED"
}
}