API → PaymentsUpdate the subscription for an org

Parameters

Name

Type

Req.

  • bodyapplication/json

    object
    optional
    Object Properties
    • modeling_app

      string
      optional
      Possible values
      • team:  The team tier.
      • enterprise:  The enterprise tier.

Returns

  • 200 OK

    successful operation

    Name

    Type

    Req.

    body

    object
    optional
    Object Properties
    • modeling_app

      object
      optional
      Object Properties
      • description

        string
        optional
      • features

        array
        optional
        Array of
      • name

        string
        optional
        Possible values
        • free:  The free tier.
        • pro:  The pro tier.
        • team:  The team tier.
        • enterprise:  The enterprise tier.
      • pay_as_you_go_credits

        number / USD Price
        optional
      • price

        oneOf
        optional
        One of
        • flat

          object
          optional
          Object Properties
          • interval

            string
            optional
            Possible values
            • day:  Day.
            • month:  Month.
            • week:  Week.
            • year:  Year.
          • price

            number / USD Price
            optional
          • type

            string
            optional
            Possible values
            • flat
        • per_user

          object
          optional
          Object Properties
          • interval

            string
            optional
            Possible values
            • day:  Day.
            • month:  Month.
            • week:  Week.
            • year:  Year.
          • price

            number / USD Price
            optional
          • type

            string
            optional
            Possible values
            • per_user
        • enterprise

          object
          optional
          Object Properties
          • type

            string
            optional
            Possible values
            • enterprise
      • support_tier

        string
        optional
        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

        oneOf
        optional
        One of
        • individual

          object
          optional
          Object Properties
          • type

            string
            optional
            Possible values
            • individual
        • organization

          object
          optional
          Object Properties
          • saml_sso

            boolean
            optional
          • type

            string
            optional
            Possible values
            • organization
      • zoo_tools_included

        array
        optional
put
/org/payment/subscriptions
$ curl -X PUT "https://api.zoo.dev/org/payment/subscriptions" \
	--header "Authorization: Bearer $TOKEN" \
	--header "Content-Type: application/json" \
	--data '{
  "modeling_app": "team"
}'
200 OK
Response
{
  "modeling_app": {
    "description": "WjH15i",
    "features": [
      {
        "info": "3C9JUT0YOh4vOv1NgrvSCRrGq4veLREF9zryNRkSwxGH08g9ciWGTwtyw2oXym"
      }
    ],
    "name": "enterprise",
    "pay_as_you_go_credits": "40.65",
    "price": {
      "interval": "month",
      "price": "92.93",
      "type": "per_user"
    },
    "support_tier": "standard",
    "training_data_behavior": "default_on",
    "type": {
      "type": "individual"
    },
    "zoo_tools_included": [
      "text_to_cad"
    ]
  }
}