Skip to main content

Update Config

Updates advanced configuration settings for an ECGrid ID.

Endpoint

POST /v2/ids/update-config

Request Body

FieldTypeRequiredConstraintsDescription
ecGridIdintegerYesMust be a valid ECGrid IDThe ECGrid ID to update configuration for

Additional configuration fields are applied alongside ecGridId. Submit only the fields you wish to change; omitted fields retain their current values.

{
"ecGridId": 123456
}

Response

Returns a success boolean confirming the configuration update.

{
"success": true,
"data": true
}

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/ids/update-config" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "ecGridId": 123456 }'

See Also