PUT api/FeeSetupSetting/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

FeesSetupView
NameDescriptionTypeAdditional information
FeeSetup

FeeSetup

None.

CourseFeeList

Collection of CourseAssignedFee

None.

NewStudentFeeList

Collection of NewStudentFee

None.

ForeignStudentFeeList

Collection of ForeignStudentFee

None.

Request Formats

application/json, text/json

Sample:
{
  "feeSetup": {
    "id": 1,
    "admissionYear": 2,
    "miscGroupId": 3,
    "otherFeeGroupId": 4,
    "termId": 5,
    "category": "sample string 6"
  },
  "courseFeeList": [
    {
      "id": 1,
      "feeSetupId": 2,
      "courseId": 3,
      "courseYear": 4,
      "feeId": 5,
      "amount": 6.0
    },
    {
      "id": 1,
      "feeSetupId": 2,
      "courseId": 3,
      "courseYear": 4,
      "feeId": 5,
      "amount": 6.0
    }
  ],
  "newStudentFeeList": [
    {
      "id": 1,
      "feeSetupId": 2,
      "feeId": 3,
      "amount": 4.0
    },
    {
      "id": 1,
      "feeSetupId": 2,
      "feeId": 3,
      "amount": 4.0
    }
  ],
  "foreignStudentFeeList": [
    {
      "id": 1,
      "feeSetupId": 2,
      "entryStatus": "sample string 3",
      "amount": 4.0
    },
    {
      "id": 1,
      "feeSetupId": 2,
      "entryStatus": "sample string 3",
      "amount": 4.0
    }
  ]
}

text/html

Sample:
{"feeSetup":{"id":1,"admissionYear":2,"miscGroupId":3,"otherFeeGroupId":4,"termId":5,"category":"sample string 6"},"courseFeeList":[{"id":1,"feeSetupId":2,"courseId":3,"courseYear":4,"feeId":5,"amount":6.0},{"id":1,"feeSetupId":2,"courseId":3,"courseYear":4,"feeId":5,"amount":6.0}],"newStudentFeeList":[{"id":1,"feeSetupId":2,"feeId":3,"amount":4.0},{"id":1,"feeSetupId":2,"feeId":3,"amount":4.0}],"foreignStudentFeeList":[{"id":1,"feeSetupId":2,"entryStatus":"sample string 3","amount":4.0},{"id":1,"feeSetupId":2,"entryStatus":"sample string 3","amount":4.0}]}

application/xml, text/xml

Sample:
<FeesSetupView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Api.ViewModels">
  <CourseFeeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
    <d2p1:CourseAssignedFee>
      <d2p1:Amount>6</d2p1:Amount>
      <d2p1:CourseId>3</d2p1:CourseId>
      <d2p1:CourseYear>4</d2p1:CourseYear>
      <d2p1:FeeId>5</d2p1:FeeId>
      <d2p1:FeeSetupId>2</d2p1:FeeSetupId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:CourseAssignedFee>
    <d2p1:CourseAssignedFee>
      <d2p1:Amount>6</d2p1:Amount>
      <d2p1:CourseId>3</d2p1:CourseId>
      <d2p1:CourseYear>4</d2p1:CourseYear>
      <d2p1:FeeId>5</d2p1:FeeId>
      <d2p1:FeeSetupId>2</d2p1:FeeSetupId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:CourseAssignedFee>
  </CourseFeeList>
  <FeeSetup xmlns:d2p1="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
    <d2p1:AdmissionYear>2</d2p1:AdmissionYear>
    <d2p1:Category>sample string 6</d2p1:Category>
    <d2p1:Id>1</d2p1:Id>
    <d2p1:MiscGroupId>3</d2p1:MiscGroupId>
    <d2p1:OtherFeeGroupId>4</d2p1:OtherFeeGroupId>
    <d2p1:TermId>5</d2p1:TermId>
  </FeeSetup>
  <ForeignStudentFeeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
    <d2p1:ForeignStudentFee>
      <d2p1:Amount>4</d2p1:Amount>
      <d2p1:EntryStatus>sample string 3</d2p1:EntryStatus>
      <d2p1:FeeSetupId>2</d2p1:FeeSetupId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:ForeignStudentFee>
    <d2p1:ForeignStudentFee>
      <d2p1:Amount>4</d2p1:Amount>
      <d2p1:EntryStatus>sample string 3</d2p1:EntryStatus>
      <d2p1:FeeSetupId>2</d2p1:FeeSetupId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:ForeignStudentFee>
  </ForeignStudentFeeList>
  <NewStudentFeeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
    <d2p1:NewStudentFee>
      <d2p1:Amount>4</d2p1:Amount>
      <d2p1:FeeId>3</d2p1:FeeId>
      <d2p1:FeeSetupId>2</d2p1:FeeSetupId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:NewStudentFee>
    <d2p1:NewStudentFee>
      <d2p1:Amount>4</d2p1:Amount>
      <d2p1:FeeId>3</d2p1:FeeId>
      <d2p1:FeeSetupId>2</d2p1:FeeSetupId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:NewStudentFee>
  </NewStudentFeeList>
</FeesSetupView>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.