GET api/applicant/Application/GetCategorySectionsByApplicationId?applicationId={applicationId}&categoryId={categoryId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicationId

string

Required

categoryId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfListOfAppFormCategorySectionGetModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of AppFormCategorySectionGetModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": [
    {
      "CatSecID": 1,
      "CategoryID": 2,
      "SectionID": 3,
      "SectionName": "sample string 4",
      "StepOrder": 5,
      "IsCompleted": true,
      "IsDataSubmitted": true
    },
    {
      "CatSecID": 1,
      "CategoryID": 2,
      "SectionID": 3,
      "SectionName": "sample string 4",
      "StepOrder": 5,
      "IsCompleted": true,
      "IsDataSubmitted": true
    }
  ]
}

application/xml, text/xml

Sample:
<ApiResponseOfArrayOfAppFormCategorySectionGetModelj_Pf0XX_P4 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomApplicationModels">
    <d2p1:AppFormCategorySectionGetModel>
      <d2p1:CatSecID>1</d2p1:CatSecID>
      <d2p1:CategoryID>2</d2p1:CategoryID>
      <d2p1:IsCompleted>true</d2p1:IsCompleted>
      <d2p1:IsDataSubmitted>true</d2p1:IsDataSubmitted>
      <d2p1:SectionID>3</d2p1:SectionID>
      <d2p1:SectionName>sample string 4</d2p1:SectionName>
      <d2p1:StepOrder>5</d2p1:StepOrder>
    </d2p1:AppFormCategorySectionGetModel>
    <d2p1:AppFormCategorySectionGetModel>
      <d2p1:CatSecID>1</d2p1:CatSecID>
      <d2p1:CategoryID>2</d2p1:CategoryID>
      <d2p1:IsCompleted>true</d2p1:IsCompleted>
      <d2p1:IsDataSubmitted>true</d2p1:IsDataSubmitted>
      <d2p1:SectionID>3</d2p1:SectionID>
      <d2p1:SectionName>sample string 4</d2p1:SectionName>
      <d2p1:StepOrder>5</d2p1:StepOrder>
    </d2p1:AppFormCategorySectionGetModel>
  </Data>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiResponseOfArrayOfAppFormCategorySectionGetModelj_Pf0XX_P4>