Create Single Constitution Device¶
Request¶
Request Parameter¶
item |
Required |
type |
format |
description |
---|---|---|---|---|
sokind |
yes |
String |
- |
A: Create Single Constitution Device |
tenant_id |
yes |
String |
UUID |
Tenant ID of the owner (UUID) |
locale |
no |
String |
- |
Messages are displayed in Japanese or English depending on this value. ja: Japanese, en: English. Default value is "en". |
gt_host |
yes |
list |
- |
|
operatingmode |
yes |
String |
- |
Set "FW" or "UTM" to this value. |
licensekind |
yes |
String |
- |
Set "02" or "08" as FW/UTM plan. |
azgroup |
yes |
String |
- |
Availability Zone |
Sample Request Body¶
{
"tenant_id": "9f8bfbc5e3e44ae6959a21ea6f88fe96",
"sokind": "A",
"locale": "ja",
"gt_host": [{
"operatingmode": "FW",
"licensekind": "08",
"azgroup": "zone1-groupa"
}]
}
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.FOV-**: Successful Completion FOV-E**: Error has occurred |
message |
String |
- |
This message is shown when error has occurred. |
soId |
String |
- |
Identification ID of Service Order. |
status |
integer |
- |
This value indicates normal or abnormal. 1:normal, 2:abnormal |
Sample Response Body¶
Normal Response¶
When locale is "ja"
{
"status": 1,
"code": "FOV-02",
"message": "オーダーを受け付けました。ProgressRateにて状況を確認できます。",
"soId": "FGS_FBCFAF13967F42CFA7C981EA6CC7F3BB"
}
{
"status": 1,
"code": "FOV-02",
"message": "We accepted the order. You can check the status with ProgressRate.",
"soId": "FGS_FBCFAF13967F42CFA7C981EA6CC7F3BB"
}
Error Response¶
When locale is "ja"
{
"status": 2,
"code": "FOV-E29",
"message": "ただいまOrder状況が混雑しています。時間をおいて再度お申込みください。",
"soId": "FGS_FBCFAF13967F42CFA7C981EA6CCTTI55698"
}
{
"status": 2,
"code": "FOV-E29",
"message": "The Order System is busy now. Please wait a while and apply again.",
"soId": "FGS_FBCFAF13967F42CFA7C981EA6CCTTI55698"
}