HomeGuidesRecipesAPI ExplorerForumSupport
Partner Portal
Partner Portal

Receivables

The Receivables component is a comprehensive React component that renders the entire Receivables page. The component integrates the functionalities of the ReceivablesTable component and includes the ability to view receivable details.


📘

Permissions

To access this component, the entity user must have read permissions for the receivable object. To create, edit, and delete receivables, they must also have create, update, or delete permissions for the receivable object. For more information, see List of permissions.

Preview

`Receivables` component preview.

Receivables component preview.

Usage

Bring in the Receivables component into your application as shown:

import { Receivables } from "@monite/sdk-react"

...

// TODO: This component must be rendered within the MoniteProvider wrapper
const ReceivablesPage = () => {
  return <Receivables />
};