Path parameters

  • uniqueid string Required
application/json

Body Required

  • summary string Required

    Summary text to store for the call

Responses

  • 200 application/json

    Summary updated

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attributes Show data attributes object
      • uniqueid string
      • summary string
  • 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

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

    Not found

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

    Failed to update summary

    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
PUT /summary/{uniqueid}
curl \
 --request PUT 'http://localhost:8080/summary/{uniqueid}' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"summary":"string"}'
Request examples
{
  "summary": "string"
}
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": {
    "uniqueid": "string",
    "summary": "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 (404)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (503)
{
  "code": 42,
  "message": "string",
  "error": "string"
}