Superfy Platform API Documentation


Get Available Account Types API

Require Authentication

This API is used to get available account types in Superfy Platform system.


URL

api/general/accounttypes

Required parameter

Optional parameter

Example JSON Payload


Possible return HTTP status code

Return message

{
  "status": "success",
  "message": [
    {
      "licenseTypeID": 1,
      "licenseTypeName": "Town Plan",
      "allowTrial": "Y",
      "price": [
        {
          "locale": "AU",
          "currencyCode": "AUD",
          "price": 79,
          "paymentPeriod": "monthly"
        }
      ],
      "user_limit": 1,
      "project_limit": 1,
      "pin_limit": 100
    },
    {
      "licenseTypeID": 2,
      "licenseTypeName": "City Plan",
      "allowTrial": "Y",
      "price": [
        {
          "locale": "AU",
          "currencyCode": "AUD",
          "price": 99,
          "paymentPeriod": "monthly"
        }
      ],
      "user_limit": 5,
      "project_limit": 5,
      "pin_limit": 1000
    },
    {
      "licenseTypeID": 3,
      "licenseTypeName": "Metro Plan",
      "allowTrial": "Y",
      "price": [
        {
          "locale": "AU",
          "currencyCode": "AUD",
          "price": 129,
          "paymentPeriod": "monthly"
        }
      ],
      "user_limit": 100,
      "project_limit": -1,
      "pin_limit": 10000
    }
  ]
}

Note:
"licensePeriod": empty string means unlimited period (no expired date). "+30 days" means account only valid until 30 days after registration date.
"paymentPeriod" may contain "monthly" (for monthly payment / monthly subscription), "annually" (for annual payment / annual subscription), or "onetime" (for one time payment only).
"user_limit" contains number of allowed users in the same company. If its value is -1, it means that it is unlimited.
"project_limit" contains number of allowed projects in the same company. If its value is -1, it means that it is unlimited.
"pin_limit" contains number of allowed pins/bins/assets in all projects in the same company. If its value is -1, it means that it is unlimited.