Sidebar sections help you display custom data for each company or person in each thread. Display things like their pricing tier, usage, an impersonation button, activation milestones and more to enable an excellent and fast support experience for your customers.

How to

In your Sidebar Sections settings you specify the endpoint that returns the JSON data of your components. This handler also takes care of fetching and parsing data to be represented. You can also provide headers optionally when creating a Sidebar Section.

The specified endpoint can handle complex data and integrate multiple data sources. In the end it is important that it returns your customized components structure. The following shows an example using NextJS.

  1. Create the function that serves the request under e.g. pages/api/sidebar/section.ts.
export default async function handler(
  req: NextApiRequest,
  res: NextApiResponse
) {

  return res.status(200).json({
    components: [
      ... // Components structure
    ]
  })
}
  1. Integrate data sources and fetch all data you want e.g. Stripe, Prisma, etc.
export default async function handler(
  req: NextApiRequest,
  res: NextApiResponse
) {
  // Use email
  const email = (req.body as { email: string; threadId: string }).email;

  // Fetch for customer data
  const customer = await prisma.customer.findUnique({
    where: {
      email,
    },
  });

  // Get subscription from customer
  const { items } = await stripe.subscriptions.retrieve(
    customer.subscriptionId
  );

  // Take priceId from first subscription
  const priceId = items.data[0]?.price.id;

  return res.status(200).json({
    components: [
      {
        // Components structure
        type: "row",
        left: [
          {
            type: "text",
            color: "normal",
            size: "m",
            text: "Current price",
          },
        ],
        right: [
          {
            type: "text",
            color: "muted",
            size: "s",
            text: priceId,
          },
        ],
      },
    ],
  });
}

Request Body

The request body contains:

  • threadId: string
  • email: string

Back on the Thread View you will find a new section with the title and the data you are displaying.

Components

We provide you with a set of components including text and button to help you build your custom data integration. Each component needs to be included in a row which is separated by a left and right section for proper vertical and horizontal layout. Choose the attributes you want to apply and add them into a JSON response from your endpoint.

Row

TypeAttributes
Rowright, left

Example

{
  type: "row",
	left: [
		{ type: "text", color: "normal", size: "m", text: "Events sent" },
		{ type: "text", color: "muted", size: "s", text: "This billing period" },
	],
	right: [{ type: "badge", color: "green", text: "593 of 1000" }],
}

Text

TypeAttributes
Textcolor, size, text

Example

{
  type: "text",
  color: "normal | muted",
  size: "s | m | l",
  text: "Events sent"
}

Badge

TypeAttributes
Badgecolor, text

Example

{
  type: "badge",
  color: "green",
  text: "593 of 1000"
}

Spacer

TypeAttributes
Spacersize

Example

{
  type: "spacer",
  size: "s | m | l"
}

LinkButton

TypeAttributes
LinkButtonsize, label, url

Example

{
  type: "linkButton",
  label: "View usage",
  url: "https://google.com"
}

Full example

One full example might look like the following. You need to return this structure from your defined webhook/endpoint in order to be rendered as Custom Sidebar Cards.

const components = [
  {
    type: "row",
    left: [
      { type: "text", color: "normal", size: "m", text: "Events sent" },
      { type: "text", color: "muted", size: "s", text: "This billing period" },
    ],
    right: [{ type: "badge", color: "green", text: "593 of 1000" }],
  },
  { type: "spacer", size: "m" },
  {
    type: "row",
    left: [{ type: "text", color: "muted", size: "s", text: "Last 24 hours" }],
    right: [{ type: "text", color: "normal", size: "m", text: "46" }],
  },
  { type: "spacer", size: "m" },
  {
    type: "row",
    left: [{ type: "text", color: "muted", size: "s", text: "Last 7 days" }],
    right: [{ type: "text", color: "normal", size: "m", text: "297" }],
  },
  { type: "spacer", size: "m" },
  { type: "linkButton", label: "View usage", url: "https://google.com" },
];