GET api/ClergyAssessmentResponseDetails

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ClergyAssessmentResponseDetail
NameDescriptionTypeAdditional information
RecordId

integer

None.

ResponseRecordId

integer

None.

SelfOrStaff

string

None.

CategoryId

integer

None.

QuestionId

integer

None.

Rating

integer

None.

Comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecordId": 1,
    "ResponseRecordId": 1,
    "SelfOrStaff": "sample string 2",
    "CategoryId": 1,
    "QuestionId": 1,
    "Rating": 1,
    "Comment": "sample string 3"
  },
  {
    "RecordId": 1,
    "ResponseRecordId": 1,
    "SelfOrStaff": "sample string 2",
    "CategoryId": 1,
    "QuestionId": 1,
    "Rating": 1,
    "Comment": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfClergyAssessmentResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/inumcData">
  <ClergyAssessmentResponseDetail>
    <CategoryId>1</CategoryId>
    <Comment>sample string 3</Comment>
    <QuestionId>1</QuestionId>
    <Rating>1</Rating>
    <RecordId>1</RecordId>
    <ResponseRecordId>1</ResponseRecordId>
    <SelfOrStaff>sample string 2</SelfOrStaff>
  </ClergyAssessmentResponseDetail>
  <ClergyAssessmentResponseDetail>
    <CategoryId>1</CategoryId>
    <Comment>sample string 3</Comment>
    <QuestionId>1</QuestionId>
    <Rating>1</Rating>
    <RecordId>1</RecordId>
    <ResponseRecordId>1</ResponseRecordId>
    <SelfOrStaff>sample string 2</SelfOrStaff>
  </ClergyAssessmentResponseDetail>
</ArrayOfClergyAssessmentResponseDetail>