Add or remove a Member Variable from the profile

Use the profileVariable category to control whether a specific Member Variable will appear in the UI for the purposes of targeting members, exporting data, and reporting.

By default, new Member Variables will be assigned to the profileVariable category. They can also be removed from the profileVariable category by a community admin via the UI.

Remove from the profile

Example: PATCH /membervariables/{memberVariableId}

[
   {
      "Op": "Remove",
      "Path": "/categories/profileVariable",
      "Value": ""
   }
]

Add to the profile

Example: PATCH /membervariables/{memberVariableId}

[
   {
      "Op": "Add",
      "Path": "/categories/-",
      "Value": "profileVariable"
   }
]