Bot Service Controller

Capture Bot Data (Server Capture)

Path: /api/bots/capture

Method: POST

Example Http Request

POST /api/bots/capture HTTP/1.1
Content-Type: application/json
Content-Length: 26
Host: localhost:8080

{"isCaptureEnabled":false}

Example Http Response

HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
Content-Length: 26

{"isCaptureEnabled":false}

Example Curl Request

$ curl 'http://localhost:8080/api/bots/capture' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{"isCaptureEnabled":false}'

Bot Service Controller