# Update global variable
You can update a global variable.
PUT /global-variables/:id/
| Attributes | Type | Required | Description |
|---|---|---|---|
| id | integer | yes | A unique identifier for the global variable which is given by User.com automatically. |
| author | integer | no | A unique identifier of an agent who created a global variable. A visible author. |
| integer_content | integer | no | An integer value of a global variable. |
| name | string | no | A global variable name. |
| text_content | string | no | A text value of a global variable. Can be used to store HTML code, string, or JSON. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X PUT -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
"text_content": "February Promotions"
}' "https://<your_app_subdomain>.user.com/api/public/global-variables/:id/"