Setting Extended Attributes REST

Is there an example of how to add extended attributes when creating a thread with the rest api?

According to the documentation the type is RestExtendedAttribute but I can't find any example of how this would be sent. 

Parents
  • Former Member
    +1 Former Member

    This isn't documented well because ExtendedAttributes are somewhat of a legacy feature due to its fragility and lack of security. However, you can add/update Extended Attributes using the syntax:

    __ExtendedAttributes_<FieldName> = "<FieldValue>"

    you can set <FieldValue> to an empty string to delete the ExtendedAttribute.

    Edit: there should be two underscores at the beginning.

Reply
  • Former Member
    +1 Former Member

    This isn't documented well because ExtendedAttributes are somewhat of a legacy feature due to its fragility and lack of security. However, you can add/update Extended Attributes using the syntax:

    __ExtendedAttributes_<FieldName> = "<FieldValue>"

    you can set <FieldValue> to an empty string to delete the ExtendedAttribute.

    Edit: there should be two underscores at the beginning.

Children