GET api/DeliveryAgent/InductionProgram/GetAllInductionSectionDtlsOfDeliveryAgent?DeliveryAgentID={DeliveryAgentID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DeliveryAgentID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InductionSectionModel
NameDescriptionTypeAdditional information
SectionID

integer

None.

SectionName

string

None.

IsCompleted

boolean

None.

IsAllSectionCompleted

boolean

None.

HasQuiz

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SectionID": 1,
    "SectionName": "sample string 2",
    "IsCompleted": true,
    "IsAllSectionCompleted": true,
    "HasQuiz": true
  },
  {
    "SectionID": 1,
    "SectionName": "sample string 2",
    "IsCompleted": true,
    "IsAllSectionCompleted": true,
    "HasQuiz": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfInductionSectionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeliveryAgent.Operations.CustomModels">
  <InductionSectionModel>
    <HasQuiz>true</HasQuiz>
    <IsAllSectionCompleted>true</IsAllSectionCompleted>
    <IsCompleted>true</IsCompleted>
    <SectionID>1</SectionID>
    <SectionName>sample string 2</SectionName>
  </InductionSectionModel>
  <InductionSectionModel>
    <HasQuiz>true</HasQuiz>
    <IsAllSectionCompleted>true</IsAllSectionCompleted>
    <IsCompleted>true</IsCompleted>
    <SectionID>1</SectionID>
    <SectionName>sample string 2</SectionName>
  </InductionSectionModel>
</ArrayOfInductionSectionModel>