Uploads an image
POST/api/image
Uploads an image to the FF server for further usage
Request
- multipart/form-data
Body
required
image binaryrequired
Image file binary data
Responses
- 200
- default
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
url urlrequired
The URL of the uploaded image
{
"url": "string"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
The error code
message stringrequired
A human-readable error message
{
"code": 0,
"message": "string"
}
Loading...