Skip to content
Open
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
29 changes: 29 additions & 0 deletions docs/extensions/voip-integration/binotel-integration-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,35 @@ E.g. for "+44 (203) 111-22-33": {COUNTRY_CODE} - "44", {NATIONAL_NUMBER} - "2031
2\. Contact Binotel support to add an URL (see “Post URL” field) to handle incoming/outgoing calls (API CALL Settings and API PUSH):
**http://espocrm.local/?entryPoint=Binotel&connector=Binotel&key=hh9v0zr529**

3\. It's possible to identify the caller by phone number using the **CallerID Lookup** functionality.

Contact Binotel support to configure one of the following request URLs.

### GET request

```http
GET https://YOUR_CRM/espo/ext-voip-integration/site/api/v1/Voip/lookup/Binotel/hh9v0zr529?externalNumber=111111
```

### POST request

Content-Type:

- `application/json`, or
- `application/x-www-form-urlencoded`

```http
POST https://YOUR_CRM/espo/ext-voip-integration/site/api/v1/Voip/lookup/Binotel/hh9v0zr529

{
"externalNumber": "111111"
}
```

Where:

- `hh9v0zr529` — the connector Access Key.
- `externalNumber` — the incoming phone number.

## How to setup Binotel Integration for users

Expand Down