I want to send a post request with an array of strings in postman to my django-rest-framework backend api. I want to use POSTMAN raw, because I will use the code inside my flutter mobile app.
I have tried:
{
"name": "ChatRoom"
"members": ["william", "eric", "ryan"],
"messages": []
}
Also Tried:
{
"name": "aassss",
"members": [
{
"username":"william"
}
]
}
In Django this Is a ManyToManyField of User