PUT api/StudentItemPayment/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

string

Required

Body Parameters

Collection of StudentItemPaymentsViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

FeeCode

string

None.

FeeDescription

string

None.

PaymentId

integer

None.

Amount

decimal number

None.

isPostable

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "feeCode": "sample string 2",
    "feeDescription": "sample string 3",
    "paymentId": 4,
    "amount": 5.0,
    "isPostable": true
  },
  {
    "id": 1,
    "feeCode": "sample string 2",
    "feeDescription": "sample string 3",
    "paymentId": 4,
    "amount": 5.0,
    "isPostable": true
  }
]

text/html

Sample:
[{"id":1,"feeCode":"sample string 2","feeDescription":"sample string 3","paymentId":4,"amount":5.0,"isPostable":true},{"id":1,"feeCode":"sample string 2","feeDescription":"sample string 3","paymentId":4,"amount":5.0,"isPostable":true}]

application/xml, text/xml

Sample:
<ArrayOfStudentItemPaymentsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Api.ViewModels">
  <StudentItemPaymentsViewModel>
    <Amount>5</Amount>
    <FeeCode>sample string 2</FeeCode>
    <FeeDescription>sample string 3</FeeDescription>
    <Id>1</Id>
    <PaymentId>4</PaymentId>
    <isPostable>true</isPostable>
  </StudentItemPaymentsViewModel>
  <StudentItemPaymentsViewModel>
    <Amount>5</Amount>
    <FeeCode>sample string 2</FeeCode>
    <FeeDescription>sample string 3</FeeDescription>
    <Id>1</Id>
    <PaymentId>4</PaymentId>
    <isPostable>true</isPostable>
  </StudentItemPaymentsViewModel>
</ArrayOfStudentItemPaymentsViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.