Cloud Plans
console
  • Cloud Plans Reference
  • What is Cloud Plans
  • Starting with out tutorials
  • User Management
    • MFA
  • Support
  • Organization
    • Create
    • Select
    • Configure
    • Subscription
      • Add / Update
      • Cancel
    • Delete
    • Users
      • Add
      • Manage
      • MFA
    • Credentials
      • Create
        • Create Azure Service Principal
        • Create AWS Role
        • Create Google Cloud Bindings
      • Manage
    • Plans
      • Create
      • Update
      • Add Reources
      • Update Resources
      • Reorder Resources
      • Notifications
    • Jobs
    • History
    • Messages
  • USE
  • API Reference
    • Authentication
    • User
    • Organization
    • Billing
    • Organization Users
    • Credentials
    • Plans
    • Jobs
    • History
    • Messages
  • Terms
Powered by GitBook
On this page
  • List Users
  • Add a new user
  • Edit organization user
  • Remove user from Organization
  1. API Reference

Organization Users

List Users

GET /v1/organizations/users/list

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

QueryString

Name
Type
Description

action=users

string

Name of the user

org_id

number

The Organization ID

Response

{
  "status": 200,
  "users": [
    {
      "email": "string",
      "role": "string",
      "state": "string"
    }
  ],
  "mfa": {
    "view": bool,
    "create": bool,
    "update": bool,
    "delete": bool,
    "usersmgmt": bool
  }
}

Add a new user

POST /v1/organizations/users/add?action=add_user

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

org_id

string

The Organization ID

user_id

string

The user email

role

string

The role

state

string

active | inactive

Response

{
  "status": 200
}

Edit organization user

POST /v1/organizations/users/update?action=update_user

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Payload

Name
Type
Description

org_id

string

The Organization ID

user_id

string

The user email

role

string

The role

state

string

active | inactive

Response

{
  "status": 200
}

Remove user from Organization

POST /v1/organizations/users/remove?action=remove_user

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

org_id

string

The Organization ID

user_id

string

The user email

reason

string

The reason

Response

{
  "status": 200
}

PreviousBillingNextCredentials

Last updated 7 months ago