-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from panoratech/docs-playground-testing
📝 Docs update
- Loading branch information
Showing
9 changed files
with
110 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: 'Create a contact' | ||
description: 'Create a contact in any CRM using this endpoint' | ||
openapi: "POST /crm/contact" | ||
--- | ||
|
||
# Create User documentation | ||
api: ' /contact' |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
title: 'The Deal Object - TODO' | ||
description: 'Introduction to our CRM `deal` Unified Model' | ||
|
||
--- | ||
## The Unified `deal` Object | ||
The `deal` object is used to represent an existing deal in a CRM system. | ||
|
||
### Properties | ||
|
||
<RequestExample> | ||
|
||
```json JSON | ||
{ | ||
"id_contact": "f4e1ff72-e727-409a-8935-a63a63d4891e", | ||
"first_name": "John", | ||
"last_name": "Doe", | ||
"custom_fields": [{ | ||
"hair_color" : "black" | ||
} | ||
], | ||
"remote_data": { | ||
"source": "hubspot", | ||
"data": { | ||
"XXX": "XXX" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
</RequestExample> | ||
|
||
<ResponseField name="contact" type="Contact Object"> | ||
<Expandable title="properties" defaultOpen="true"> | ||
<ResponseField name="id_contact" type="uuid"> | ||
Panora Defined UUID for this contact | ||
</ResponseField> | ||
|
||
<ResponseField name="first_name" type="string" required> | ||
The full name of the `contact` | ||
</ResponseField> | ||
|
||
<ResponseField name="last_name" type="string" required> | ||
The last name of this `contact` | ||
</ResponseField> | ||
|
||
<ResponseField name="custom_fields" type="array"> | ||
Array containing all the non-standard data points for this `contact`. Requires mapping. | ||
</ResponseField> | ||
|
||
<ResponseField name="remote_data" type="json"> | ||
Original data, as provided by the source CRM` | ||
</ResponseField> | ||
|
||
</Expandable> | ||
</ResponseField> | ||
|
||
## Supported Features for each CRM Contact Object: | ||
| Panora | Unified Write | Passthrough Requests | Remote Data | Managed Webhooks | Webhooks Unified | | ||
| ------------- | ------------- | -------------------- | ----------- | ----------------- | ---------------- | | ||
| Hubspot | ✔️ | ✔️ | ✔️ | ❌ | ❌ | | ||
| Zoho | ✔️ | ✔️ | ✔️ | ❌ | ❌ | | ||
| Zendesk | ✔️ | ✔️ | ✔️ | ❌ | ❌ | | ||
| Pipedrive | ✔️ | ✔️ | ✔️ | ❌ | ❌ | | ||
| Freshsales | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: 'Quick Start Guide' | ||
description: 'CRM Quick Start Guide' | ||
--- | ||
|
||
*This guide assumes you have a Panora API Key, and users that connected their account (through Magic-Links, or Embedded)* | ||
|
||
In this guide, you'll learn how to write a contact into any CRM, using Panora's unified `CRM Contact` endpoint. | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
Page End: To go deeping into details, discover how to map `custom objects` to Panora, or listen to `webhooks` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters