Apps monetization status

Learn how to query an account's app monetization status using the monday.com platform API

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

Queries

Get apps monetization status

  • 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

FieldTypeDescription
is_supportedBoolean!Whether the account supports app monetization.