getVerifiedSubOrgIds method

Future<TGetVerifiedSubOrgIdsResponse> getVerifiedSubOrgIds({
  1. required TGetVerifiedSubOrgIdsBody input,
})

Get all email or phone verified suborg IDs associated given a parent org ID.

Sign the provided TGetVerifiedSubOrgIdsBody with the client's stamp function and submit the request (POST /public/v1/query/list_verified_suborgs).

See also: stampGetVerifiedSubOrgIds.

Implementation

Future<TGetVerifiedSubOrgIdsResponse> getVerifiedSubOrgIds({
  required TGetVerifiedSubOrgIdsBody input,
}) async {
  return await request<TGetVerifiedSubOrgIdsBody,
          TGetVerifiedSubOrgIdsResponse>(
      "/public/v1/query/list_verified_suborgs",
      input,
      (json) => TGetVerifiedSubOrgIdsResponse.fromJson(json));
}