POST api/EditSubGoal
Request Information
URI Parameters
None.
Body Parameters
SubGoalModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SUB_GOAL_ID | integer |
None. |
|
| SCHOOL_ID | integer |
None. |
|
| STUDENT_ID | integer |
None. |
|
| MASTER_GOAL_ID | integer |
None. |
|
| GOAL_NAME | string |
None. |
|
| GOAL_DESC | string |
None. |
|
| START_DATE | date |
None. |
|
| END_DATE | date |
None. |
|
| ASSIGNED_BY_ID | integer |
None. |
|
| STAFF_FULL_NAME | string |
None. |
|
| STAFF_IMG_URL | string |
None. |
|
| STAFF_ROLE | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SUB_GOAL_ID": 1,
"SCHOOL_ID": 2,
"STUDENT_ID": 3,
"MASTER_GOAL_ID": 4,
"GOAL_NAME": "sample string 5",
"GOAL_DESC": "sample string 6",
"START_DATE": "2026-01-09T13:57:47.5148838+00:00",
"END_DATE": "2026-01-09T13:57:47.5148838+00:00",
"ASSIGNED_BY_ID": 9,
"STAFF_FULL_NAME": "sample string 10",
"STAFF_IMG_URL": "sample string 11",
"STAFF_ROLE": "sample string 12"
}
application/xml, text/xml
Sample:
<SubGoalModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Goals"> <ASSIGNED_BY_ID>9</ASSIGNED_BY_ID> <END_DATE>2026-01-09T13:57:47.5148838+00:00</END_DATE> <GOAL_DESC>sample string 6</GOAL_DESC> <GOAL_NAME>sample string 5</GOAL_NAME> <MASTER_GOAL_ID>4</MASTER_GOAL_ID> <SCHOOL_ID>2</SCHOOL_ID> <STAFF_FULL_NAME>sample string 10</STAFF_FULL_NAME> <STAFF_IMG_URL>sample string 11</STAFF_IMG_URL> <STAFF_ROLE>sample string 12</STAFF_ROLE> <START_DATE>2026-01-09T13:57:47.5148838+00:00</START_DATE> <STUDENT_ID>3</STUDENT_ID> <SUB_GOAL_ID>1</SUB_GOAL_ID> </SubGoalModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />