Console API
  1. Tenant / Regions
Console API
  • User
    • User Info
      GET
  • Tenant / Regions
    • Get Regions & Tenant info
      GET
    • Get Tenant Info
      GET
  • VPC
    • Get VPC List
      GET
    • Rename VPC
      PUT
  • Images
    • Get images
      GET
  • Flavors
    • Get flavors
      GET
  • Storage Policy
    • List
      GET
  • Instances
    • List
      GET
    • Detail
      GET
    • Security Group
      GET
    • Create instance
      POST
    • Power off
      POST
    • Reboot
      POST
    • Power on
      POST
    • Terminate
      POST
    • Resize
      POST
    • Lock Termination
      POST
    • Rename
      POST
    • Manage tag
      POST
  • Subnet
    • List
      GET
    • Create
      POST
    • Rename
      PUT
    • Delete
      DELETE
    • Manage tags
      POST
  • Security group
    • Security Group List
    • Security Group Detail
    • Rule Types
    • Create Security Group
    • Create Rule
    • Apply to private ip
    • Delete Rule
    • Delete security group
    • Manage tag
  • Floating IP
    • List
    • Allocate
    • Connect to instance
    • Disconnect
    • Release
    • Manage tag
  • Activity Logs
    • List
  • Tags
    • Lists
  • Iam
    • Add user to user group
    • Get all user groups
    • Create user group
    • Update user group
    • Get roles
    • Get user vpcs
  • Billing
    • Bill
      • Get bills by date
      • Get Bills by paging
      • Bill Info
      • Bill service types
  • Project
    • Get projects
  • S3
    • Get bucket policy
    • List buckets
    • Get s3 service enabled
  1. Tenant / Regions

Get Regions & Tenant info

GET
/api/v1/vmware/org/{org_id}/list/regions

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
org_id
string 
required
Header Params
OrgId
string 
required
Example:
cd37c4a6-4103-469d-a3c7-a183fe22c5f9

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/vmware/org//list/regions' \
--header 'OrgId: cd37c4a6-4103-469d-a3c7-a183fe22c5f9'

Responses

🟢200Success
application/json
Body
data
array [object {7}] 
required
id
string 
required
name
string 
required
desc
null 
required
created_at
string 
required
status
string 
required
data
null 
required
abbreviation_name
string 
required
tenant
object 
required
id
string 
required
name
string 
required
type
string 
required
status
string 
required
enable_check_quota
null 
required
enable_pay_as_you_go
null 
required
is_created_resource
null 
required
data
null 
required
created_at
string 
required
Example
{
    "data": [
        {
            "id": "VN/HAN",
            "name": "Hanoi (Vietnam)",
            "desc": null,
            "created_at": "2021-05-06T04:21:21",
            "status": "ENABLED",
            "data": null,
            "abbreviation_name": "hanoi-vn"
        },
        {
            "id": "VN/SGN",
            "name": "Saigon (Vietnam)",
            "desc": null,
            "created_at": "2021-05-06T04:21:21",
            "status": "ENABLED",
            "data": null,
            "abbreviation_name": "saigon-vn"
        }
    ],
    "tenant": {
        "id": "cd37c4a6-4103-469d-a3c7-a183fe22c5f9",
        "name": "000013-L-Company-T",
        "type": "ENTERPRISE",
        "status": "ENABLED",
        "enable_check_quota": null,
        "enable_pay_as_you_go": null,
        "is_created_resource": null,
        "data": null,
        "created_at": "2021-10-22T04:54:00"
    }
}
Modified at 2025-01-09 03:32:48
Previous
User Info
Next
Get Tenant Info
Built with