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 Organizations
  • Create Organization
  • Update Organization
  • Remove Organization
  1. API Reference

Organization

List Organizations

GET /v1/organizations/list

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

QueryString

Name
Type
Description

action=list

string

The action (will not be needed soon)

Response

{
  "status": 200,
  "data": {
    "organizations": [
       {
         "org_id": "string",
         "org_name": "string",
         "role": "string",
         "owner": "string",
         "resources": number
        } 
    ]
  }
}

Create Organization

POST /v1/organizations/create

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query String

Name
Type
Description

action=create

string

The action (will not be needed soon)

Response

{
  "status": 200,
  "response": {
    "id": "string"
  }
}

Update Organization

POST /v1/organizations/update?action=update

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Querystring

Name
Type
Description

org_id

string

The Organization ID

action=update

number

The action (will not be needed soon)

Response

{
  "status": 200
}

Remove Organization

POST /v1/organizations/remove?action=remove

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

org_id

string

The Organization ID

Response

{
  "status": 200
}

PreviousUserNextBilling

Last updated 7 months ago