I am trying to POST data to my API. I have a model with an image field where:
image = models.ImageField()
I have an image on my local box, which I am trying to send. Is this the right way to do it?
{
   "id": "3", 
   "uid":"273a0d69",
   "uuid": "90",
   "image": "@/home/user/Downloads/tt.jpeg"
}
Can someone help me with this?