PUT
/
connection
Manage a custom connection object
curl --request PUT \
  --url https://api.floweq.com/v1/connection \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "context": "floweq",
  "record": "1029384756",
  "source": "freshchat",
  "customVariables": {
    "myVariableAccessor": "myVariableValue",
    "another_variable": "This is a different value"
  },
  "language": "de"
}'
"<any>"

Authorizations

Authorization
string
header
required

Enter your bearer token in the format: Bearer {token}

Body

application/json

Provides custom context to the client for processing flows

source
string

Record source

context
string

Client ID

record
string

Record ID

customVariables
object

Object that contains custom variables for the client to consume. Keys must be strings (no spaces). Variables are then accessible by the client as custom.{Key}.`

language
string

Optional: Sets the language for text sent by Sidekick to the end-user

Response

Details of the invidual connection object

The response is of type any.