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": [ "75a605f2-912d-415b-b4da-bfac49d82a27", "9e87bd36-7e4f-4a48-aa5e-23634825e4eb" ], "UserStatuses": true, "Issues": [ "35de4291-0b9c-48de-8a7b-138fa9de2716", "e28c0b27-e54e-4718-a44f-2a76ed65c4ff" ], "NewsItems": [ "f8fc79fc-12b9-4995-af04-5d534e061fa4", "c1747bf3-dedc-42ea-b3fd-b6f4d6b8170d" ] }
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>35de4291-0b9c-48de-8a7b-138fa9de2716</d2p1:guid> <d2p1:guid>e28c0b27-e54e-4718-a44f-2a76ed65c4ff</d2p1:guid> </Issues> <NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>f8fc79fc-12b9-4995-af04-5d534e061fa4</d2p1:guid> <d2p1:guid>c1747bf3-dedc-42ea-b3fd-b6f4d6b8170d</d2p1:guid> </NewsItems> <PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>75a605f2-912d-415b-b4da-bfac49d82a27</d2p1:guid> <d2p1:guid>9e87bd36-7e4f-4a48-aa5e-23634825e4eb</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>