Feedback
Submit feedback about any API request. Reference the X-Request-Id header from the response.
Submit Feedback
POST /feedback
Send feedback about a specific request to help improve Fylor. Both fields are required.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
requestId | string (UUID) | Yes | The X-Request-Id from the response you want to give feedback on |
message | string | Yes | Feedback message (max 5000 characters) |
Example
curl -X POST https://api.fylor.com/feedback \
-H "Content-Type: application/json" \
-d '{
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"message": "The image compression was too aggressive, lost detail in the background"
}'Response
{
"status": "received",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}Errors
| Status | Description |
|---|---|
| 400 | Invalid JSON body |
| 422 | Missing or invalid requestId or message, or message exceeds 5000 characters |
Last updated on