POST api/PaytmPaymentAPI/PaytmPostPayment
Documentation for 'PaytmPostPayment'.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
appParmData | Documentation for 'appParmData'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "AuthenticationKey": "sample string 1", "EnrolmentNo": "sample string 2", "InstituteName": "sample string 3", "OrderId": "sample string 4", "Amount": 5.1, "PayMode": "sample string 6", "BankName": "sample string 7", "FYCode": "sample string 8", "APKId": "sample string 9", "CompanyCode": "sample string 10" }
application/xml, text/xml
Sample:
<PaytmParmData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fastup.SLWebAPI.Models.PaymentGateWay"> <APKId>sample string 9</APKId> <Amount>5.1</Amount> <AuthenticationKey>sample string 1</AuthenticationKey> <BankName>sample string 7</BankName> <CompanyCode>sample string 10</CompanyCode> <EnrolmentNo>sample string 2</EnrolmentNo> <FYCode>sample string 8</FYCode> <InstituteName>sample string 3</InstituteName> <OrderId>sample string 4</OrderId> <PayMode>sample string 6</PayMode> </PaytmParmData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{ "ReceiptId": "sample string 1", "Status": "sample string 2", "ErrorCode": 3 }
application/xml, text/xml
Sample:
<PostPaymentDataVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fastup.SLWebAPI.Models.PaymentGateWay"> <ErrorCode>3</ErrorCode> <ReceiptId>sample string 1</ReceiptId> <Status>sample string 2</Status> </PostPaymentDataVM>