# This endpoint's signing secret

Source: https://docs.usetone.ai/reference/integrations/endpointSecret

> Each endpoint has its own, so rotating one does not disturb the others.

`GET /v1/integrations/webhooks/{id}/secret`
Each endpoint has its own, so rotating one does not disturb the others.

Requires the `admin` scope.

## Parameters

| Name | In | | Meaning |
|---|---|---|---|
| `id` | path | required | The webhook endpoint's id. |

## Response

| Field | Type | | Meaning |
|---|---|---|---|
| `note` | string | required | Which secret this is and what signs with it. Human-readable, not a code. |
| `secret` | string | required | The signing secret, shown once. Verify x-tone-signature against it before trusting any delivery. |

### Example response

```json
{
  "data": {
    "note": "Signs every delivery to this endpoint as x-tone-signature.",
    "secret": "whsec_3f1a7f6e2b4c4d1e9a8b5c6d7e8f9a0b"
  }
}
```
