Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions src/provider-guides/housecallPro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,24 @@ The Housecall Pro connector supports the following objects.

- [customers](https://docs.housecallpro.com/docs/housecall-public-api/042bd3bf861ae-get-customers) (read, subscribe, write; incremental read supported)
- [employees](https://docs.housecallpro.com/docs/housecall-public-api/303ee235f23fa-get-employees) (read, subscribe)
<Note>
In Housecall Pro’s webhook UI, this event appears as pro.created, but the
actual payload uses employee.created.
</Note>

<Note>

In Housecall Pro’s webhook UI, this event appears as pro.created, but the
actual payload uses employee.created.

Use [`otherEvents`](/subscribe-actions#other-events) for **`employee.created`**, not `createEvent` (Housecall Pro API limitation).

```yaml
- objectName: employees
destination: housecallProWebhook
inheritFieldsAndMapping: true
otherEvents:
- employee.created
```

</Note>

- [estimates](https://docs.housecallpro.com/docs/housecall-public-api/e430ba3d520a0-get-estimates) (read, subscribe, write; incremental read supported)
- [events](https://docs.housecallpro.com/docs/housecall-public-api/5f8b2b787f4ba-get-events) (read; incremental read supported)
- [jobs](https://docs.housecallpro.com/docs/housecall-public-api/6c97704da8bf3-get-jobs) (read, subscribe, write; incremental read supported)
Expand Down
Loading