POST api/payment

Request Information

URI Parameters

None.

Body Parameters

PaymentRequest
NameDescriptionTypeAdditional information
MobileNo

string

None.

OperatorName

string

None.

PaidAmount

decimal number

None.

FeesType

string

None.

RollNumber

string

None.

TransactionDate

date

None.

TransactionID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MobileNo": "sample string 1",
  "OperatorName": "sample string 2",
  "PaidAmount": 3.0,
  "FeesType": "sample string 4",
  "RollNumber": "sample string 5",
  "TransactionDate": "2026-01-01T15:19:08.9986869+06:00",
  "TransactionID": "sample string 7"
}

application/xml, text/xml

Sample:
<PaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StudentPortalWebAPI.Models">
  <FeesType>sample string 4</FeesType>
  <MobileNo>sample string 1</MobileNo>
  <OperatorName>sample string 2</OperatorName>
  <PaidAmount>3</PaidAmount>
  <RollNumber>sample string 5</RollNumber>
  <TransactionDate>2026-01-01T15:19:08.9986869+06:00</TransactionDate>
  <TransactionID>sample string 7</TransactionID>
</PaymentRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.