Nurama Developers
Config

Get current platform configuration.

Returns the current platform configuration: validation limits, approved colours, roles and their permissions, billable roles, supported / restricted file types, supported media types per asset function, and feature flags for convos and link previews. Public — no authentication required.

GET
/config

Returns the current platform configuration: validation limits, approved colours, roles and their permissions, billable roles, supported / restricted file types, supported media types per asset function, and feature flags for convos and link previews. Public — no authentication required.

Response Body

application/json

curl -X GET "https://example.com/config"
{  "limits": {    "chat": {      "maxSubjectCharacterLength": 0,      "maxContentCharacterLength": 0,      "numberOfRecentMessages": 0,      "numberOfRecentReplies": 0,      "maxMessageResults": 0,      "maxReplyResults": 0,      "maxMemberChats": 0,      "maxMemberChatRecentMessages": 0    },    "chatMessage": {      "maxNumberOfAttachments": 0,      "maxNumberOfAnnotations": 0,      "maxNumberOfMentions": 0    },    "asset": {      "maxNameLength": 0,      "maxDownloadResults": 0,      "maxRepairResults": 0,      "maxPublishResults": 0    },    "membership": {      "maxMembershipRecords": 0    },    "project": {      "maxProjects": 0,      "maxNameLength": 0,      "maxDescriptionLength": 0,      "maxFeedResults": 0    },    "workspace": {      "maxWorkspacesPerUser": 0,      "maxNameLength": 0,      "maxDescriptionLength": 0    },    "folder": {      "maxNameLength": 0,      "maxDescriptionLength": 0,      "maxFolders": 0    },    "user": {      "minPasswordLength": 0,      "minUserNameLength": 0,      "maxUserNameLength": 0,      "maxFirstNameLength": 0,      "maxMiddleNameLength": 0,      "maxLastNameLength": 0,      "maxCompanyNameLength": 0,      "maxDisplayNameLength": 0    },    "notification": {      "maxNotificationResults": 0,      "maxNumberOfChannels": 0    },    "task": {      "maxTaskResults": 0    },    "subscription": {      "maxStarterProducts": 0    },    "summary": {      "maxSummaryResults": 0    },    "maxAssets": 0,    "tag": {      "maxNameLength": 0,      "maxTagsPerResource": 0    }  },  "colors": {    "approvedColors": [      "string"    ]  },  "rolesAndPermissions": {},  "billableRoles": [    "string"  ],  "supportedFileTypes": {},  "restrictedFileTypes": [    "string"  ],  "supportedMediaTypes": {    "attachment": [      "image",      "video",      "audio",      "file",      "3d",      "document"    ],    "media": [      "string"    ],    "avatar": [      "image"    ],    "logo": [      "string"    ],    "icon": [      "string"    ]  },  "convos": {    "enabled": true  },  "linkPreview": {    "enabled": true,    "provider": "string",    "externalUrl": "string"  }}