Admin > Platform settings

The following endpoints allow you to inspect the settings of your Make platform instance.

Get default license

get
/admin/system-settings/default-license

Gets the default organization license for your Make White Label instance. Make uses the default organization license when you create a new organization without specifying the organization's license.

Required scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired

Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.

If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.

Responses
200

Successful response

application/json
get
/admin/system-settings/default-license
GET /api/v2/admin/system-settings/default-license HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
200

Successful response

{
  "defaultLicense": {
    "dslimit": 40,
    "fslimit": 2147483648,
    "iolimit": 10000,
    "apiLimit": 2000,
    "dsslimit": 524288000,
    "fulltext": true,
    "interval": 1,
    "transfer": 1099511627776,
    "operations": 80000000,
    "scenarioIO": true,
    "gracePeriod": 0,
    "executionTime": 45,
    "restartPeriod": "1 month",
    "customVariables": true,
    "creatingTemplates": true,
    "installPublicApps": true,
    "productManagement": "salesforce",
    "onDemandScheduling": true
  }
}

Last updated