listUserApplications abstract method

  1. @POST.new('/admin/applications/list-by-owner')
Future<ListUserApplicationsResponse> listUserApplications({
  1. @Body.new() required ListUserApplicationsRequest body,
})

List applications owned by a user.

Lists all applications (OAuth2 clients and bots) owned by a specific user. Requires APPLICATION_LIST_BY_OWNER permission.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/applications/list-by-owner')
Future<ListUserApplicationsResponse> listUserApplications({
  @Body() required ListUserApplicationsRequest body,
});