Skip to main content
POST
/
warm-up
Warm-up endpoint for initialising WebClient
curl --request POST \
  --url http://localhost/warm-up \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "WARM_UP",
  "timestamp": "2021-09-01T12:00:00Z"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The warm-up message payload

type
string
required

Indicates the type of message. For warm-up, this value is "WARM_UP".

Example:

"WARM_UP"

timestamp
string<date-time>
required

The timestamp when the message was created.

Example:

"2021-09-01T12:00:00Z"

Response

200

Response will be ignored