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": [
"a976bcb1-913b-4bd7-a8b3-fb1e2a66f769",
"bd9fd611-42e0-48b7-8cea-256977de2a2a"
],
"UserStatuses": true,
"Issues": [
"b6b2dc8d-e2c3-429a-a8d2-f99e75068720",
"83b4f601-38dc-4235-9489-4e36ffb97525"
],
"NewsItems": [
"254dad2d-8b80-42ac-af75-964ff32bc8d1",
"64c750eb-fb24-4067-a74f-a849f312467a"
]
}
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>b6b2dc8d-e2c3-429a-a8d2-f99e75068720</d2p1:guid>
<d2p1:guid>83b4f601-38dc-4235-9489-4e36ffb97525</d2p1:guid>
</Issues>
<NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>254dad2d-8b80-42ac-af75-964ff32bc8d1</d2p1:guid>
<d2p1:guid>64c750eb-fb24-4067-a74f-a849f312467a</d2p1:guid>
</NewsItems>
<PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a976bcb1-913b-4bd7-a8b3-fb1e2a66f769</d2p1:guid>
<d2p1:guid>bd9fd611-42e0-48b7-8cea-256977de2a2a</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>