Try our new Setup Skill to automatically integrate Hyperspell into your project
curl --request POST \
--url https://api.hyperspell.com/actions/reply_email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"thread_id": "<string>",
"message_id": "<string>",
"to": [
"<string>"
],
"body": "<string>",
"provider": "gmail_actions",
"connection": "<string>",
"subject": "<string>",
"cc": [
"<string>"
],
"bcc": [
"<string>"
]
}
'{
"success": true,
"error": "<string>",
"provider_response": {}
}Reply to an email thread via a connected Gmail Actions integration.
curl --request POST \
--url https://api.hyperspell.com/actions/reply_email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"thread_id": "<string>",
"message_id": "<string>",
"to": [
"<string>"
],
"body": "<string>",
"provider": "gmail_actions",
"connection": "<string>",
"subject": "<string>",
"cc": [
"<string>"
],
"bcc": [
"<string>"
]
}
'{
"success": true,
"error": "<string>",
"provider_response": {}
}API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.
Reply to an email thread via Gmail.
Gmail thread ID to reply to
RFC 2822 Message-ID of the message being replied to
Recipient email addresses
Reply body (plain text)
Integration provider
reddit, notion, slack, google_calendar, google_mail, box, dropbox, google_drive, github, vault, web_crawler, trace, microsoft_teams, gmail_actions Connection ID. If omitted, auto-resolved from provider + user.
Subject (defaults to Re: original)
CC recipients
BCC recipients
Was this page helpful?