API
Submit in-app feedback
POST
/feedback
const url = 'https://mw.omazy.ai/api/v1/feedback';const options = { method: 'POST', headers: {Authorization: '<Authorization>', 'Content-Type': 'application/json'}, body: '{"app_version":"example","description":"example","device_info":{},"feedback_type":"example","screenshot_url":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://mw.omazy.ai/api/v1/feedback \ --header 'Authorization: <Authorization>' \ --header 'Content-Type: application/json' \ --data '{ "app_version": "example", "description": "example", "device_info": {}, "feedback_type": "example", "screenshot_url": "example" }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Feedback payload
Media typeapplication/json
object
app_version
string
description
string
device_info
object
key
additional properties
any
feedback_type
string
screenshot_url
Screenshot upload is a follow-up — the column exists in the schema and the request shape carries the URL once storage is wired through.
string
Examplegenerated
{ "app_version": "example", "description": "example", "device_info": {}, "feedback_type": "example", "screenshot_url": "example"}Responses
Section titled “Responses”Created
Media typeapplication/json
object
data
error
object
code
string
message
string
meta
object
next_cursor
string
page
integer
per_page
integer
total
integer
success
boolean
data
object
app_version
string
created_at
string
description
string
device_info
Array<integer>
feedback_type
string
id
string
screenshot_url
string
status
string
updated_at
string
user_id
string
Examplegenerated
{ "data": { "app_version": "example", "created_at": "example", "description": "example", "device_info": [ 1 ], "feedback_type": "example", "id": "example", "screenshot_url": "example", "status": "example", "updated_at": "example", "user_id": "example" }, "error": { "code": "example", "message": "example" }, "meta": { "next_cursor": "example", "page": 1, "per_page": 1, "total": 1 }, "success": true}Bad Request
Media typeapplication/json
object
data
error
object
code
string
message
string
meta
object
next_cursor
string
page
integer
per_page
integer
total
integer
success
boolean
error
object
code
string
message
string
Examplegenerated
{ "data": "example", "error": { "code": "example", "message": "example" }, "meta": { "next_cursor": "example", "page": 1, "per_page": 1, "total": 1 }, "success": true}Unauthorized
Media typeapplication/json
object
data
error
object
code
string
message
string
meta
object
next_cursor
string
page
integer
per_page
integer
total
integer
success
boolean
error
object
code
string
message
string
Examplegenerated
{ "data": "example", "error": { "code": "example", "message": "example" }, "meta": { "next_cursor": "example", "page": 1, "per_page": 1, "total": 1 }, "success": true}