Console API
  1. VPC
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. VPC

Get VPC List

Developing
GET
/api/v1/vmware/org/{org_id}/user/{user_id}/list/vpc

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
user_id
string 
required
field id - API User (User Info)
Query Params
regionId
string 
required
VN/SGN (Hồ Chí Minh) hoặc VN/HAN (Hà Nội)
Example:
VN/SGN
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//user//list/vpc?regionId=VN/SGN' \
--header 'OrgId: cd37c4a6-4103-469d-a3c7-a183fe22c5f9'

Responses

🟢200Success
application/json
Body
data
array [object {9}] 
required
id
string 
required
vdc_uuid
null 
required
tenant_id
string 
required
name
string 
required
status
string 
required
created_at
string 
required
ended_at
null 
required
data
null 
required
display_name
string  | null 
required
Example
{
    "data": [
        {
            "id": "14b4e879-5a38-4a66-8108-9bd9a155383f",
            "vdc_uuid": null,
            "tenant_id": "cd37c4a6-4103-469d-a3c7-a183fe22c5f9",
            "name": "LONG-TEST",
            "status": "ENABLED",
            "created_at": "2023-01-05T07:11:01",
            "ended_at": null,
            "data": null,
            "display_name": null
        },
        {
            "id": "f96c6715-2cc4-4684-b299-ef270ff14d53",
            "vdc_uuid": null,
            "tenant_id": "cd37c4a6-4103-469d-a3c7-a183fe22c5f9",
            "name": "BSS-PROD-VPC",
            "status": "ENABLED",
            "created_at": "2021-10-22T04:54:08",
            "ended_at": null,
            "data": null,
            "display_name": "BSS-PROD-VPC"
        },
        {
            "id": "0215b206-d91c-4361-8bf4-c187aef1f012",
            "vdc_uuid": null,
            "tenant_id": "f923d170-8a7c-4a25-b7b4-d0f9fdcf3e60",
            "name": "BSS-SGN10-VPC",
            "status": "ENABLED",
            "created_at": "2023-07-04T08:55:33",
            "ended_at": null,
            "data": null,
            "display_name": null
        }
    ]
}
Modified at 2024-01-22 10:24:15
Previous
Get Tenant Info
Next
Rename VPC
Built with