Accounts-accountNumber-web-domainName-sitebuilder:PUT
From Hostway API Documentation
PUT /accounts/{accountNumber}/web/{domainName}/sitebuilder
Adds SiteBuilder product to a domain.
Contents |
Request
PUT /accounts/{accountNumber}/web/{domainName}/sitebuilder
URI Parameters
- accountNumber - string
- The user account to which the domain name belongs
- domainName - string
- The target domain name (domain name under which the site is actually hosted)
Request Headers
- Authorization - HTTP Authorization header [1]
- The Authentication credentials of the client application.
Response
Status Code
- 202 Accepted
- Success
- 400 Bad Request
- The format of the request body is invalid.
- 401 Unauthorized
- The supplied credentials are invalid or do not provide permissions for this operation.
- 404 Not Found
- The domain name does not exist.
- 409 Conflict
- The product already exists(on create) or domain is disabled(on update).
Examples
Try to add SiteBuilder product to a not existing domain
Request
PUT /accounts/test-account/email/test.com/siteBuilder
Response
404 Not Found {"itemNotFound": {"guid": "", "message": "Resource not found", "code": 404, "details": ""}}
Successfully adding SiteBuilder product
Request
PUT /accounts/test-account/email/test.com/siteBuilder
Response
202 Accepted { "links": [{"href": "https://api.hostway.com/accounts/test-account/web/test.com/siteBuilder/", "rel": "self"}, {"href": "https://api.hostway.com/orders/123/action/", "rel": "submit"}, {"href": "https://api.hostway.com/orders/123/quote/", "rel": "quote"}] }
Request
POST /orders/123/action {"action": "submit"}
Response
202 Accepted