Apps monetization status

The monday.com apps framework utilizes monetization to accept and process payments within the platform itself.

Queries

You can use the apps_monetization_status query to retrieve an account’s monetization status via the API.

  • Returns a boolean representing whether an account supports monetization
  • Can only be queried directly at the root; can’t be nested within another query
$ query {
> apps_monetization_status {
> is_supported
> }
> }
$import { ApiClient } from "@mondaydotcomorg/api";
>const mondayApiClient = new ApiClient({ token: myToken });
>
>const query = "query { apps_monetization_status { is_supported } }";
>const response = await mondayApiClient.request(query);

Fields

You can use the following field to specify what information your apps_monetization_status query will return.

FieldDescription
is_supported Boolean!Whether the account supports app monetization.