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": [ "9725cdc3-4e7a-4f7f-a886-15eb1bcc960b", "0cf2442e-78f0-4ddf-8f42-b0f3f0378c39" ], "UserStatuses": true, "Issues": [ "364fbb2c-2b80-435a-9d04-527a6b59b05b", "a2b2e3a9-a287-4a87-875d-2d64516fc7fe" ], "NewsItems": [ "3b497f08-e375-4093-a52c-61c00b0416d7", "97d51f19-6b1d-4b37-b7a4-64bfdef53ac5" ] }
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>364fbb2c-2b80-435a-9d04-527a6b59b05b</d2p1:guid> <d2p1:guid>a2b2e3a9-a287-4a87-875d-2d64516fc7fe</d2p1:guid> </Issues> <NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>3b497f08-e375-4093-a52c-61c00b0416d7</d2p1:guid> <d2p1:guid>97d51f19-6b1d-4b37-b7a4-64bfdef53ac5</d2p1:guid> </NewsItems> <PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>9725cdc3-4e7a-4f7f-a886-15eb1bcc960b</d2p1:guid> <d2p1:guid>0cf2442e-78f0-4ddf-8f42-b0f3f0378c39</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>