getBoardByFilterId method
Returns any boards which use the provided filter id. This method can be executed by users without a valid software license in order to find which boards are using a particular filter.
Implementation
Future<Map<String, dynamic>> getBoardByFilterId(
{int? startAt, int? maxResults, required int filterId}) async {
return await _client.send(
'get',
'rest/agile/1.0/board/filter/{filterId}',
pathParameters: {
'filterId': '$filterId',
},
queryParameters: {
if (startAt != null) 'startAt': '$startAt',
if (maxResults != null) 'maxResults': '$maxResults',
},
) as Map<String, Object?>;
}