Get Gmail Message Body
Perform Get Gmail Message Body through GMail.
gmail_get_message_bodyread
Inputs
- Message Id
message_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessmessage_idMessage Idemail_bodyEmail BodyerrorErrorerror_messageError Messageerror_codeError 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
{
"type": "object",
"required": [
"message_id"
],
"properties": {
"message_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"email_body": {},
"error_code": {},
"message_id": {},
"error_message": {}
},
"additionalProperties": true
}