Skip to content
Merged
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
18 changes: 17 additions & 1 deletion src/provider-guides/connectWise.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,25 @@ export function renderCellValue(value) {
</table>
</div>


See the official [OpenAPI](https://developer.connectwise.com/Products/ConnectWise_PSA/REST) file for the complete list. (Requires ConnectWise Developer Network account)

Connector supports write operations using a [JSON Patch document](https://datatracker.ietf.org/doc/html/rfc6902#section-3) passed in `record.patch`.
When performing an update, `record.id` must also be provided so the connector can resolve which record to patch.

Write payload example for the `contacts` object:
```json
{
"groupRef": "{{connectWiseGroupID}}",
"type": "update",
"record": {
"id": "58016",
"patch": [
{"op": "replace", "path": "/firstName", "value": "John"}
]
}
}
```

### Example integration

To define an integration for ConnectWise, create a manifest file that looks like this:
Expand Down
Loading