# GroupInfoRequest Estrutura de dados do contrato OpenAPI. ## Campos | Campo | Tipo | Presença | Descrição | |---|---|---|---| | `groupjid` | `string` | obrigatório | Identificador do grupo terminado em @g.us. Comprimento mínimo: `1` | | `force` | `boolean / string / integer / null` | opcional | — | | `getInviteLink` | `boolean / string / integer / null` | opcional | — | | `getRequestsParticipants` | `any` | opcional | Aceito e ignorado. | ## Definição OpenAPI ```json { "type": "object", "properties": { "groupjid": { "type": "string", "description": "Identificador do grupo terminado em @g.us.", "minLength": 1 }, "force": { "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": [ "true", "false", "1", "0", "" ] }, { "type": "integer", "enum": [ 0, 1 ] }, { "type": "null" } ] }, "getInviteLink": { "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": [ "true", "false", "1", "0", "" ] }, { "type": "integer", "enum": [ 0, 1 ] }, { "type": "null" } ] }, "getRequestsParticipants": { "description": "Aceito e ignorado." } }, "required": [ "groupjid" ] } ```