POST api/Center/UpdateActualStudentAssignmentATAL?date={date}&standard={standard}&batchid={batchid}&createby={createby}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
date

date

Required

standard

string

Required

batchid

string

Required

createby

string

Required

Body Parameters

Collection of StudentAssignment
NameDescriptionTypeAdditional information
sadid

integer

None.

studentid

string

None.

date

date

None.

batchid

string

None.

standard

string

None.

assignment

string

None.

createby

string

None.

createon

date

None.

remark

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "sadid": 1,
    "studentid": "sample string 2",
    "date": "2025-05-10T10:39:33.3368955+05:30",
    "batchid": "sample string 3",
    "standard": "sample string 4",
    "assignment": "sample string 5",
    "createby": "sample string 6",
    "createon": "2025-05-10T10:39:33.3368955+05:30",
    "remark": "sample string 7"
  },
  {
    "sadid": 1,
    "studentid": "sample string 2",
    "date": "2025-05-10T10:39:33.3368955+05:30",
    "batchid": "sample string 3",
    "standard": "sample string 4",
    "assignment": "sample string 5",
    "createby": "sample string 6",
    "createon": "2025-05-10T10:39:33.3368955+05:30",
    "remark": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentAssignment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <StudentAssignment>
    <assignment>sample string 5</assignment>
    <batchid>sample string 3</batchid>
    <createby>sample string 6</createby>
    <createon>2025-05-10T10:39:33.3368955+05:30</createon>
    <date>2025-05-10T10:39:33.3368955+05:30</date>
    <remark>sample string 7</remark>
    <sadid>1</sadid>
    <standard>sample string 4</standard>
    <studentid>sample string 2</studentid>
  </StudentAssignment>
  <StudentAssignment>
    <assignment>sample string 5</assignment>
    <batchid>sample string 3</batchid>
    <createby>sample string 6</createby>
    <createon>2025-05-10T10:39:33.3368955+05:30</createon>
    <date>2025-05-10T10:39:33.3368955+05:30</date>
    <remark>sample string 7</remark>
    <sadid>1</sadid>
    <standard>sample string 4</standard>
    <studentid>sample string 2</studentid>
  </StudentAssignment>
</ArrayOfStudentAssignment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>