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": [
"59998f02-7770-41bf-bde8-b1e952f1c7d9",
"986acc96-c097-4e10-8f04-c71bfeacff07"
],
"UserStatuses": true,
"Issues": [
"6ef07e6b-17cd-4f08-90a2-31379ebdbb27",
"59541b20-2606-4078-9162-8e5ab9b2f6c7"
],
"NewsItems": [
"60ac63f4-d394-4a68-a44b-5fd3740871c4",
"c3b16647-74fa-4633-aa26-b401b53bd2b5"
]
}
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>6ef07e6b-17cd-4f08-90a2-31379ebdbb27</d2p1:guid>
<d2p1:guid>59541b20-2606-4078-9162-8e5ab9b2f6c7</d2p1:guid>
</Issues>
<NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>60ac63f4-d394-4a68-a44b-5fd3740871c4</d2p1:guid>
<d2p1:guid>c3b16647-74fa-4633-aa26-b401b53bd2b5</d2p1:guid>
</NewsItems>
<PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>59998f02-7770-41bf-bde8-b1e952f1c7d9</d2p1:guid>
<d2p1:guid>986acc96-c097-4e10-8f04-c71bfeacff07</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>