added

New `app` fields

🏷️ API version: 2025-10

You can now return additional data about apps via the API using the following new fields:

  • account_id
  • collaborators
  • created_by
  • description
  • permissions
  • slug
  • status
  • webhook_url
query {
  app (id: 123456) {
    account_id
    collaborators {
      id
      name
    }
    created_by
    description
    permissions
    slug
    status
    webhook_url
  }
}