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": [ "1f8395ee-6e4f-4683-a900-cb39301ee4f9", "ef74be49-0e45-4948-9338-005e9bd201a4" ], "UserStatuses": true, "Issues": [ "ba61c4c4-a0b0-4dee-99ae-57ee2e78129a", "745f89c7-1144-43d8-86a3-8d4c357c9ae0" ], "NewsItems": [ "451d8e84-9eec-4231-95c3-538223728832", "99b7c475-7a4f-4c8b-91af-fc65ee046761" ] }
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>ba61c4c4-a0b0-4dee-99ae-57ee2e78129a</d2p1:guid> <d2p1:guid>745f89c7-1144-43d8-86a3-8d4c357c9ae0</d2p1:guid> </Issues> <NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>451d8e84-9eec-4231-95c3-538223728832</d2p1:guid> <d2p1:guid>99b7c475-7a4f-4c8b-91af-fc65ee046761</d2p1:guid> </NewsItems> <PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>1f8395ee-6e4f-4683-a900-cb39301ee4f9</d2p1:guid> <d2p1:guid>ef74be49-0e45-4948-9338-005e9bd201a4</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>