> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nixflex.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Zapier integration

> Send call data to a Zapier webhook after each call - per phone number.

Connect a Zapier catch-hook to a phone number so Nixflex sends call data to Zapier after each call. Configured **per phone number**.

## Set the Zapier webhook

<ParamField path="phoneNumber" type="string" required>
  The phone number in E.164 format, passed in the URL.
</ParamField>

<ParamField body="post_call_url" type="string" required>
  Your Zapier catch-hook URL. Must be an `https` URL.
</ParamField>

```bash theme={null}
curl -X PUT "https://api.nixflex.com/v1/integrations/zapier/number/+447446466847" \
  -H "Authorization: Bearer nxf_xxx:nxfs_xxx" \
  -H "Content-Type: application/json" \
  -d '{"post_call_url": "https://hooks.zapier.com/hooks/catch/xxxx"}'
```

## Check / remove

```bash theme={null}
curl -X GET "https://api.nixflex.com/v1/integrations/zapier/number/+447446466847" \
  -H "Authorization: Bearer nxf_xxx:nxfs_xxx"

curl -X DELETE "https://api.nixflex.com/v1/integrations/zapier/number/+447446466847" \
  -H "Authorization: Bearer nxf_xxx:nxfs_xxx"
```

## Notes

* The number must belong to your account. A number you do not own returns `404`.
* For the feature guide, see [Zapier & Make](/integrations/zapier-make).
