> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bvndle.com/llms.txt
> Use this file to discover all available pages before exploring further.

# User Tag Update

> This event is sent after a user tag has been updated

export const Table = ({data = []}) => <div className="text-sm font-mono">
    <div style={{
  gap: 10,
  display: "grid",
  padding: "5px 10px",
  backgroundColor: "#F7F9FB",
  color: "rgba(25,27,31,0.6)",
  gridTemplateColumns: "repeat(3, minmax(0, 1fr))"
}}>
      <span>name</span>
      <span>type</span>
      <span>Description</span>
    </div>
    {data?.map((item, idx) => <div key={idx} style={{
  gap: 10,
  display: "grid",
  padding: "8px 10px",
  color: "rgba(25,27,31,0.8)",
  gridTemplateColumns: "repeat(3, minmax(0, 1fr))"
}}>
        <span className="break-words">{item.name}</span>
        <span>{item.type}</span>
        <span>{item.desc}</span>
      </div>)}
  </div>;

#####

<Table
  data={[
{
  name: "event",
  type: "string",
  desc: "The name of the event",
},
{
  name: "status",
  type: "string",
  desc: (
    <>
      The status of event <br />
      <strong>Value:</strong> success <br />
      partial_success, failed
    </>
  ),
},
{
  name: "failed",
  type: "array",
  desc: "An array of the data that failed",
},
{
  name: "data",
  type: "object",
  desc: "An object of the user information",
},
]}
/>

<ResponseExample>
  ```json Success theme={null}
  {
    "event": "USER_PROFILE_UPDATE",
    "status": "success",
    "data": {
      "userId": "3f3a51e9-492b-4270-a530-e4d1169dd6a7",
      "partnerId": "eacad691-85c5-4b52-a311-345e23ac6b99",
      "tag": "iheonu21"
    },
    "failed": []
  }
  ```
</ResponseExample>
