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": [ "e12972d0-62b5-4b17-824d-e30e3243ff83", "cc4b22dc-9d36-475d-9b38-c0372d5c849f" ], "UserStatuses": true, "Issues": [ "a1269500-bceb-4447-89c1-2e24c829372f", "1c1c9cee-ce82-41d5-a807-f2cc1c3ec6e5" ], "NewsItems": [ "c6e1c232-139d-48c3-b429-820df2ef73f4", "b380fe3b-f859-46cd-913b-691dbf8e84d7" ] }
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>a1269500-bceb-4447-89c1-2e24c829372f</d2p1:guid> <d2p1:guid>1c1c9cee-ce82-41d5-a807-f2cc1c3ec6e5</d2p1:guid> </Issues> <NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>c6e1c232-139d-48c3-b429-820df2ef73f4</d2p1:guid> <d2p1:guid>b380fe3b-f859-46cd-913b-691dbf8e84d7</d2p1:guid> </NewsItems> <PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>e12972d0-62b5-4b17-824d-e30e3243ff83</d2p1:guid> <d2p1:guid>cc4b22dc-9d36-475d-9b38-c0372d5c849f</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>