POST classroomAPI/PD/updateIssue

Request Information

URI Parameters

None.

Body Parameters

Issue
NameDescriptionTypeAdditional information
PILIDPK

globally unique identifier

None.

Problem

string

None.

Cause

string

None.

Solution

string

None.

AssignedToFK

integer

None.

AssignedTo

string

None.

TargetDate

date

None.

ResolvedDate

date

None.

Status

integer

None.

Type

integer

None.

BoardID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "BoardID": "dcc1cdf7-d4f1-4e8f-9c5f-b1c2627063c8",
  "PILIDPK": "4d49d0a4-a81e-40a7-917a-a3b5ee1ba3c7",
  "Problem": "sample string 2",
  "Cause": "sample string 3",
  "Solution": "sample string 4",
  "AssignedToFK": 5,
  "AssignedTo": "sample string 6",
  "TargetDate": "2024-06-28T00:35:34.8161366+00:00",
  "ResolvedDate": "2024-06-28T00:35:34.8161366+00:00",
  "Status": 9,
  "Type": 10
}

application/xml, text/xml

Sample:
<Issue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL.Coaching">
  <AssignedTo>sample string 6</AssignedTo>
  <AssignedToFK>5</AssignedToFK>
  <BoardID>dcc1cdf7-d4f1-4e8f-9c5f-b1c2627063c8</BoardID>
  <Cause>sample string 3</Cause>
  <PILIDPK>4d49d0a4-a81e-40a7-917a-a3b5ee1ba3c7</PILIDPK>
  <Problem>sample string 2</Problem>
  <ResolvedDate>2024-06-28T00:35:34.8161366+00:00</ResolvedDate>
  <Solution>sample string 4</Solution>
  <Status>9</Status>
  <TargetDate>2024-06-28T00:35:34.8161366+00:00</TargetDate>
  <Type>10</Type>
</Issue>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

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