application/json

Body Required

  • uniqueid string Required

    Unique ID of the call to watch

Responses

  • 202 application/json

    Watch started

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
  • 200 application/json

    Watch already active or unavailable

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
  • 400 application/json

    Invalid request

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 403 application/json

    Forbidden - user is not part of the call

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 503 application/json

    Service unavailable

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
POST /summary/watch
curl \
 --request POST 'http://localhost:8080/summary/watch' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"uniqueid":"string"}'
Request examples
{
  "uniqueid": "string"
}
Response examples (202)
{
  "code": 42,
  "message": "string"
}
Response examples (200)
{
  "code": 42,
  "message": "string"
}
Response examples (400)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (503)
{
  "code": 42,
  "message": "string",
  "error": "string"
}