-
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.
Update docs
- Loading branch information
Rachid F
committed
Dec 20, 2023
1 parent
f06268e
commit 75f2a93
Showing
7 changed files
with
34 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
--- | ||
title: 'List all contacts' | ||
description: 'Retrieve all contacts from all connected CRMs using one endpoint' | ||
openapi: "GET /crm/contact" | ||
title: 'Retrieve a contact' | ||
description: 'Retrieve a contact from connected CRMs' | ||
openapi: "GET /crm/contact/{id}" | ||
--- | ||
|
||
Example API Response: | ||
|
||
|
||
```json JSON | ||
{ | ||
"id_contact": "f4e1ff72-e727-409a-8935-a63a63d4891e" | ||
"first_name": "John" | ||
"last_name": "Doe" | ||
} | ||
``` | ||
|
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,17 @@ | ||
--- | ||
title: 'List all contacts' | ||
description: 'Retrieve all contacts from all connected CRMs using one endpoint' | ||
openapi: "GET /crm/contact" | ||
--- | ||
|
||
Example API Response: | ||
|
||
|
||
```json JSON | ||
{ | ||
"id_contact": "f4e1ff72-e727-409a-8935-a63a63d4891e" | ||
"first_name": "John" | ||
"last_name": "Doe" | ||
} | ||
``` | ||
|
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,5 @@ | ||
--- | ||
title: 'Update a contact' | ||
description: 'Update a contacts from any connected CRM' | ||
openapi: "PATCH /crm/contact" | ||
--- |
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 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