POST classroomAPI/PD/createPDBoard?TeamID={TeamID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| TeamID | integer |
Required |
Body Parameters
PDBoardCopyData| Name | Description | Type | Additional information |
|---|---|---|---|
| CopyAll | boolean |
None. |
|
| PerformanceDocs | Collection of globally unique identifier |
None. |
|
| UserStatuses | boolean |
None. |
|
| Issues | Collection of globally unique identifier |
None. |
|
| NewsItems | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"CopyAll": true,
"PerformanceDocs": [
"4ae2b970-7bb8-470b-b37a-b7191a747cbf",
"04f073f0-760e-4a16-b971-8388c5ae6365"
],
"UserStatuses": true,
"Issues": [
"7c51132c-e433-4ff1-a62f-a0e789b35879",
"46ee93a7-e918-4438-b044-c6bf91f442f2"
],
"NewsItems": [
"8e866e46-76b8-4bee-9b1b-a91ca28f3092",
"9474540b-a99d-4e26-ad2b-e402fa086b6e"
]
}
application/xml, text/xml
Sample:
<PDBoardCopyData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL.Coaching">
<CopyAll>true</CopyAll>
<Issues xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>7c51132c-e433-4ff1-a62f-a0e789b35879</d2p1:guid>
<d2p1:guid>46ee93a7-e918-4438-b044-c6bf91f442f2</d2p1:guid>
</Issues>
<NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>8e866e46-76b8-4bee-9b1b-a91ca28f3092</d2p1:guid>
<d2p1:guid>9474540b-a99d-4e26-ad2b-e402fa086b6e</d2p1:guid>
</NewsItems>
<PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>4ae2b970-7bb8-470b-b37a-b7191a747cbf</d2p1:guid>
<d2p1:guid>04f073f0-760e-4a16-b971-8388c5ae6365</d2p1:guid>
</PerformanceDocs>
<UserStatuses>true</UserStatuses>
</PDBoardCopyData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PdBoardResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| msg | Collection of string |
None. |
|
| data | Collection of Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"msg": [
"sample string 1",
"sample string 2"
],
"data": [
{},
{}
]
}
application/xml, text/xml
Sample:
<PdBoardResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL.Coaching">
<data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</data>
<msg xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</msg>
<success>true</success>
</PdBoardResponse>