Get project settings
GET {{baseUrl}}/api/v2/projects/:projectId/settings
Get project settings. You obtain the authorization token needed to execute the request using POST /auth/login. You obtain the project ID using GET /projects. You pass the authorization token and the project ID in the request header.
Body
PARAM
Key | Datatype | Required | Description |
fields
|
null | Comma-separated, top-level field whitelist that allows the client to selectively retrieve part of the response model. If specified, extra filtering is applied, and for top-level object (if root model is an array, each array element), only the listed fields are kept in the response. For example, "id,elements" keeps only the "id" field and whole "elements" array field, omitting all other fields in the top-level response model. |
HEADERS
Key | Datatype | Required | Description |
X-MSTR-AuthToken
|
string | (Required) Authorization token |
RESPONSES
status OK
{
"enableDeleteObjectDependencies": {
"value": false
},
"appendInfoForEmailDelivery": {
"value": [
"recipient_name",
"owner_name",
"report_document_name",
"project_name",
"delivery_method",
"schedule",
"subscription_name",
"delivery_status",
"date",
"time",
"email_address",
"error_message"
]
},
"cacheEncryptionLevel": {
"value": 0
},
"maxEmailSubscriptionCount": {
"value": -1
},
"dynamicSourcingOuterJoin": {
"value": false
},
"maxDataUploadSize": {
"value": 31457280
},
"fileCompressionLevel": {
"value": 6
},
"showBaseViewInLibrary": {
"value": "use_inherited_value"
},
"maxReportExecutionTime": {
"value": 600
},
"maxJobPerUserAccount": {
"value": 100
},
"appendInfoForHistoryListDelivery": {
"value": [
"recipient_name",
"owner_name",
"report_document_name",
"project_name",
"delivery_method",
"schedule",
"subscription_name",
"delivery_status",
"date",
"time",
"link_to_history_list",
"error_message"
]
},
"enableFileDeliveryNotification": {
"value": true
},
"emailAddressForFTPDelivery": {
"value": ""
},
"appendTextForCacheCreation": {
"value": ""
},
"nullDisplayForWarehouse": {
"value": ""
},
"enableEmailCompression": {
"value": true
},
"appendTextForEmailDelivery": {
"value": ""
},
"emailCompressionExtension": {
"value": "zip"
},
"maxPersonalViewSubscriptionPerUser": {
"value": -1
},
"createUpdateCaches": {
"value": true
},
"recordReportJobSteps": {
"value": false
},
"enableEmailDeliveryNotification": {
"value": true
},
&qu Curl curl -X GET 'baseUrl/api/v2/projects/:projectId/settings?fields=' -H 'X-MSTR-AuthToken: authToken' ENDPOINTS |