Configuration management
Workflow and system configuration management including configuration retrieval, updates, and configuration maps.
Authentication
None
No authentication required for configuration management operations
Endpoints
Get Configuration Map
GET/workflows/v1/configmap/{config_map_id}
Retrieve application configuration settings and display parameters by configuration map identifier. Returns structured configuration data used by the Atlan UI for rendering workflow forms and validation rules.
Path Parameters
config_map_id
stringREQUIREDUnique string identifier for the configuration map containing application settings and UI display parameters
Example:
"pikachu-config-001"
Response
200Configuration map retrieved successfully
success
booleanREQUIREDBoolean flag indicating whether the configuration retrieval operation completed successfully
Example:
true
message
stringREQUIREDHuman-readable status message confirming successful configuration map retrieval
Example:
"Configuration map fetched successfully"
data
objectREQUIREDConfiguration map data
Error Codes
400
Bad Request
Invalid configuration parameters or malformed JSON payload
401
Unauthorized
Missing or invalid authentication token
404
Not Found
Configuration or configuration map not found
500
Internal Server Error
Configuration storage or retrieval error
Code examples - Get Configuration Map
- cURL
- Python
BASH Request (cURL)
curl -X GET "http://localhost:8000/workflows/v1/configmap/pikachu-config-001"
Python Request (Python)
import requests
response = requests.get(
"http://localhost:8000/workflows/v1/configmap/pikachu-config-001"
)
config_map = response.json()