Add dynamic attributes to a record

  • Versão de lançamento: Australia
  • Atualizado 12 de mar. de 2026
  • 1 min. de leitura
  • Store dynamic attributes and their values on a record.

    Antes de Iniciar

    Role required: none

    To add attributes to a dynamic attribute store field, you must have write access to the table where the store field is located.

    Por Que e Quando Desempenhar Esta Tarefa

    Once you create a dynamic attribute store field and set up the dynamic categories and dynamic attributes for its namespace, you can use one or more of the dynamic attributes to describe your records.

    Procedimento

    1. Navigate to the table that holds your dynamic attribute store field.
    2. Create a record by selecting New.
    3. Opcional: In the category reference field, select the dynamic category that contains the dynamic attributes that you want to use.
    4. Capture one or more dynamic attributes in the dynamic attribute store field by entering JSON or using the API.
      OptionDescription
      Enter JSON Enter one or more attributes and values in the dynamic store field. For example:
      { "watts: 50" , "screen_size": "75", "screen_type" : "OLED" }
      Use the API Call setValue() in the GlideRecord API and send data to the dynamic attribute store field. For example:
      var gr = new GlideRecord(‘products’);
      gr.setValue(‘televisions->watts’, '50');
      gr.setValue(‘televisions->screen_size’, '75');
      gr.setValue(‘televisions->screen_type, 'OLED');
      gr.insert();

    Resultado

    One or more dynamic attributes and their values are stored in the record. Users can query for records that have some value for an attribute. For example:

    var gr = new GlideRecord(‘products’);
    gr.addQuery(‘televisions->screen_type', ‘OLED’);
    gr.query();