Body Required
-
A short title for feedback
-
A detailed description for feedback
POST
/api/v1/feedback
curl \
-X POST https://api.crawlora.com/api/v1/feedback \
-H "x-api-key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"subject":"string","description":"string"}'
Request examples
{
"subject": "string",
"description": "string"
}
Response examples (201)
{
"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 (422)
{
"is_error": true,
"message": "string",
"correlator_id": "string",
"data": {}
}