Console API
  1. Iam
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
    • Create
    • Rename
    • Delete
    • Manage tags
  • 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
      POST
    • Get all user groups
      GET
    • Create user group
      POST
    • Update user group
      PUT
    • Get roles
      GET
    • Get user vpcs
      GET
  • 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. Iam

Get all user groups

GET
api/v1/vmware/vpc/{vpc_id}/iam/user-group/all

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
vpc_id
string 
required

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/vpc//iam/user-group/all'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "data": [
        {
            "id": "acc10c34-26d7-4770-a069-44c220c53abe",
            "name": "group name",
            "description": null,
            "is_active": true,
            "created_at": "2024-02-27T07:55:18",
            "updated_at": "2024-05-30T10:53:29",
            "tenant_id": "fca7317b-b5ab-4db4-9272-796f37b4105b",
            "resources": [
                {
                    "id": "57401539-ca81-467b-b5eb-55e59f3628f7",
                    "vdc_uuid": null,
                    "tenant_id": "fca7317b-b5ab-4db4-9272-796f37b4105b",
                    "name": "vpc name",
                    "status": "ENABLED",
                    "created_at": "2023-10-05T03:19:36",
                    "ended_at": null,
                    "data": null,
                    "display_name": null,
                    "vdc_group_id": null,
                    "infra_vpc_id": ""
                },
                {
                    "id": "c980d8d8-8de1-446f-bf3c-43c9d38a4dcf",
                    "vdc_uuid": null,
                    "tenant_id": "fca7317b-b5ab-4db4-9272-796f37b4105b",
                    "name": "vpc name 2",
                    "status": "ENABLED",
                    "created_at": "2023-02-27T04:33:04",
                    "ended_at": null,
                    "data": null,
                    "display_name": null,
                    "vdc_group_id": null,
                    "infra_vpc_id": ""
                }
            ]
        }
    ]
}
Modified at 2024-09-16 04:44:56
Previous
Add user to user group
Next
Create user group
Built with