Skip to main content
Version: 1.0.2

Deposit

Deposit instructed amount into the specified account.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
String

Example: bizpay

ParameterDescription
Type

Mandatory

Enum

Valid Values:

  • REMITTANCE
  • CARDPAY
  • INTERNAL_TRANSFER
  • WITHDRAW
  • DEPOSIT
  • ADMIN_DEPOSIT
ReferenceId

Mandatory

Example: REF0000000002
TimeStampString

Example: 2020-04-22T07:44:55-05:00

Product

Mandatory

Program

Mandatory

String

Example: PL

InstructedAmount

Mandatory

  • Amount: Number

    Mandatory

    In Smallest Currency Unit

    Example: 7

  • Currency: String

    Mandatory

    Example: USD

FeeAmount
  • Amount: Number

    Mandatory

    In Smallest Currency Unit

    Example: 7

  • Currency: String

    Mandatory

    Example: USD

TaxAmount
  • Amount: Number

    Mandatory

    In Smallest Currency Unit

    Example: 1

  • Currency: String

    Mandatory

    Example: USD

DebtorAccount
  • AccountNumber: String

    Example: 98652221851

    Required only for ACH payment mode

  • InstitutionId: String

    Example: 101115302

  • Reference: String

    Example: txn000013

    Required only for PG, QRCODE, EFT, TELLER, BENEFIT, CHEQUE payment mode

  • Party:
    • AccountVerificationId: String

      Example: 5e9f246bd6571f2280d3d7b4

    • KycId: String

      Example: 5e9f1696d6571f272c5bcc0f

CreditorAccount
  • AccountNumber: String

    Mandatory

    Account Number from add account Response

    Sample Value: 9865321478

  • InstitutionId: String

    Sample Value: 011000028

  • IdentificationType: Enum

    Valid Values:

    • SAVINGS
    • CHECKINGS
    • WALLET
  • IFSCCode: String

    Sample Value: HDFC0001866

  • CardNumber: String

    Sample Value: 5102589999999913

  • ExpiryDate: String

    Expiry date in the YYYY-MM format

    Sample Value: 2022-12`

  • Party
    • Name: String

      Sample Value: John Deo

    • Identification: String

      Sample Value: 859630248

    • IdentificationType: String

      Sample Value: SSN

    • DateOfBirth: String

      Sample Value: 19930222

    • Address:
      • Line1: String

        Sample Value: 1200 street

      • Line2: String

        Sample Value: 2nd main road

      • TownName: String

        Sample Value: chennai

      • PostCode: String

        Sample Value: 600042

      • State: String

        Sample Value: TN

      • Country: String

        Sample Value: IN

    • Identification:
      • Type: String

        Type of Identification

        Sample Value: SSN

      • Value: String

        Identifying document number

        Sample Value: 324345435

    • PhoneNumber: String

      Sample Value: 45215478

MFP
  • IP: String

    Example: 10.3.254.143

  • WebBrowser: String

    Example: chrome

  • OperatingSystem: String

    Example: win

  • Latitude: String

    Example: 12.9703498

  • Longitude: String

    Example: 18.1561478

  • Model: String

    Example: HRA-001

  • Locality: String

    Example: Kansas

  • PostalCode: String

    Example: 50021


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{
"method": "CustomerService.UpdateCustomer",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "67010",
"credential": "Basic Key"
},
"payload": {
"CreditorAccount": {
"AccountNumber": "200643548027414",
"InstitutionId": "101115302"
},
"DebtorAccount": {
"reference": "txn000014"
},
"InstructedAmount": {
"Amount": 100000,
"Currency": "USD"
},
"Mode": "BENEFIT",
"Product": "LEDGER",
"Program": "PLCBWBANK",
"ReferenceId": "BENREF1659339170",
"TimeStamp": "2021-02-16T07:44:55-05:00",
"Type": "DEPOSIT"
}
}
}
}'

Body

{
"method": "TransactionService.Payment",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "6003",
"credential": "Basic bWVsdmluQG5ldHhkLmNvbTpBZG1pbkAxMjM="
},
"payload": {
"Type": "DEPOSIT",
"Mode": "BENEFIT",
"Channel": "BENEFIT",
"ReferenceId": "BANK20210532100105",
"TimeStamp": "2021-02-16T07:44:55-05:00",
"Product": "LEDGER",
"Program": "100000000000005",
"InstructedAmount": {
"Amount": 20000,
"Currency": "USD"
},
"DebtorAccount": {
"Reference": "txn000013"
},
"CreditorAccount": {
"AccountNumber": "200524894086671",
"InstitutionId": "122105155"
}
}
}
}

Response: 200

Response Parameters
ParameterDescription
StatusENUM
  • COMPLETED
  • PENDING
  • FAILED
ReferenceIdStringSample Value: REF0000000020>
TimeStampStringSample Value: 2020-04-22T07:44:55-05:00
TransactionIdString5ea0164ed6571f12242d54D
Feesarray[Fees]
  • Amount: Number

    In Smallest Currency Unit

    Sample Value: 2
  • Currency: USD String
  • TransactionNumber: QA00000000000362 String
  • Tax: Number

    In Smallest Currency Unit

    Sample Value: 500
RiskRisk
  • String
  • riskScore
  • 75

{
"id": "1",
"result": {
"status": "COMPLETED",
"timeStamp": "2021-02-16T07:44:55-0500",
"TransactionID": "81222",
"transactionNumber": "QA00000000010055",
"referenceID": "BANK20210532100105",
"processID": "PL23050300010050",
"transactionAmount": 20000
}
}