added

New max_units argument on set mock app subscription mutations

API version: 2025-04

You can now use the max_units argument in set_mock_app_subscription mutations to define the maximum number of seats allowed on a mock plan for seat-based apps.

mutation {
  set_mock_app_subscription (
       app_id: 12345,
       partial_signing_secret: "abcde12345",
       is_trial: true,
       plan_id: "basic_plan_15_users",
    	 max_units: 15
  ) {
    plan_id
  }
}