# Proxiedmail

ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.

- **Category:** email
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 5
- **Triggers:** 0
- **Slug:** `PROXIEDMAIL`
- **Version:** 20260227_00

## Tools

### Create webhook receiver

**Slug:** `PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER`

Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get API Token

**Slug:** `PROXIEDMAIL_GET_API_TOKEN`

Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `bearer_token` | string | Yes | Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get webhook data

**Slug:** `PROXIEDMAIL_GET_WEBHOOK_DATA`

Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `hash` | string | Yes | Callback hash identifier for the webhook receiver |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List proxy bindings

**Slug:** `PROXIEDMAIL_LIST_PROXY_BINDINGS`

Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Proxy Binding

**Slug:** `PROXIEDMAIL_UPDATE_PROXY_BINDING`

Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | object | Yes | Top-level JSON:API data object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
