get_project_domain | SELECT | domain, idOrName, teamId | Get project domain by project id/name and domain name. |
get_project_domains | SELECT | idOrName, teamId | Retrieve the domains associated with a given project by passing either the project id or name in the URL. |
remove_project_domain | DELETE | domain, idOrName, teamId | Remove a domain from a project by passing the domain name and by specifying the project by either passing the project id or name in the URL. |
_get_project_domains | EXEC | idOrName, teamId | Retrieve the domains associated with a given project by passing either the project id or name in the URL. |
add_project_domain | EXEC | idOrName, teamId, data__name | Add a domain to the project by passing its domain name and by specifying the project by either passing the project id or name in the URL. If the domain is not yet verified to be used on this project, the request will return verified = false , and the domain will need to be verified according to the verification challenge via POST /projects/:idOrName/domains/:domain/verify . If the domain already exists on the project, the request will fail with a 400 status code. |
update_project_domain | EXEC | domain, idOrName, teamId | Update a project domain's configuration, including the name, git branch and redirect of the domain. |
verify_project_domain | EXEC | domain, idOrName, teamId | Attempts to verify a project domain with verified = false by checking the correctness of the project domain's verification challenge. |