Skip to main content
Version: 1.0.2

Credit Transfer Outbound

The Transfer API enables to initiate outbound transactions.

Method: POST

{{URL}}/rtp/rpc/TransactionService/Transfer

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

referenceNumber

Mandatory

String

Reference number of the transaction

Example – "M202311099876665149078836456"

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "TCH" or "FedNow"

SenderType

Mandatory

(applicable only for TCH)

String

Type of customer

Example – "CONSUMER"

instructedAmount

Mandatory

Object

amount

Mandatory

Number

Amount of transaction

Example – 8546

currency

Mandatory

String

Currency code in which the transaction happens

Example – "USD"

creditorAccount

Mandatory

Object

memberId

Mandatory

String

Routing numer of the beneficiary bank/financial institution

Example – "234567891"

name

Mandatory

String

Name of the beneficiary

Example – "Test"

accountNumber

Mandatory

String

Account number of the beneficiary

Example – "99664715164441"

address

Optional

Object

streetName

Optional

String

Street name of the beneficiary address

Example – "sdsds"

postalCode

Optional

String

Postal code of the beneficiary address

Example – "1245"

townName

Optional

String

Town name of the beneficiary address

Example – "Chicago"

countrySubDiv

Optional

String

Code of a subdivision which can be a state, province, or region

Example – "OL"

country

Optional

String

Country code of the beneficiary address

Example – "LM"

debtorAccount

Optional

Object

memberId

Optional

String

Routing numer of the sender bank/financial institution

Example – "026013673"

name

Optional

String

Name of the sender

Example – "sgdgsd"

accountNumber

Optional

String

Account number of the sender

Example – "4234242423"

address

Optional

Object

streetName

Optional

String

Street name of the sender address

Example – "124a"

postalCode

Optional

String

Postal code of the sender address

Example – "1245"

townName

Optional

String

Town name of the sender address

Example – "LosAngeles"

countrySubDiv

Optional

String

Code of a subdivision which can be a state, province, or region

Example – "IN"

country

Optional

String

Country code of the sender address

Example – "US"


curl --location '{{URL}}/rtp/rpc/TransactionService/Transfer' \
--header 'Content-Type: application/json' \
--data '{"referenceNumber":"M202311099876665149078836456","processor":"TCH","SenderType":"CONSUMER","instructedAmount":{"amount":8546,"currency":"USD"},"creditorAccount":{"memberId":"234567891","name":"Test","accountNumber":"99664715164441","address":{"streetName":"sdsds","postalCode":"1245","townName":"Chicago","countrySubDiv":"LM","country":"US"}},"debtorAccount":{"memberId":"026013673","name":"sgdgsd","accountNumber":"4234242423","address":{"streetName":"124a","postalCode":"1245","townName":"LosAngeles","countrySubDiv":"IN","country":"US"}}}'

Request Body (Applicable for both FedNow and TCH)


{
"referenceNumber": "M202311099876665149078836456",
"processor": "TCH",
"SenderType": "CONSUMER", //applicable only for TCH
"instructedAmount": {
"amount": 8546,
"currency": "USD"
},
"creditorAccount": {
"memberId": "234567891",
"name": "Test",
"accountNumber": "99664715164441",
"address": {
"streetName": "sdsds",
"postalCode": "1245",
"townName": "Chicago",
"countrySubDiv": "LM",
"country": "US"
}
},
"debtorAccount": {
"memberId": "026013673",
"name": "sgdgsd",
"accountNumber": "4234242423",
"address": {
"streetName": "124a",
"postalCode": "1245",
"townName": "LosAngeles",
"countrySubDiv": "IN",
"country": "US"
}
}
}

Response: 200

Response Parameters
ParameterDescription

response

String

Response received for the given request

Example – "JSON Representation of Received Response"

message

String

Notification message for the transaction

Example – "Transfered Successfully"

transactionID

String

Unique ID generated for the transaction

Example – "20240328026013673T1B6ZQQ99286072611"

endToEndId

String

ID that enables to trace the transaction at any time during the process

Example – "M202311099876665149078836457"

instructingId

String

Payment reference ID of the transaction

Example – "20240328026013673T1B6ZQQ99286072611"

messageId

String

Unique message ID generated for the transaction

Example – "M20240328026013673T1BPQG99286072611"

rawMessage

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

status

String

Current status of the transaction

Example – "ACTC"

acceptedDate

String

Date and time of the transaction was processed

Example – "2024-03-28T11:57:48"

settlementDate

String

Date and time of the transaction was completed

Example – "2024-03-28"

windowId

(applicable only for TCH)

String

Unique ID used for reconciliation of transactions

Example – "001"

Response Body (Applicable for both FedNow and TCH)


{
"response": "JSON Representation of Received Response",
"message": "Transfered Successfully",
"transactionID": "20240328026013673T1B6ZQQ99286072611",
"endToEndId": "M202311099876665149078836457",
"instructingId": "20240328026013673T1B6ZQQ99286072611",
"messageId": "M20240328026013673T1BPQG99286072611",
"rawMessage": "Base64 Value of Received Response",
"status": "ACTC",
"acceptedDate": "2024-03-28T11:57:48",
"settlementDate": "2024-03-28",
"windowId": "001" //applicable only for TCH
}