Get Order Information¶
Request¶
Response¶
HTTP Response Code¶
Response Code | Description |
---|---|
200 | OK |
400 | Request format is invalid |
401 | Unauthorized |
500 | Internal Server Error |
511 | Internal Server Error (Fail Service Order etc.) |
Response Parameter¶
item | type | format | description |
---|---|---|---|
code | String | - | This code is for determining the details of the error.DEP-**: Successful Completion DEP-E**: Error has occurred |
message | String | - | This message is shown when error has occurred. |
region | String | - | Region tenant you specified belongs to. |
tenant_name | String | - | Tenant Name |
tenant_description | String | - | Description for this tenant |
contract_id | String | - | Contract ID which this tenant belongs to |
service_order_service | String | - | In-use menu. |
max_agent_value | string | - | Maximum usage of Agent |
time_zone | string | - | Time zone |
customer_name | String | - | Customer Name |
mailaddress | String | - | Contact e-mail address |
dsm_lang | String | - | Language of Deep Security Manager |
tenant_flg | boolean | - | Internal Use. (true: Already applied, false: Not applied.) |
status | integer | - | This value indicates normal or abnormal. 1:normal, 2:abnormal |
Sample Response Body¶
Normal Response¶
When locale is "ja"
{
"status": 1,
"message": "正常終了",
"code": "DEP-01",
"region": "jp1",
"tenant_name": "SOTestTenant",
"tenant_description": "SOTest用テナント",
"contract_id": "econ0000002279",
"service_order_service": "Managed Anti-Virus",
"max_agent_value": "1",
"time_zone": "Etc/GMT",
"mailaddress": "test@rfg.co.jp",
"dsm_lang": "ja",
"tenant_flg": true,
}
When locale is "en"
{
"status": 1,
"message": "Successful completion",
"code": "DEP-01",
"region": "jp1",
"tenant_name": "SOTestTenant",
"tenant_description": "SOTest用テナント",
"contract_id": "econ0000002279",
"service_order_service": "Managed Anti-Virus",
"max_agent_value": "1",
"time_zone": "Etc/GMT",
"mailaddress": "test@rfg.co.jp",
"dsm_lang": "ja",
"tenant_flg": true,
}
Error Response¶
When locale is "ja"
{
"code": "DEP-E",
"message": "システムエラーが発生しました。恐れ入りますが、チケットシステムでご連絡ください。",
"records": 0,
"rows": [],
"status": 2
}
When locale is "en"
{
"code": "DEP-E",
"message": "System error has occurred. Excuse me, please contact us at the ticket system.",
"records": 0,
"rows": [],
"status": 2
}