transferApplicationOwnership abstract method

  1. @POST.new('/admin/applications/transfer-ownership')
Future<ApplicationUpdateResponse> transferApplicationOwnership({
  1. @Body.new() required TransferApplicationOwnershipRequest body,
})

Transfer application ownership.

Transfers application ownership to another user. Used when owner is inactive or for administrative recovery. Logged to audit log. Requires APPLICATION_TRANSFER_OWNERSHIP permission.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/applications/transfer-ownership')
Future<ApplicationUpdateResponse> transferApplicationOwnership({
  @Body() required TransferApplicationOwnershipRequest body,
});