Verify Authenticated Gmail Ingress
Perform Verify Authenticated Gmail Ingress through GMail.
gmail_verify_authenticated_ingresswrite
Inputs
- Message Id
message_idexpressionrequiredRequired literal value or workflow expression.
- Allowed Senders
allowed_sendersjsonOptional JSON value.
- Allowed Forwarders
allowed_forwardersjsonOptional JSON value.
- Allow Direct
allow_directbooleanOptional true-or-false value.
Default:
false - Test Auto Forward Route
test_auto_forward_routejsonOptional JSON value.
Outputs
successSuccessacceptedAcceptedingress_typeIngress Typereason_codeReason CodeprovenanceProvenancetrusted_route_idTrusted Route Idhas_attachmentHas Attachmentaccepted_countAccepted Countrejected_unverified_countRejected Unverified Countchatter_countChatter Countaccepted_with_attachment_countAccepted With Attachment CountretryableRetryableerrorErrorerror_messageError Messageerror_codeError Code
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- 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"
},
"allow_direct": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"allowed_senders": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"allowed_forwarders": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"test_auto_forward_route": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"accepted": {},
"retryable": {},
"error_code": {},
"provenance": {},
"reason_code": {},
"ingress_type": {},
"chatter_count": {},
"error_message": {},
"accepted_count": {},
"has_attachment": {},
"trusted_route_id": {},
"rejected_unverified_count": {},
"accepted_with_attachment_count": {}
},
"additionalProperties": true
}