> ## 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.

# Onboarding

> This event is sent after bulk onboarding

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 the event <br />
      <strong>Value:</strong> success, parital_success, failed
    </>
  ),
},
{
  name: "failed",
  type: "array",
  desc: (
    <>
      An array of the data that failed <br />
    </>
  ),
},
]}
/>

###

<ResponseExample>
  ```json Success theme={null}
  Success
  {
    "event": "USER_ONBOARDING"
    "status": "success",
    "failed": []
  }

  //Partial Success
  {
    "event": "USER_ONBOARDING"
    "status": "partial_success",
    "failed": [
      {"user":"ceede6ba-bc5b-460b-a056-b28e5bce803b","reason":"duplicate key value violates unique constraint \"UQ_e38c53eed7cc80d27d280388381\""},
      {"user":"19fdddc7-6f0f-4408-b132-55b6ac734ce7","reason":"duplicate key value violates unique constraint \"UQ_e38c53eed7cc80d27d280388381\""},
      {"user":"4d7b55c0-716e-4db1-8c01-91f5922746b4","reason":"duplicate key value violates unique constraint \"UQ_e38c53eed7cc80d27d280388381\""}
    ]
  }
  ```
</ResponseExample>
