Orders-orderId-account-attributes:PUT

(Difference between revisions)
Jump to: navigation, search
m (1 revision: Release 85)
Line 44: Line 44:
  
 
=== Status Code ===
 
=== Status Code ===
;204 No Content : The account attributes were successfully set.
 
  
;400 Bad Request : The request body format is invalid, the attribute name is not supported by the franchise, the attribute value is invalid (e.g: too long, contains invalid characters, etc).
+
{| class='wikitable'
 +
|-
 +
! Status Code
 +
! Error Message
 +
! Description
 +
|-
 +
| 204 No Content
 +
| align="center" | -
 +
| The account attributes were successfully set.
 +
|-
 +
| rowspan="3" | 400 Bad Request
 +
| POST data error
 +
| The request body format is invalid and all attributes must have less than 200 characters.
 +
|-
 +
| Not allowed or not existing MetaData Type
 +
| Setting some bad account attributes
 +
|-
 +
| Partner Account ID cannot exceed 100 characters
 +
| align="center" | -
 +
|-
 +
| 401 Unauthorized
 +
| align="center" | -
 +
| No owner Id specified or the specified owner is not authorized to add attributes for this account.
 +
|-
 +
| 404 Not Found
 +
| Resource not found
 +
| The specified order does not exist.
 +
|-
 +
| rowspan="1" | 409 Conflict
 +
| Account ID already in use
 +
| Attribute value for Partner Account ID, supposed to be unique, is already in use.
 +
|-
 +
| 500 Internal Server Error
 +
| align="center" | -
 +
| Account has not been set for this order.
 +
|-
 +
| 502 Bad Gateway
 +
| align="center" | -
 +
| A critical (unknown) error occurred.
 +
|}
  
;404 Not Found : The specified order does not exist.
+
=== Response Body ===
 +
None.
  
;409 Conflict : An attribute value, supposed to be unique, is already in use.
+
== Example ==
  
;502 Bad Gateway : A critical (unknown) error occurred.
+
=== Set valid account attribute ===
 +
'''Request'''
 +
<nowiki>
 +
PUT /orders/{orderId}/account/attributes
 +
Cookie: OwnerId={owner_id}; Path=/
  
=== Response Body ===
+
[
None.
+
  {
 +
    "name":"partner_account_id",
 +
    "value":"paccid_050914054136"
 +
  }
 +
]</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
204 No Content</nowiki>
 +
 
 +
=== Set bad account attributes ===
 +
'''Request'''
 +
<nowiki>
 +
PUT /orders/{orderId}/account/attributes
 +
Cookie: OwnerId={owner_id}; Path=/
 +
 
 +
[
 +
  {
 +
    "name":"attribute_a",
 +
    "value":"value_a"
 +
  },
 +
  {
 +
    "name":"attribute_b",
 +
    "value":"value_b"
 +
  }
 +
]</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
400 Bad Request
 +
Content-Type : application/json; charset=UTF-8
 +
 
 +
{
 +
  "computeFault": {
 +
    "guid": "5268a14c-ced6-4f32-87ee-aa6709414396",
 +
    "message": "Not allowed or not existing MetaData Type",
 +
    "code": 400,
 +
    "details": ""
 +
  }
 +
}</nowiki>
 +
 
 +
=== Set an attribute with too long value ===
 +
'''Request'''
 +
<nowiki>
 +
PUT /orders/{orderId}/account/attributes
 +
Cookie: OwnerId={owner_id}; Path=/
 +
 
 +
[
 +
  {
 +
    "name":"partner_account_id",
 +
    "value":"12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901
 +
12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901"
 +
  }
 +
]</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
400 Bad Request
 +
Content-Type : application/json; charset=UTF-8
 +
 
 +
{
 +
  "computeFault": {
 +
    "guid": "6c0ab111-f5b0-4730-a3fd-0076633b5dee",
 +
    "message": "POST data error",
 +
    "code": 400,
 +
    "details": ""
 +
  }
 +
}</nowiki>
 +
 
 +
=== Set too long Partner Account ID value ===
 +
'''Request'''
 +
<nowiki>
 +
PUT /orders/{orderId}/account/attributes
 +
Cookie: OwnerId={owner_id}; Path=/
 +
 
 +
[
 +
  {
 +
    "name":"partner_account_id",
 +
    "value":"12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901"
 +
  }
 +
]</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
400 Bad Request
 +
Content-Type : application/json; charset=UTF-8
 +
 
 +
{
 +
  "computeFault": {
 +
    "guid": "fbad4ff5-120c-4d1e-b2b3-1309937424d7",
 +
    "message": "Partner Account ID cannot exceed 100 characters",
 +
    "code": 400,
 +
    "details": ""
 +
  }
 +
}</nowiki>
 +
 
 +
=== Set existing Partner Account ID ===
 +
'''Request'''
 +
<nowiki>
 +
PUT /orders/{orderId}/account/attributes
 +
Cookie: OwnerId={owner_id}; Path=/
 +
 
 +
[
 +
  {
 +
    "name":"partner_account_id",
 +
    "value":"ext_140213131348"
 +
  }
 +
]</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
409 Conflict
 +
Content-Type : application/json; charset=UTF-8
 +
 
 +
{
 +
  "conflict": {
 +
    "guid": "a8d38abe-1f68-49c5-bafe-29894671ed06",
 +
    "message": "Account ID already in use",
 +
    "code": 409,
 +
    "details": ""
 +
  }
 +
}</nowiki>
 +
 
 +
=== Account has not been set ===
 +
'''Request'''
 +
<nowiki>
 +
PUT /orders/{orderId}/account/attributes
 +
Cookie: OwnerId={owner_id}; Path=/
 +
 
 +
[
 +
  {
 +
    "name":"partner_account_id",
 +
    "value":"paccid_050914054136"
 +
  }
 +
]</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
500 Internal Server Error
 +
Content-Type : application/json; charset=UTF-8
 +
 
 +
{
 +
  "computeFault" : {
 +
    "guid" : "a4eae57d-b172-45ff-ae6e-474a8b6061a0",
 +
    "timestamp" : "2014-09-10 10:12:41",
 +
    "code" : 500,
 +
    "errorRefId" : "a4eae57d-b172-45ff-ae6e-474a8b6061a0"
 +
  }
 +
}</nowiki>
  
 
== See also ==
 
== See also ==

Revision as of 06:15, 10 September 2014

PUT /orders/{orderId}/account/attributes

Set the list of attributes for an account in a given order.

Contents


Request

PUT /orders/{orderId}/account/attributes

Request 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

[
 {
  "name": "{attributeName}",
  "value": "{attributeValue}"
 },
 {
  "name": "{attributeName}",
  "value": "{attributeValue}"
 }
]
 

Parameters

attributeName - string
The unique name of the attribute. The list of supported attribute names is specific to the franchise. The common attributes include:
partner_account_id - unique account identifier in the partner system. The value should be unique within the franchise.
attributeValue - string
The value of the attribute max 200 characters. Should adhere to the rules for the attribute specified by the name.
The value of the "partner_account_id" attribute is max 100 characters

Response

Status Code

Status Code Error Message Description
204 No Content - The account attributes were successfully set.
400 Bad Request POST data error The request body format is invalid and all attributes must have less than 200 characters.
Not allowed or not existing MetaData Type Setting some bad account attributes
Partner Account ID cannot exceed 100 characters -
401 Unauthorized - No owner Id specified or the specified owner is not authorized to add attributes for this account.
404 Not Found Resource not found The specified order does not exist.
409 Conflict Account ID already in use Attribute value for Partner Account ID, supposed to be unique, is already in use.
500 Internal Server Error - Account has not been set for this order.
502 Bad Gateway - A critical (unknown) error occurred.

Response Body

None.

Example

Set valid account attribute

Request

PUT /orders/{orderId}/account/attributes
Cookie: OwnerId={owner_id}; Path=/

[
  {
    "name":"partner_account_id",
    "value":"paccid_050914054136"
  }
]

Response

204 No Content

Set bad account attributes

Request

PUT /orders/{orderId}/account/attributes
Cookie: OwnerId={owner_id}; Path=/

[
  {
    "name":"attribute_a",
    "value":"value_a"
  },
  {
    "name":"attribute_b",
    "value":"value_b"
  }
]

Response

400 Bad Request
Content-Type : application/json; charset=UTF-8

{
  "computeFault": {
    "guid": "5268a14c-ced6-4f32-87ee-aa6709414396",
    "message": "Not allowed or not existing MetaData Type",
    "code": 400,
    "details": ""
  }
}

Set an attribute with too long value

Request

PUT /orders/{orderId}/account/attributes
Cookie: OwnerId={owner_id}; Path=/

[
  {
    "name":"partner_account_id",
    "value":"12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901
12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901"
  }
]

Response

400 Bad Request
Content-Type : application/json; charset=UTF-8

{
  "computeFault": {
    "guid": "6c0ab111-f5b0-4730-a3fd-0076633b5dee",
    "message": "POST data error",
    "code": 400,
    "details": ""
  }
}

Set too long Partner Account ID value

Request

PUT /orders/{orderId}/account/attributes
Cookie: OwnerId={owner_id}; Path=/

[
  {
    "name":"partner_account_id",
    "value":"12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901"
  }
]

Response

400 Bad Request
Content-Type : application/json; charset=UTF-8

{
  "computeFault": {
    "guid": "fbad4ff5-120c-4d1e-b2b3-1309937424d7",
    "message": "Partner Account ID cannot exceed 100 characters",
    "code": 400,
    "details": ""
  }
}

Set existing Partner Account ID

Request

PUT /orders/{orderId}/account/attributes
Cookie: OwnerId={owner_id}; Path=/

[
  {
    "name":"partner_account_id",
    "value":"ext_140213131348"
  }
]

Response

409 Conflict
Content-Type : application/json; charset=UTF-8

{
  "conflict": {
    "guid": "a8d38abe-1f68-49c5-bafe-29894671ed06",
    "message": "Account ID already in use",
    "code": 409,
    "details": ""
  }
}

Account has not been set

Request

PUT /orders/{orderId}/account/attributes
Cookie: OwnerId={owner_id}; Path=/

[
  {
    "name":"partner_account_id",
    "value":"paccid_050914054136"
  }
]

Response

500 Internal Server Error
Content-Type : application/json; charset=UTF-8

{
  "computeFault" : {
    "guid" : "a4eae57d-b172-45ff-ae6e-474a8b6061a0",
    "timestamp" : "2014-09-10 10:12:41",
    "code" : 500,
    "errorRefId" : "a4eae57d-b172-45ff-ae6e-474a8b6061a0"
  }
}

See also


blog comments powered by Disqus

Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox