Get project settings

Returns bounded public project settings. Raw GUI module JSON is not included.

GET/api/v1/projects/:id/settings

Authorization

projects:readapi key scoperequired
Required scope when calling with an API key.

Path parameters

idstringrequired
Project ID

Example: proj_abc123

Request

curl -X GET "https://www.digitalstack360.com/api/v1/projects/proj_abc123/settings" \
  -H "Authorization: Bearer $DS_API_KEY"

Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.

Response

200 OK
{
  "data": {
    "project_id": "proj_abc123",
    "workflow_mode": "guided",
    "ticket_prefix": "ACME"
  }
}

Errors

401
missing_auth

No credentials provided

401
invalid_api_key

API key is invalid or revoked