/mailtrap-sandbox | Type: Application | PCID required: Yes
Tools
mailtrap_sandbox_clean_inbox
Clean inbox Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_create_inbox
Create an inbox Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
project_id | integer | Yes | — | Unique project ID |
inbox | object | No | — | The inbox value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"project_id": {
"type": "integer",
"description": "Unique project ID"
},
"inbox": {
"type": "object",
"description": "The inbox value",
"properties": {
"name": {
"type": "string",
"description": "The name value"
}
}
}
},
"required": [
"PCID",
"account_id",
"project_id"
]
}
mailtrap_sandbox_create_project
Create project Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
project | object | No | — | The project value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"project": {
"type": "object",
"description": "The project value",
"properties": {
"name": {
"type": "string",
"description": "The name value"
}
}
}
},
"required": [
"PCID",
"account_id"
]
}
mailtrap_sandbox_delete_inbox
Delete an inbox Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_delete_inbox_email_message
Delete message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_delete_project
Delete project Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
project_id | integer | Yes | — | Unique project ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"project_id": {
"type": "integer",
"description": "Unique project ID"
}
},
"required": [
"PCID",
"account_id",
"project_id"
]
}
mailtrap_sandbox_enable_inbox_email_addresses
Enable email address Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_forward_inbox_email_message
Forward message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
email | string | No | — | The email value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
},
"email": {
"type": "string",
"description": "The email value"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_attributes
Get inbox attributes Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_get_inbox_email_message
Get messages Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
search | string | No | — | Search query string. Matches subject, to_email, and to_name. |
last_id | number | No | — | If specified, a page of records before last_id is returned. Overrides page if both are given. |
page | number | No | — | Page number for paginated results. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"search": {
"type": "string",
"description": "Search query string. Matches `subject`, `to_email`, and `to_name`."
},
"last_id": {
"type": "number",
"description": "If specified, a page of records before `last_id` is returned. Overrides `page` if both are given."
},
"page": {
"type": "number",
"description": "Page number for paginated results."
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_get_inbox_email_message_body_as_eml
Get message as .eml Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_email_message_body_as_html
Get HTML message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_email_message_body_as_html_source
Get message source Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_email_message_body_as_raw
Get raw message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_email_message_body_as_txt
Get text message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_email_message_htmlanalysis
Get message HTML analysis Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_email_message_spam_report
Get message spam score Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inbox_message_attachment
Get single attachment Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
attachment_id | integer | Yes | — | Unique attachment ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
},
"attachment_id": {
"type": "integer",
"description": "Unique attachment ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id",
"attachment_id"
]
}
mailtrap_sandbox_get_inbox_message_attachments
Get attachments Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
attachment_type | string | No | — | Attachment type |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
},
"attachment_type": {
"type": "string",
"description": "Attachment type"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_inboxes
Get a list of inboxes Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
}
},
"required": [
"PCID",
"account_id"
]
}
mailtrap_sandbox_get_mail_headers_of_email_message
Get mail headers Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_get_project
Get project by ID Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
project_id | integer | Yes | — | Unique project ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"project_id": {
"type": "integer",
"description": "Unique project ID"
}
},
"required": [
"PCID",
"account_id",
"project_id"
]
}
mailtrap_sandbox_get_projects
Get a list of projects Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
}
},
"required": [
"PCID",
"account_id"
]
}
mailtrap_sandbox_mark_as_read_inbox
Mark as read Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_reset_email_user_name_per_inbox
Reset email address Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_reset_inbox_credentials
Reset credentials Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_show_inbox_email_message
Show email message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_update_inbox
Update an inbox Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
inbox | object | No | — | The inbox value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"inbox": {
"type": "object",
"description": "The inbox value",
"properties": {
"name": {
"type": "string",
"description": "The name value"
},
"email_username": {
"type": "string",
"description": "Email Username"
}
}
}
},
"required": [
"PCID",
"account_id",
"inbox_id"
]
}
mailtrap_sandbox_update_inbox_email_message
Update message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
inbox_id | integer | Yes | — | Unique inbox ID |
message_id | integer | Yes | — | Unique message ID |
message | object | No | — | The message value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"inbox_id": {
"type": "integer",
"description": "Unique inbox ID"
},
"message_id": {
"type": "integer",
"description": "Unique message ID"
},
"message": {
"type": "object",
"description": "The message value",
"properties": {
"is_read": {
"type": "boolean",
"description": "Is Read"
}
}
}
},
"required": [
"PCID",
"account_id",
"inbox_id",
"message_id"
]
}
mailtrap_sandbox_update_project
Update project Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
account_id | integer | Yes | — | Unique account ID |
project_id | integer | Yes | — | Unique project ID |
project | object | No | — | The project value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"account_id": {
"type": "integer",
"description": "Unique account ID"
},
"project_id": {
"type": "integer",
"description": "Unique project ID"
},
"project": {
"type": "object",
"description": "The project value",
"properties": {
"name": {
"type": "string",
"description": "The name value"
}
}
}
},
"required": [
"PCID",
"account_id",
"project_id"
]
}

