Skip to main content
This function and all other functions in this graphql sdk are deprecated. Please migrate to the new rest api.
This operation is only available on the server.

Required Permissions

  • developer:manage_builds

Usage

import { whopSdk } from "@/lib/whop-sdk";

const result = await whopSdk.apps.unassignAppBuild({
	// The ID of the app to unassign the production build from.
	appId: "app_XXXXXXXX" /* Required! */,

	// What platform should be unassigned
	platform: "android" /* Valid values: android | ios | web */ /* Required! */,
});

Example output

const result = true;