Update Feedback

PUT /api/v1/feedback/{id}

Path parameters

  • id string Required

    ID of the feedback to update

application/json

Body Required

Responses

PUT /api/v1/feedback/{id}
curl \
 -X PUT https://api.crawlora.com/api/v1/feedback/{id} \
 -H "x-api-key: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"subject":"string","description":"string"}'
Request examples
{
  "subject": "string",
  "description": "string"
}
Response examples (200)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {
    "id": "string",
    "subject": "string",
    "description": "string",
    "created_at": "string",
    "updated_at": "string"
  }
}
Response examples (401)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}
Response examples (404)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}
Response examples (422)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}