POST classroomAPI/PD/createPDBoard?TeamID={TeamID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
TeamID | integer |
Required |
Body Parameters
PDBoardCopyDataName | 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": [ "fe81cc25-931b-4837-a5b1-e5d50ba76939", "42221f0b-b088-428c-9fb9-4f61a416f127" ], "UserStatuses": true, "Issues": [ "e879ed37-1c02-4664-bb47-94465b87f420", "45f4e429-dc56-4a4d-b5f6-7b96ab90f2e8" ], "NewsItems": [ "5651b127-aaf3-4fe2-9727-153c8104f972", "8376c6a9-669a-4c2d-ad14-a87f0e6ea9c9" ] }
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>e879ed37-1c02-4664-bb47-94465b87f420</d2p1:guid> <d2p1:guid>45f4e429-dc56-4a4d-b5f6-7b96ab90f2e8</d2p1:guid> </Issues> <NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>5651b127-aaf3-4fe2-9727-153c8104f972</d2p1:guid> <d2p1:guid>8376c6a9-669a-4c2d-ad14-a87f0e6ea9c9</d2p1:guid> </NewsItems> <PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>fe81cc25-931b-4837-a5b1-e5d50ba76939</d2p1:guid> <d2p1:guid>42221f0b-b088-428c-9fb9-4f61a416f127</d2p1:guid> </PerformanceDocs> <UserStatuses>true</UserStatuses> </PDBoardCopyData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PdBoardResponseName | 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>