Skip to Content
Feedback

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

NameTypeRequiredDescription
requestIdstring (UUID)YesThe X-Request-Id from the response you want to give feedback on
messagestringYesFeedback 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

StatusDescription
400Invalid JSON body
422Missing or invalid requestId or message, or message exceeds 5000 characters
Last updated on