Region List (GET /v1/regions?region_id={region_id})
Displays the region list.
The list can be filtered by specifying the Region ID.
- {region_id}:
 - Intended Region ID .
 
Request Headers
Please refer to "Common API Items".
Request Parameter
None
Response Headers
Status
In the case of "normal", the status below will be returned.
- 200:
 - Successful completion
 
In case of abnormality, please refer to "Common API Error Information".
| Data Type | Cardinality | 
|---|---|
| Int | 1..1 | 
Response Elements
Regions
Container of region information.
| Data Type | Cardinality | Parent Element | Child Element(s) | 
|---|---|---|---|
| Element | 1..1 | None | id | 
Id
Region ID
| Data Type | Cardinality | Parent Element | Child Element(s) | 
|---|---|---|---|
| String | 1..* | regions | None | 
Example of Request
       GET /v1/regions
       HTTP/1.1
       Content-Type: application/json
       X-Auth-Token: "JpZCI6ICJjM2VlNzA4YTZhZTI0ZGRmOTJjMDc4..."
     
     
   Example of Response
       HTTP/1.1 200 OK
       Content-Length: 51
       Content-Type: application/json;charset=UTF-8
       {
       "regions": [
       {
       "id": "jp-east-1"
       },
       {
       "id": "uk-1"
       }
       ]
       }