Create a new organization for a User
POST/v1/organizations
Create a new organization for a User
Request
- application/json
Body
required
name stringrequired
Possible values: <= 50 characters
The name of the organization
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
The unique ID of the organization
name stringrequired
The name of the organization
plan object
name stringrequired
Possible values: [pro_monthly
, pro_yearly
, team_monthly
, team_yearly
]
The name of the organization's plan
status stringrequired
Possible values: [PENDING
, ACTIVE
, INCOMPLETE
, CANCELED
]
The status of the organization's plan
{
"id": "abc123",
"name": "My Organization",
"plan": {
"name": "pro_monthly",
"status": "PENDING"
}
}
Loading...