Accounts-accountNumber-web-domainName-php:PUT
From Hostway API Documentation
Revision as of 08:24, 20 April 2015 by Velimira.metodieva (Talk)
PUT /accounts/{accountNumber}/web/{domainName}/php
Adds PHP feature to a domain.
Contents |
Request
PUT /accounts/{accountNumber}/web/{domainName}/php
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.
Request Body
{}
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 feature already exists(on create) or domain is disabled(on update).
Examples
Try to add PHP feature to a not existing domain
Request
PUT /accounts/test-account/email/test.com/php
Response
404 Not Found {"itemNotFound": {"guid": "", "message": "Resource not found", "code": 404, "details": ""}}
Successfully adding PHP feature
Request
PUT /accounts/test-account/email/test.com/php
Response
202 Accepted { "links": [{"href": "https://api.hostway.com/accounts/test-account/web/test.com/php/", "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