group_id is the unique ID of the group policy's group.
A successful response.
group_policies are the group policies info associated with the provided group.
pagination defines the pagination in the response.
const response = await fetch('https://kava.nownodes.io/cosmos/group/v1/group_policies_by_group/{group_id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "group_policies": [ { "address": "text", "group_id": "text", "admin": "text", "metadata": "text", "version": "text", "decision_policy": { "type_url": "text", "value": "Ynl0ZXM=" }, "created_at": "2024-11-10T04:03:07.881Z" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }