Skip to content

Commit

Permalink
Merge pull request LivePersonInc#528 from anro87/patch-1
Browse files Browse the repository at this point in the history
Adding whitespace
  • Loading branch information
Eden Kupermintz authored Feb 6, 2020
2 parents b4ca927 + c1b0157 commit a3bfa28
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ This repository generates LivePerson's Developers' Community, which can be found

All pages on the site correspond to a Markdown file (.md) which can be found inside `/documents/pages`. To update a file, please branch off of the `master` branch, edit the file in question and create a Pull Request **back to the master branch**. There's no need for the old Development branch, so please don't create pull requests to it.

#### Environments

* Production (built from the `master` branch): [https://developers.liveperson.com/](https://developers.liveperson.com/)

* Staging (built from the `Staging` branch): [https://developers.liveperson.com.staging-vdt2zeq-jlynhjefjcpgg.us.platform.sh/](https://developers.liveperson.com.staging-vdt2zeq-jlynhjefjcpgg.us.platform.sh/)


#### Updating/Creating Headers

Jekyll uses a [front-matter](https://jekyllrb.com/docs/frontmatter/) to arrange and define the various documents in the site. This is the text which appears in between the "---" at the top of each document. It's technically a YAML snippet, so all [YAML formatting](http://www.yamllint.com/) and rules apply to it. Our headers are usually comprised of the following key/value pairs:
Expand Down
2 changes: 1 addition & 1 deletion pages/documents/DeveloperTools/FaaS/Developing/debugger.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The debugging interface consists of three main parts:

<img src="img/faas-debugger-button-restart.png" alt="LivePerson Functions Debugger Button Restart"> Stop and Restart debug execution<br/>

<img src="img/faas-debugger-button-stop.png" alt="LivePerson Functions Debugger Button Stop">Stop the debug execution<br/>
<img src="img/faas-debugger-button-stop.png" alt="LivePerson Functions Debugger Button Stop"> Stop the debug execution<br/>

### Debugger States

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Use this method to access the LivePerson monitoring system in order to retrieve

| Method | URL |
| :--- | :--- |
|POST|https://[{domain}](/agent-domain-domain-api.html)/api/account/{account-id}/app/{app-installation-id}/engagement?v={api-version}&vid={visitor-id}&sid={session-id} |
|POST|https://[{domain}](/agent-domain-domain-api.html)/api/account/{account-id}/app/{app-installation-id}/engagement?v={api-version}&vid={visitor-id}&sid={session-id}&obh=false |

### Path Parameters

Expand All @@ -46,6 +46,7 @@ Use this method to access the LivePerson monitoring system in order to retrieve
| v | API version number | double | Required | Supported Value: 1.0, 1.1 |
| vid | Visitor Id | String | Optional | Must be saved in order to reuse for future requests in the same visit |
| sid | Session Id | String | Optional on first request, otherwise required | Will be provided by the server-side in a 201 (CREATED) response for this specific consumer and device and should be set by the client-side on all the subsequent requests to the server |
| obh | is On Behalf | Boolean | Optional | possible values: true/ false (the default is `false`). This parameter can be used (by passing `true`) to let LP servers know that this request is on behalf of the visitor (and not coming from the visitor himself), so the servers should NOT update the visitor Geo-location meta-data according to this request IP |

### Body Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ As engagement attributes are considered unauthenticated, it should not be used f

| Method | URL |
| :--- | :--- |
|PUT|https://[{domain}](/agent-domain-domain-api.html)/api/account/{account-id}/app/{app-installation-id}/report?v={api-version}&vid={visitor-id}&sid={session-id} |
|PUT|https://[{domain}](/agent-domain-domain-api.html)/api/account/{account-id}/app/{app-installation-id}/report?v={api-version}&vid={visitor-id}&sid={session-id}&obh=false |

### Path Parameters

Expand All @@ -42,6 +42,7 @@ As engagement attributes are considered unauthenticated, it should not be used f
| v | API version number | double | Required | Supported Value: 1.0, 1.1 |
| vid | Visitor Id | String | Optional on first request, otherwise required | If session doesn't exist, a new session will be generated and sent by the server |
| sid | Session Id | String | Optional on first request, otherwise required | Will be provided by the server-side in a 201(CREATED) response for this specific consumer and device and should be set by the client-side on all the subsequent requests to the server |
| obh | is On Behalf | Boolean | Optional | possible values: true/ false (the default is `false`). This parameter can be used (by passing `true`) to let LP servers know that this request is on behalf of the visitor (and not coming from the visitor himself), so the servers should NOT update the visitor Geo-location meta-data according to this request IP |

### Body Parameters

Expand Down

0 comments on commit a3bfa28

Please sign in to comment.