Get Global Variable by Name
Fetch a single global variable by its name. The response includes the full variable object including checksum — copy this before calling update or delete.
The value field is masked as *** when isSecret is true.
Fetch a single global variable by its name.
Response data includes the full variable object: name, dataType, value (masked for secrets), isSecret, canReset, checksum, createdAt, updatedAt.
Copy data.checksum from this response before calling update or delete.
Canonical response file: Get/GET_BY_NAME.json
Your Nected API key. Obtain from workspace settings.
The variable name (as set on create)
tax_rate_gstBranch name (optional)
OK — full variable object
Standard response wrapper for single-variable operations (create, get-by-name, update)
successSuccess.Not Found — no variable with that name
Internal Server Error
GET /dev/variable/{name} HTTP/1.1
Host: api.nected.ai
Nected-API-Key: YOUR_API_KEY
Accept: */*
{
"data": {
"name": "tax_rate_gst",
"dataType": "numeric",
"value": 18,
"isSecret": false,
"canReset": true,
"checksum": "a3f1b2c4d5e6f7a8b9c0d1e2f3a4b5c6",
"createdAt": "2026-01-10T10:00:00.000Z",
"updatedAt": "2026-04-22T08:30:00.000Z"
},
"code": "success",
"message": "Success."
}Example response (full JSON)
Use the API reference below to try the endpoint.
Last updated