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": [
"c99431fc-5cb9-428b-99a9-23c78d57d813",
"62420c52-4712-4403-a0f0-444fd95ae6e2"
],
"UserStatuses": true,
"Issues": [
"2ae69100-d33f-4af2-b429-a387288c9dc8",
"32b5e073-347e-4d95-992a-f7afd338e351"
],
"NewsItems": [
"c00dafb3-80c4-4520-a32d-f972602dd9d3",
"6b2be5d0-343b-4955-b918-d06ca2bf2f33"
]
}
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>2ae69100-d33f-4af2-b429-a387288c9dc8</d2p1:guid>
<d2p1:guid>32b5e073-347e-4d95-992a-f7afd338e351</d2p1:guid>
</Issues>
<NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c00dafb3-80c4-4520-a32d-f972602dd9d3</d2p1:guid>
<d2p1:guid>6b2be5d0-343b-4955-b918-d06ca2bf2f33</d2p1:guid>
</NewsItems>
<PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c99431fc-5cb9-428b-99a9-23c78d57d813</d2p1:guid>
<d2p1:guid>62420c52-4712-4403-a0f0-444fd95ae6e2</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>