I need to send some text data alongside with the image(multipart) via Alamofire, for example:
{
"name": "Me",
"age": "23",
"image": file_goes_here
}
I know how to send text data and image as multipart separately, but I do not know how can I send all it in one, the same, request. Is it possible?