POST api/BulkUpdateGoalEvaluation

Request Information

URI Parameters

None.

Body Parameters

Collection of GoalTransactionModel
NameDescriptionTypeAdditional information
STUDENT_ID

integer

None.

MSTR_GOAL_ID

integer

None.

SUB_GOAL_ID

integer

None.

EVAL_PERIOD

string

None.

EVAL_VALUE

string

None.

EVAL_START_DT

date

None.

EVAL_END_DT

date

None.

RATING

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "STUDENT_ID": 1,
    "MSTR_GOAL_ID": 2,
    "SUB_GOAL_ID": 3,
    "EVAL_PERIOD": "sample string 4",
    "EVAL_VALUE": "sample string 5",
    "EVAL_START_DT": "2026-01-09T13:56:33.363062+00:00",
    "EVAL_END_DT": "2026-01-09T13:56:33.363062+00:00",
    "RATING": 8
  },
  {
    "STUDENT_ID": 1,
    "MSTR_GOAL_ID": 2,
    "SUB_GOAL_ID": 3,
    "EVAL_PERIOD": "sample string 4",
    "EVAL_VALUE": "sample string 5",
    "EVAL_START_DT": "2026-01-09T13:56:33.363062+00:00",
    "EVAL_END_DT": "2026-01-09T13:56:33.363062+00:00",
    "RATING": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfGoalTransactionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Goals">
  <GoalTransactionModel>
    <EVAL_END_DT>2026-01-09T13:56:33.363062+00:00</EVAL_END_DT>
    <EVAL_PERIOD>sample string 4</EVAL_PERIOD>
    <EVAL_START_DT>2026-01-09T13:56:33.363062+00:00</EVAL_START_DT>
    <EVAL_VALUE>sample string 5</EVAL_VALUE>
    <MSTR_GOAL_ID>2</MSTR_GOAL_ID>
    <RATING>8</RATING>
    <STUDENT_ID>1</STUDENT_ID>
    <SUB_GOAL_ID>3</SUB_GOAL_ID>
  </GoalTransactionModel>
  <GoalTransactionModel>
    <EVAL_END_DT>2026-01-09T13:56:33.363062+00:00</EVAL_END_DT>
    <EVAL_PERIOD>sample string 4</EVAL_PERIOD>
    <EVAL_START_DT>2026-01-09T13:56:33.363062+00:00</EVAL_START_DT>
    <EVAL_VALUE>sample string 5</EVAL_VALUE>
    <MSTR_GOAL_ID>2</MSTR_GOAL_ID>
    <RATING>8</RATING>
    <STUDENT_ID>1</STUDENT_ID>
    <SUB_GOAL_ID>3</SUB_GOAL_ID>
  </GoalTransactionModel>
</ArrayOfGoalTransactionModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

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/" />