Orders-orderId-action:POST

(Difference between revisions)
Jump to: navigation, search
m (1 revision)
Line 58: Line 58:
 
;404 Not Found
 
;404 Not Found
 
: The specified order does not exist.
 
: The specified order does not exist.
 +
 +
;409 Conflict
 +
: One of the domains to be ordered is already owned by another account or is blacklisted.
  
 
=== Response Body ===
 
=== Response Body ===

Revision as of 10:23, 12 February 2014

POST /orders/{orderId}/action

Performs an action like validating or submitting an order.

Contents

Request

POST /orders/{orderId}/action

Parameters

orderId - string
The unique order Id. The URI of the order is returned by the POST /orders call.

URI Parameters

None.

Request Headers

Content-Type
Required. Set this header to application/json; charset=UTF-8
Cookie
A cookie named OwnerId to identify the client (for most browser clients, the browser will do this automatically, depending on the browser configuration). The value of the cookie would come from the response to the create order request in the Set-Cookie response header.

Request Body

{
  "action": "{action}",
  "actionData": {actionData}
  "quoteHash": {quoteId}
}
 

Parameters

action - string
The action that should be performed. Allowed values are:
validate - checks the integrity of the order.
submit - submits the order for processing.
actionData - dictionary
Optional. Reserved for data specific for the requested action.
quoteHash - string
Optional. Specifies the Id of the previously obtained quote to be used with the action.

Response

Status Code

200 OK
The requested action was successfully completed.
202 Accepted
The requested action was initiated successfully. Check the status of the order for future updates.
400 Bad Request
Invalid action requested or the order is invalid. The response body contains details.
401 Unauthorized
No owner Id specified or the specified owner is not authorized to perform actions on this order.
403 Forbidden
The requested action is forbidden.
404 Not Found
The specified order does not exist.
409 Conflict
One of the domains to be ordered is already owned by another account or is blacklisted.

Response Body

Depends on the result.

Error Response

{

 "{errorType}": {
   "message": "{errorMessage}",
   "code": {errorCode},
   "details": "{errorDetails}"
 }

}

Examples

Submit an order

Request

POST /orders/0000013ca61880fbfc068b33000a02c9d8ef861c/action
Content-Type:application/json; Charset=UTF-8
Cookie: OwnerId=948ce0d4-7cf0-43b6-88a5-2b3f1331b689; Path=/

{
  "action": "submit"
}
 

Response

202 Accepted
 

Validate an order

Request

POST /orders/0000013ca61880fbfc068b33000a02c9d8ef861c/action
Content-Type:application/json; Charset=UTF-8
Cookie: OwnerId=948ce0d4-7cf0-43b6-88a5-2b3f1331b689; Path=/

{
  "action": "validate"
}
 

Response

204 No Body
 

Submit an order with invalid quote

Request

POST /orders/0000013ca61880fbfc068b33000a02c9d8ef861c/action
Content-Type:application/json; Charset=UTF-8
Cookie: OwnerId=948ce0d4-7cf0-43b6-88a5-2b3f1331b689; Path=/

{
  "action" : "submit", 
  "quoteHash" : "invalid_quote_id"
}
 

Response

400 Bad Request

{
  "computeFault": {
    "message": "Account has not been set",
    "code": 400,
    "details": ""
  }
}
 

OPTIONS /orders/{orderId}/action

In addition to the POST method the API supports the OPTIONS method for direct browser access to the API. The format of the request is:

OPTIONS /orders/{orderId}/action

Parameters

orderId - string
The unique order Id. The full URI of each order is returned by the POST /orders call.

Request Headers

Cookie
A cookie named OwnerId to identify the client (for most browser clients, the browser will do this automatically, depending on the browser configuration). The value of the cookie would come from the response to the create order request in the Set-Cookie response header.

Response Status Code

200 OK
Success
404 Not Found
The specified order does not exist.

Response Headers

Access-Control-Allow-Methods
A comma-separated list of request methods supported on this URI.
Access-Control-Allow-Origin
All origins are allowed. This header has value *.

See also


blog comments powered by Disqus

Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox