# Send email (SendGrid)

Operation ID: `connectors.sendgridSend`

Send email via SendGrid. Returns a SendGridSendResult record.

## Public method

`sendEmail`

Signature: `connectors.sendgrid.createClient(config).sendEmail(body)`

Return type: `Promise<SendGridSendEmailResponse>`

## Authentication

Classification: **AUTHENTICATED**

Schemes: `bearerAuth`

## Prerequisites

None documented.

## HTTP

`POST /connectors/sendgrid/send-email`

## Path parameters

None.

## Query parameters

None.

## Body parameters

| Name | Type | Required | Format | Allowed values | Default | Nullable | Description |
|---|---|---:|---|---|---|---:|---|
| `body` | [`SendGridSendEmailRequest`](../models/SendGridSendEmailRequest.md) | Yes |  |  |  | No |  |

Request model: [`SendGridSendEmailRequest`](../models/SendGridSendEmailRequest.md)

## Request example

```json
{
  "api_key": "example-api-key",
  "from_email": "patient@example.com",
  "from_name": "Example Name",
  "html_content": "<p>Your appointment is confirmed.</p>",
  "mode": "sandbox",
  "subject": "Your appointment confirmation",
  "text_content": "Your appointment is confirmed.",
  "to": {
    "vendorField": "vendor-defined value"
  }
}
```

## Success responses

| Status | Shape | Content type | Description |
|---|---|---|---|
| `200` | [`SendGridSendResult`](../models/SendGridSendResult.md) | application/json | Successful response |

## Success response examples

### 200

```json
{
  "message_id": "12345",
  "status_code": 202
}
```

## Common errors

| Status | Shape | Content type | Description |
|---|---|---|---|
| `400` | [`StandardErrorResponse`](../models/StandardErrorResponse.md) | application/json | Connector validation rejected the payload, or a required field was missing or of the wrong type. |
| `401` | [`StandardErrorResponse`](../models/StandardErrorResponse.md) | application/json | The HealthCloud bearer token is missing or invalid, or the vendor rejected the supplied connector credentials. |
| `500` | [`StandardErrorResponse`](../models/StandardErrorResponse.md) | application/json | The connector failed unexpectedly. |
| `502` | [`StandardErrorResponse`](../models/StandardErrorResponse.md) | application/json | The vendor returned an application or transport-level failure. |
| `504` | [`StandardErrorResponse`](../models/StandardErrorResponse.md) | application/json | The vendor did not respond within the connector timeout. |

## Error examples

### 400 — Invalid request

```json
{
  "error": "Invalid request"
}
```

### 401 — Authorization required

```json
{
  "error": "Authorization required"
}
```

### 500 — Internal error

```json
{
  "error": "Internal error"
}
```

### 502 — Upstream vendor error

```json
{
  "error": "Upstream vendor error"
}
```

### 504 — Upstream timeout

```json
{
  "error": "Upstream timeout"
}
```

## NodeJS / TypeScript implementation

```ts
import { HCSDK } from "@healthcloudai/hc-sdk";
import type { SendGridSendEmailRequest } from "@healthcloudai/hc-sdk";
```

```ts
const body = {
  "api_key": "example-api-key",
  "from_email": "patient@example.com",
  "from_name": "Example Name",
  "html_content": "<p>Your appointment is confirmed.</p>",
  "mode": "sandbox",
  "subject": "Your appointment confirmation",
  "text_content": "Your appointment is confirmed.",
  "to": {
    "vendorField": "vendor-defined value"
  }
};

const result = await connectors.sendgrid.createClient(config).sendEmail(body);
```

## cURL

```bash
curl -X POST \
  -H 'Authorization: Bearer <ACCESS_TOKEN>' \
  -H 'Content-Type: application/json' \
  -d '{"api_key":"example-api-key","from_email":"patient@example.com","from_name":"Example Name","html_content":"<p>Your appointment is confirmed.</p>","mode":"sandbox","subject":"Your appointment confirmation","text_content":"Your appointment is confirmed.","to":{"vendorField":"vendor-defined value"}}' \
  'https://dev-api-connectors.health.cloud/connectors/sendgrid/send-email'
```

## Notes

None.

## Prepared Test Console scenario

No canonical scenario is currently associated.

## Real response

No approved real integration response is currently published. Unapproved candidates are never rendered as examples.
