POST api/StudentFee/CheckLastReceiptStatus?LastReceiptNo={LastReceiptNo}&Amount={Amount}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
LastReceiptNo

string

Required

Amount

decimal number

Required

Body Parameters

PaymentGatewayDetailModel
NameDescriptionTypeAdditional information
ReceiptNo

string

None.

AdmissionNo

string

None.

StudentName

string

None.

FeeForMonth

string

None.

AccountType

string

None.

Account1

decimal number

None.

Account2

decimal number

None.

Amount

decimal number

None.

ID

integer

None.

SelectedPaymentGatewayID

integer

None.

PaymentGatewayName

string

None.

SelectedKitType

string

None.

AccountID

string

None.

Password

string

None.

ProductID

string

None.

ReturnURL

string

None.

CancelURL

string

None.

Key1

string

None.

Key2

string

None.

Session

string

None.

PaymentGatewayStatus

boolean

None.

CreateDate

date

None.

DomainID

integer

None.

ProductIDJSON

string

None.

Status

integer

None.

Message

string

None.

Domain

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ReceiptNo": "sample string 1",
  "AdmissionNo": "sample string 2",
  "StudentName": "sample string 3",
  "FeeForMonth": "sample string 4",
  "AccountType": "sample string 5",
  "Account1": 6.0,
  "Account2": 7.0,
  "Amount": 8.0,
  "ID": 9,
  "SelectedPaymentGatewayID": 10,
  "PaymentGatewayName": "sample string 11",
  "SelectedKitType": "sample string 12",
  "AccountID": "sample string 13",
  "Password": "sample string 14",
  "ProductID": "sample string 15",
  "ReturnURL": "sample string 16",
  "CancelURL": "sample string 17",
  "Key1": "sample string 18",
  "Key2": "sample string 19",
  "Session": "sample string 20",
  "PaymentGatewayStatus": true,
  "CreateDate": "2024-09-20T06:10:27.5920137+05:30",
  "DomainID": 22,
  "ProductIDJSON": "sample string 23",
  "Status": 24,
  "Message": "sample string 25",
  "Domain": "sample string 26"
}

application/xml, text/xml

Sample:
<PaymentGatewayDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.MasterModels">
  <Domain xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 26</Domain>
  <Message xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 25</Message>
  <Status xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">24</Status>
  <Account1>6</Account1>
  <Account2>7</Account2>
  <AccountID>sample string 13</AccountID>
  <AccountType>sample string 5</AccountType>
  <AdmissionNo>sample string 2</AdmissionNo>
  <Amount>8</Amount>
  <CancelURL>sample string 17</CancelURL>
  <CreateDate>2024-09-20T06:10:27.5920137+05:30</CreateDate>
  <DomainID>22</DomainID>
  <FeeForMonth>sample string 4</FeeForMonth>
  <ID>9</ID>
  <Key1>sample string 18</Key1>
  <Key2>sample string 19</Key2>
  <Password>sample string 14</Password>
  <PaymentGatewayName>sample string 11</PaymentGatewayName>
  <PaymentGatewayStatus>true</PaymentGatewayStatus>
  <ProductID>sample string 15</ProductID>
  <ProductIDJSON>sample string 23</ProductIDJSON>
  <ReceiptNo>sample string 1</ReceiptNo>
  <ReturnURL>sample string 16</ReturnURL>
  <SelectedKitType>sample string 12</SelectedKitType>
  <SelectedPaymentGatewayID>10</SelectedPaymentGatewayID>
  <Session>sample string 20</Session>
  <StudentName>sample string 3</StudentName>
</PaymentGatewayDetailModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StatusAPIResponse
NameDescriptionTypeAdditional information
TransactionStatus

boolean

None.

TransactionID

string

None.

Remarks

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TransactionStatus": true,
  "TransactionID": "sample string 2",
  "Remarks": "sample string 3"
}

application/xml, text/xml

Sample:
<StatusAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.MasterModels">
  <Remarks>sample string 3</Remarks>
  <TransactionID>sample string 2</TransactionID>
  <TransactionStatus>true</TransactionStatus>
</StatusAPIResponse>