The following menus are supported in the {menu} path parameter.
Menu | Path Parameter {menu} |
---|---|
HULFT | hulft |
Power Systems | power-systems |
Hybrid Cloud with GCP | hc-gcp |
Hybrid Cloud with AWS | aws |
List Licenses
List Licenses
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
query Parameters
page | integer >= 1 Default: 1 Page number of the results to fetch |
per_page | integer [ 1 .. 100 ] Default: 30 Results per page |
status | Array of strings Items Enum: "Under Review" "Send Back" "Active" "Change Order Send Back" "Delete Order Under Review" "Delete Order Send Back" "Deleted" "Change Order Under Review" "Order Completed" Status of the license, and multiple statuses can be specified by separating them with commas |
plan_type | string Enum: "Monthly Fixed" "One-Shot" "Monthly Pay-As-You-Go" Plan Type |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "page": 1,
- "per_page": 30,
- "total_count": 2,
- "licenses": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "menu": "menu-name-1",
- "name": "メニュー名 1",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Active",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name 1",
- "plan_name_ja": "プラン名 1",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z",
- "tags": [
- {
- "id": "ab260bac-e041-4b26-8d09-a7f1616b75f2",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}, - {
- "id": "8da01882-b131-4b18-8209-00cd25a35d07",
- "menu": "menu-name-2",
- "name": "License Name 2",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Order Completed",
- "plan_id": "f64c8564-cfd5-4544-a091-30d0e5aaa2ae",
- "plan_type": "One-Shot",
- "plan_name_en": "Plan Name 2",
- "plan_name_ja": "プラン名 2",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": "2023-04-30",
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": "2023-04-30",
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z",
- "tags": [
- {
- "id": "2e377d8d-9f04-4957-8b35-5c0d40495cd4",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
]
}
Create License
Create License
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
Accepted
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Request samples
- Payload
{- "license": {
- "name": "License Name",
- "email_address": "user@example.com",
- "region": "gl1",
- "plan_quantity": 1,
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "offer_start_request_date": "2023-04-10",
- "file": {
- "name": "File Name",
- "content": "U21hcnQgRGF0YSBQbGF0Zm9ybQ=="
}
}
}
Response samples
- 202
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "74ff77cd-42b5-4dd3-9b8d-9c346971fdcf",
- "menu": "menu-name",
- "name": "Under Review License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Under Review",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": null,
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": null,
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-01T14:15:22Z",
- "tags": [ ]
}
}
Show License
Show License
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "196a57c1-d2fc-4d5d-93af-cd4695811261",
- "menu": "menu-name",
- "name": "Active License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Active",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z",
- "tags": [
- {
- "id": "904cc9e8-9c37-4d60-b33c-584812a10a30",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
}
Update License
Update License
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Request samples
- Payload
{- "license": {
- "name": "License Name"
}
}
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "196a57c1-d2fc-4d5d-93af-cd4695811261",
- "menu": "menu-name",
- "name": "Active License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Active",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z",
- "tags": [
- {
- "id": "904cc9e8-9c37-4d60-b33c-584812a10a30",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
}
Delete License
Delete License
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
No Content
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 400
- 401
- 403
- 404
- 500
{- "message": "Parameter is invalid."
}
Reapply License
Reapply License
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
Accepted
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Request samples
- Payload
{- "license": {
- "offer_start_request_date": "2023-04-10",
- "plan_quantity": 2,
- "file": {
- "name": "File Name",
- "content": "U21hcnQgRGF0YSBQbGF0Zm9ybQ=="
}
}
}
Response samples
- 202
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "196a57c1-d2fc-4d5d-93af-cd4695811261",
- "menu": "menu-name",
- "name": "Active License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Active",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z",
- "tags": [
- {
- "id": "904cc9e8-9c37-4d60-b33c-584812a10a30",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
}
Apply License Change
Apply Change
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
Accepted
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Request samples
- Payload
{- "license": {
- "plan_quantity": 2,
- "offer_change_request_date": "2023-04-20",
- "file": {
- "name": "File Name",
- "content": "U21hcnQgRGF0YSBQbGF0Zm9ybQ=="
}
}
}
Response samples
- 202
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "92fef88d-1bf0-4653-885f-57bbc3d797e7",
- "menu": "menu-name",
- "name": "Change Order Under Review License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Change Order Under Review",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 2,
- "plan_quantity_before_change": 1,
- "is_plan_quantity_changed": true,
- "is_file_updated": false,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": "2023-04-20",
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-11T14:15:22Z",
- "tags": [
- {
- "id": "3dae97c3-cbcb-423d-9359-5b872db04a81",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
}
Cancel License Change
Cancel License Change
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "196a57c1-d2fc-4d5d-93af-cd4695811261",
- "menu": "menu-name",
- "name": "Active License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Active",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": null,
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z",
- "tags": [
- {
- "id": "904cc9e8-9c37-4d60-b33c-584812a10a30",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
}
Cancel License
Cancel License
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
Accepted
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Request samples
- Payload
{- "license": {
- "offer_end_request_date": null
}
}
Response samples
- 202
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "ee773684-8dc3-403c-aee3-058a940fc728",
- "menu": "menu-name",
- "name": "Delete Order Under Review License",
- "email_address": "user@example.com",
- "tenant_id": "cab37c0a5c40450d9038463783b7d53e",
- "workspace_id": "ws0000588582",
- "region": "gl1",
- "status": "Delete Order Under Review",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_type": "Monthly Fixed",
- "plan_name_en": "Plan Name",
- "plan_name_ja": "プラン名",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "is_plan_quantity_changed": null,
- "is_file_updated": null,
- "offer_start_request_date": "2023-04-10",
- "offer_start_date": "2023-04-10",
- "offer_change_request_date": null,
- "offer_change_date": null,
- "offer_end_request_date": null,
- "offer_end_date": null,
- "billing_start_date": "2023-04-10",
- "billing_change_date": null,
- "billing_end_date": "2023-05-10",
- "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-05-10T14:15:22Z",
- "tags": [
- {
- "id": "228a516f-cf34-499b-8cfd-8ed63e06e080",
- "name": "Tag Name",
- "values": [
- "Tag Value 1",
- "Tag Value 2"
], - "created_at": "2023-04-01T14:15:22Z",
- "updated_at": "2023-04-09T14:15:22Z"
}
]
}
}
List License Files
List License Files
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
query Parameters
page | integer >= 1 Default: 1 Page number of the results to fetch |
per_page | integer [ 1 .. 100 ] Default: 30 Results per page |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "page": 1,
- "per_page": 30,
- "total_count": 1,
- "files": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "menu": "menu-name",
- "license_id": "38cf2dcf-77be-45c4-b03d-412af2743263",
- "name": "File Name 1",
- "added_at": "2019-08-24T14:15:22Z",
- "is_sent_back": true,
- "is_cancelled": false
}, - {
- "id": "207e1d5a-c6ae-4421-ae3d-f1d38efc02e5",
- "menu": "menu-name",
- "license_id": "38cf2dcf-77be-45c4-b03d-412af2743263",
- "name": "File Name 2",
- "added_at": "2019-08-25T14:15:22Z",
- "is_sent_back": false,
- "is_cancelled": false
}
]
}
Show License File
Show License File
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
license_id required | string <uuid> License ID |
file_id required | string <uuid> File ID |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "file": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "menu": "menu-name",
- "license_id": "38cf2dcf-77be-45c4-b03d-412af2743263",
- "name": "File Name",
- "content": "U21hcnQgRGF0YSBQbGF0Zm9ybQ==",
- "added_at": "2019-08-24T14:15:22Z",
- "is_sent_back": false,
- "is_cancelled": false
}
}
List Plans
List Plans
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
query Parameters
page | integer >= 1 Default: 1 Page number of the results to fetch |
per_page | integer [ 1 .. 100 ] Default: 30 Results per page |
status | string Enum: "Active" "Suspended" Plan Status |
type | string Enum: "Monthly Fixed" "One-Shot" "Monthly Pay-As-You-Go" Plan Type |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "page": 1,
- "per_page": 30,
- "total_count": 2,
- "plans": [
- {
- "id": "10a47792-22ef-4b84-b326-1d2ce5d7a229",
- "menu": "menu-name-1",
- "name_en": "Plan Name 1",
- "name_ja": "プラン名 1",
- "status": "Active",
- "type": "Monthly Fixed",
- "has_quantity": true,
- "minimum_quantity": 1,
- "maximum_quantity": 10,
- "shortest_offer_start_request_date": "2023-08-23",
- "shortest_offer_change_request_date": "2023-08-23",
- "shortest_offer_end_request_date": null,
- "regions": [
- "jp1"
]
}, - {
- "id": "6c74f352-d6e1-9560-92ee-4b07a0c11d1a",
- "menu": "menu-name-2",
- "name_en": "Plan Name 2",
- "name_ja": "プラン名 2",
- "status": "Active",
- "type": "One-Shot",
- "has_quantity": true,
- "minimum_quantity": 1,
- "maximum_quantity": 1,
- "shortest_offer_start_request_date": "2023-08-25",
- "shortest_offer_change_request_date": "2023-08-25",
- "shortest_offer_end_request_date": null,
- "regions": [
- "jp2"
]
}
]
}
List Terms
List Terms
path Parameters
menu required | string Menu Name |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "terms": [
- {
- "type": "Creation",
- "text_en": "<p><span>Some text</span></p>",
- "text_ja": "<p><span>テキスト</span></p>"
}, - {
- "type": "Change",
- "text_en": "<p><span>Some text</span></p>",
- "text_ja": "<p><span>テキスト</span></p>"
}, - {
- "type": "Deletion",
- "text_en": null,
- "text_ja": null
}
]
}