API → Payments → Create the subscription for a user
Parameters
Name
Type
Req.
bodyapplication/json
objectoptionalObject Properties
Possible values
free
: The free tier.pro
: The pro tier.
Returns
- 201 Created
successful creation
Name
Type
Req.
body
objectoptionalObject Properties
modeling_app
objectoptionalObject Properties
Possible values
free
: The free tier.pro
: The pro tier.team
: The team tier.enterprise
: The enterprise tier.
price
oneOfoptionalOne of
enterprise
objectoptionalObject Properties
Possible values
enterprise
Possible values
community
: Community support.standard
: Standard support.premium
: Premium support.priority
: Priority support.
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
oneOfoptionalOne of
individual
objectoptionalObject Properties
Possible values
individual
organization
objectoptional
post
/user/payment/subscriptions$ curl -X POST "https://api.zoo.dev/user/payment/subscriptions" \
--header "Authorization: Bearer $TOKEN" \
--header "Content-Type: application/json" \
--data '{
"modeling_app": "free",
"pay_annually": true
}'
201 Created
Response{
"modeling_app": {
"annual_discount": 2,
"description": "tOp6yN",
"features": [
{
"info": "gSde9dz"
}
],
"name": "enterprise",
"pay_as_you_go_credits": "73.48",
"price": {
"type": "enterprise"
},
"share_links": [
"password_protected"
],
"support_tier": "community",
"training_data_behavior": "default_on",
"type": {
"type": "individual"
},
"zoo_tools_included": [
"text_to_cad"
]
}
}