Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Field

Example Configuration

Url :


Code Block
https://myrestservice.example.com/service/GetToken


Header :


Code Block
Cache-Control: no-cache


Content-Type: application/x-www-form-urlencoded;charset=UTF-8


Authorization: Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX


Body :


Code Block
grant_type=client_credentials&redirect_uri=https://myrestservice.example.com/service/api/v1/Customers/Contacts


...

Field:

Example Configuration

Url :


Code Block
https://myrestservice.example.com/service/api/v1/Customers/Contacts
Example Configuration


Header :


Code Block
Cache-Control: no-cache
Content-Type: application/json
Authorization: Bearer $tokenResponse.body.JSON.access_token
Example Configuration


Body :


Code Block
{"CustomerNumber":"$chatConnector.id",
"XMLCodedData":"$xmlTemplate.encoded.base64"}
Example Configuration


Xml Template :


Code Block
<?xml version="1.0" encoding="utf-8"?>
<chatReport>
<Size>$report.bytes</Size>
<Content>$report.encoded.base64</Content>
</chatReport>
Example Configuration


Parameters (as sysadmin)

For https / wss

...