# Get Gmail Message Body

> Perform Get Gmail Message Body through GMail.

Source: [https://genhealth.ai/docs/workflows/integrations/gmail/gmail_get_message_body](https://genhealth.ai/docs/workflows/integrations/gmail/gmail_get_message_body)

Integration: [GMail](https://genhealth.ai/docs/workflows/integrations/gmail.md)

- Handler: `gmail_get_message_body`

## Inputs

- `message_id` — Message Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `message_id` — Message Id
- `email_body` — Email Body
- `error` — Error
- `error_message` — Error Message
- `error_code` — Error Code

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "message_id"
  ],
  "properties": {
    "message_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "email_body": {},
    "error_code": {},
    "message_id": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
