You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I create class with section using Create Class API : URL : {{urls}}/classes
[
{
"classId": "1",
"sections": [
{
"section": "A"
},
{
"section": "B"
},
{
"section": "C"
}
]
}
]
then I want to update section by using Update Class API : URL : {{urls}}/classes
{
"classId": "1",
"sections": [
{
"section": "A"
},
{
"section": "B"
}
]
}
then section not updated
Result :
{
"sections": [
{
"section": "A"
},
{
"section": "B"
},
{
"section": "C"
},
]
}
Need help for update API
The text was updated successfully, but these errors were encountered:
when I create class with section using Create Class API : URL : {{urls}}/classes
[
{
"classId": "1",
"sections": [
{
"section": "A"
},
{
"section": "B"
},
{
"section": "C"
}
]
}
]
then I want to update section by using Update Class API : URL : {{urls}}/classes
{
"classId": "1",
"sections": [
{
"section": "A"
},
{
"section": "B"
}
]
}
then section not updated
Result :
{
"sections": [
{
"section": "A"
},
{
"section": "B"
},
{
"section": "C"
},
]
}
Need help for update API
The text was updated successfully, but these errors were encountered: