I am pulling in some JSON data from a external API.
{
"id": 1,
"body": "example json"
},
{
"id": 2,
"body": "example json"
}
my User model:
class User(models.Model):
body = models.CharField(max_length=200)
how i can save the json response into my model ?