API → OrgsSet the enterprise price for an organization
hidden

Parameters

Name

Type

Req.

  • id

    string / UUID
    required
  • bodyapplication/json

    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

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
/orgs/{id}/enterprise/pricing
$ curl -X PUT "https://api.zoo.dev/orgs/{id}/enterprise/pricing" \
	--header "Authorization: Bearer $TOKEN" \
	--header "Content-Type: application/json" \
	--data '"{}"'
200 OK
Response
{
  "modeling_app": {
    "description": "GjLz",
    "features": [
      {
        "info": "jNecTPY1miEqlRIBMbxZnPv2NR7izWwRp2gWz0AYTA1WSRnnhhAjqwXt82ec"
      }
    ],
    "name": "pro",
    "pay_as_you_go_credits": "6.70",
    "price": {
      "type": "enterprise"
    },
    "support_tier": "community",
    "training_data_behavior": "default_off",
    "type": {
      "saml_sso": false,
      "type": "organization"
    },
    "zoo_tools_included": [
      "modeling_app"
    ]
  }
}