# Update global variable by id

You can update a global variable by using a custom_id.

PUT /global-variables-by-id/:custom_id/

Attributes Type Required Description
custom_id string yes A unique identifier for the global variable which is provided by the client.
language string no ISO 639-1 code of the language.
parent integer no An id of the parent global variable.
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-by-id/:custom_id/"