getSubOrgIds method
Get all suborg IDs associated given a parent org ID and an optional filter.
Sign the provided TGetSubOrgIdsBody with the client's stamp function and submit the request (POST /public/v1/query/list_suborgs).
See also: stampGetSubOrgIds.
Implementation
Future<TGetSubOrgIdsResponse> getSubOrgIds({
required TGetSubOrgIdsBody input,
}) async {
return await request<TGetSubOrgIdsBody, TGetSubOrgIdsResponse>(
"/public/v1/query/list_suborgs",
input,
(json) => TGetSubOrgIdsResponse.fromJson(json));
}