Skip to main content

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_idstringREQUIRED
Unique string identifier for the configuration map containing application settings and UI display parameters
Example:"pikachu-config-001"

Response

200Configuration map retrieved successfully
successbooleanREQUIRED
Boolean flag indicating whether the configuration retrieval operation completed successfully
Example:
true
messagestringREQUIRED
Human-readable status message confirming successful configuration map retrieval
Example:"Configuration map fetched successfully"
dataobjectREQUIRED
Configuration 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

BASH Request (cURL)
curl -X GET "http://localhost:8000/workflows/v1/configmap/pikachu-config-001"