API → PaymentsGet the subscription for a user

Parameters

No parameters

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
get
/user/payment/subscriptions
$ curl "https://api.zoo.dev/user/payment/subscriptions" \
	--header "Authorization: Bearer $TOKEN"
200 OK
Response
{
  "modeling_app": {
    "description": "0bx3JC",
    "features": [
      {
        "info": "w6L72ATqbTUN50nhnJbDQ2DeuBYpvBpbotnjYlLToki"
      }
    ],
    "name": "team",
    "pay_as_you_go_credits": "15.29",
    "price": {
      "interval": "month",
      "price": "17.67",
      "type": "per_user"
    },
    "support_tier": "priority",
    "training_data_behavior": "default_off",
    "type": {
      "saml_sso": false,
      "type": "organization"
    },
    "zoo_tools_included": [
      "text_to_cad"
    ]
  }
}