POST classroomAPI/PD/createPDBoard?TeamID={TeamID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TeamID

integer

Required

Body Parameters

PDBoardCopyData
NameDescriptionTypeAdditional 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": [
    "4771fbea-9868-438f-b148-9ad2f9a6352f",
    "c133209d-b03b-477f-9ff6-c1e8436a2962"
  ],
  "UserStatuses": true,
  "Issues": [
    "03d9610e-3118-430b-aef5-175bcd9c4ac0",
    "23c47470-5742-4f81-876f-345329f41831"
  ],
  "NewsItems": [
    "c22bf28d-8bef-4e6a-83be-1b994b779988",
    "8395fbe4-71d1-499a-8720-cafc79836df1"
  ]
}

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>03d9610e-3118-430b-aef5-175bcd9c4ac0</d2p1:guid>
    <d2p1:guid>23c47470-5742-4f81-876f-345329f41831</d2p1:guid>
  </Issues>
  <NewsItems xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>c22bf28d-8bef-4e6a-83be-1b994b779988</d2p1:guid>
    <d2p1:guid>8395fbe4-71d1-499a-8720-cafc79836df1</d2p1:guid>
  </NewsItems>
  <PerformanceDocs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>4771fbea-9868-438f-b148-9ad2f9a6352f</d2p1:guid>
    <d2p1:guid>c133209d-b03b-477f-9ff6-c1e8436a2962</d2p1:guid>
  </PerformanceDocs>
  <UserStatuses>true</UserStatuses>
</PDBoardCopyData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PdBoardResponse
NameDescriptionTypeAdditional 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>