API → Orgs → Set the enterprise price for an organizationhidden
You must be a Zoo employee to perform this request.
Parameters
Name
Type
Req.
The organization ID.
Returns
- 200 OK
successful operation
Name
Type
Req.
body
objectoptionalA struct of Zoo product subscriptions.
Object Properties
modeling_app
objectoptionalA modeling app subscription. A subscription tier we offer for the Modeling App.
Object Properties
Annual discount. The percentage off the monthly price if the user pays annually.
A description of the tier.
The name of the tier. An enum representing a Modeling App subscription tier name.
Possible values
free
: The free tier.pro
: The pro tier.team
: The team tier.enterprise
: The enterprise tier.
The amount of pay-as-you-go credits the individual or org gets outside the modeling app.
price
oneOfoptionalThe price of the tier per month. If this is for an individual, this is the price they pay. If this is for an organization, this is the price the organization pays per member in the org. This is in USD. The price for a subscription tier.
One of
enterprise
objectoptionalEnterprise: The price is not listed and the user needs to contact sales.
Object Properties
Possible values
enterprise
The options for sharable links through the modeling app.
The support tier the subscription provides. The support tier the subscription provides.
Possible values
community
: Community support.standard
: Standard support.premium
: Premium support.priority
: Priority support.
The behavior of the users data (can it be used for training, etc). An enum representing a subscription training data behavior.
Possible values
always
: The data is always used for training and cannot be turned off.default_on
: The data is used for training by default, but can be turned off.default_off
: The data is not used for training by default, but can be turned on.
type
oneOfoptionalIf the tier is offered for an individual or an org. An enum representing a subscription tier type.
One of
individual
objectoptionalA subscription tier that can be applied to individuals only.
Object Properties
Possible values
individual
organization
objectoptionalAn subscription tier that can be applied to organizations only.
The Zoo tools that you can call unlimited times with this tier.
$ curl -X PUT "https://api.zoo.dev/orgs/{id}/enterprise/pricing" \
--header "Authorization: Bearer $TOKEN" \
--header "Content-Type: application/json" \
--data '"{}"'
{
"modeling_app": {
"annual_discount": 27,
"description": "23J1kRh4epp1dTgzg0tWvDTT",
"features": [
{
"info": "4DjzTHoooKLkqq0QERkZuuEi"
}
],
"name": "pro",
"pay_as_you_go_credits": "23.53",
"price": {
"interval": "day",
"price": "5.35",
"type": "per_user"
},
"share_links": [
"public"
],
"support_tier": "standard",
"training_data_behavior": "default_off",
"type": {
"saml_sso": false,
"type": "organization"
},
"zoo_tools_included": [
"diff_chrome_extension"
]
}
}