/transact
Our newest endpoint for transacting, which will eventually replace /issue, /redeem, and /transfer. Must be used to make use of our new ACHNow product, or use instant rails.
This request triggers the issuance or remittance of funds with various options to customize how the payment is sent. With this endpoint, you can send payments either as regular ACH transactions (eg, Standard and Same Day ACH), or via ACHNow.
For now, this endpoint can be used to move funds between Sila Wallets, Virtual Accounts, and linked bank accounts, but will be opened up to accepting many different payment instrument options as the source or the destination. The CKO integration is supported.
IMPORTANT - RfP (Request for Payment) Notifications
Please be aware that RfP notifications come from end users' respective banking institutions and are NOT within Sila's environment or control.
We recommend advising your end users to verify their notifications are set up correctly with their respective banking institution.
If your end users are having trouble with receiving notifications, please reach out to the end user's banking institution.
Using this endpoint
- You MUST be approved by Sila before using ACHNow or instant rail functionality.
- You MUST use this endpoint to use ACHNow, RTP, and FedNow functionality. /issue_sila and /redeem_sila endpoints do not support these features.
- This endpoint is only accessible through HTTP requests.
- We are NOT updating SDKs to support this endpoint.
Sending an ACH transaction via Instant Settlement
When an ACH payment is sent via Instant Settlement, the Sila-side location is credited or debited immediately. Because we are not yet able to control the routes themselves, the transaction may not land in the outside account until later.
If you would like the payment to land as soon as possible to the outside account, we recommend making use of the Same Day ACH method.
Request
RTP and FedNow
Currently:
- RTP is available for both push and pull transactions (Sila wallet <> bank account)
- FedNow is only available for push transactions (Sila wallet > bank account)
Requirements
- Source of funds and destination for those funds are both required for transacting.
- Either the source or the destination must be a Sila-associated or Sila-linked account or wallet.
- Use
route
for specific route options like standard and Same Day ACH, instant settlement, card, and RTP.- Your app must be enabled for instant settlement, the Checkout integration, or RTP to make use of those features.
- NOTE: Because the default behavior is
fastest
, it is STRONGLY recommended that if you wish to use Standard ACH that you specify this in theroute
field.
- Use
route_selection_behavior
for ACHNow and behavior (fastest or cheapest) selections. - If neither a
route
orroute_selection_behavior
are provided, the request will default toroute_selection_behavior
=fastest
. Please see How Payment Route is Determined chart below for more. route
androute_selection_behavior
are mutually exclusive. Provide one or the other, NOT both, which will result in a 400 error.- The difference between
route_selection_behavior = ACHNow
androute_selection_behavior = fastest
: ACHNow will trigger a cascading behavior - trying the fastest route, then next fastest, and so on.fastest
will try the fastest route available, but will not cascade down to try the next fastest if that fails.
Transaction Amount in Decimal Units
Please be aware that the amount value for this endpoint is in decimal units, just like /issue and /redeem.
EX:
Transaction for $10 USD
/transact amount value = 1000
ACHNow Amount in Sandbox
If testing ACHNow in Sandbox, the amount MUST be $10.00 or less, or you will receive a 400 error.
Authorization / Authentication
Apps using Access Token Authorization
Use a valid access token in an Authorization: Bearer request header.
See Authenticating with an Access Token for more details.
NOTE: Sila will support existing customers with ECDSA apps. New customers implementing ACHNow must use the JWT access token.
POST /0.2/transact HTTP/1.1
sandbox.silamoney.com
Content-Type: application/json
Authorization: Bearer [GENERATED JWT TOKEN HERE]
{
"header": {
"created": 1234567890, //required
"app_handle": "handle.silamoney.eth", // required
"user_handle":"user.silamoney.eth", // required
"version": "0.2", // optional
"reference": "<your unique id>" // optional
},
"amount": 1000, //required
"source_id": "<ID to uniquely identify where funds are originating from>", // required
"destination_id": "<ID to uniquely identify the destination of funds>", // required
"route": "<how you want payment sent>", // required for card transactions
"route_selection_behavior": "fastest or cheapest", // optional, ACHNow only
"description": "transaction descriptor", // optional
"transaction_idempotency_id": "<UUID to uniquely identify a transaction for idempotency>", // optional
"customer_reference": "customer chosen reference string", // optional
"ach_attributes": { // for ACH transactions, optional
"ach_descriptor": "ach descriptor in the NACHA file", // optional
"sec_code": "3-character SEC code" // optional
}
}
***
HTTP/1.1 200 OK
{
"reference": "<your unique id>",
"message": "Transaction submitted to the processing queue.",
"success": true,
"status": "SUCCESS",
"response_time_ms": "171",
"transaction_id": "UUID of the submitted transaction",
"route_selected": "payement method used to move funds",
"description": "optional description for the transaction"
}
Request Attributes
Key | Type | Description |
---|---|---|
header | JSON object | Required. Required keys: created - Unix epoch timestamp in seconds. Must not be future-dated and must not be dated more than 5 minutes in the past.app_handle - your app handleuser_handle - the user_handle for the entity sending funds (source)Optional keys: reference : Can be any value for your own reference. If not provided, one will be assigned.version : Cannot be null if key is present. Valid values: 0.2, v0.2, V0.2 |
amount | integer | Required. Amount, in decimal units (ie, $10.00 in USD is 1000). Amount must be $10 USD or below for test transactions in Sandbox environment. |
source_id | string | Required. Payment instrument id where the funds are originate from. |
destination_id | string | Required. Payment instrument id where the funds are sent to. |
route | string | Required for card transactions. Optional otherwise. Strongly recommended if you wish to use Standard ACH. What route you want the payment sent by. Valid options: ach (standard ACH)same_day_ach instant_settlement card (for CKO integration)rtp fednow (only for push, wallet > bank account)internal (for wallet > wallet transfers)If not supplied, default will be route_selection_behavior = fastest . |
route_selection_behavior | string | Optional. Based on attribute provided, route will be determined for the customer on the backend. fastest cheapest ACHNow (case sensitive)real_time_only - checks RTP and FedNow, but doesn't cascade furtherIf not supplied, will default to fastest . |
description | string | Optional. |
transaction_idempotency_id | string | Optional. UUID to uniquely identify the transaction to make it idempotent. If transaction is submitted multiple times with the same transaction_idempotency_id, it will only be processed once. |
reference | string | Optional. Unique ID, used to group a series of transactions together under one ID |
ACH-Specific Attributes
Key | Type | Description |
---|---|---|
ach_descriptor | string | Required. Max 10 characters. Description for receiver, will be passed along in the NACHA file |
sec_code | string | Optional. 3 character limit. Specify the SEC code you wish to use. |
Responses
Status Code | Success Attribute | Description | error_code |
---|---|---|---|
200 | true | ||
403 | false | The fields provided would result in a transaction that cannot be processed. For example, a standard ACH transaction that would arrive on the same day. | TX_NOT_POSSIBLE |
400 | false | The fields provided are invalid. | |
400 | false | The mock error header provided does not apply to the transaction being submitted | |
403 | false | App has not been enabled for ACHNow use. |
How is the Payment Route Determined?
Below is a table that can be used to help determine which payment route will be used in which case.
The "->" represents a fall back, if the method to the left of the arrow is not configured then the method to the right of the arrow will be used.
Source Type | Destination Type | Route Selection Behavior | Route Selection | Resulting Transaction Itinerary |
---|---|---|---|---|
Sila Wallet | Sila Wallet | fastest | ledger to leger | |
Sila Wallet | Sila Wallet | cheapest | ledger to ledger | |
Sila Wallet | Sila Wallet | internal | ledger to ledger | |
Bank Account | Sila Wallet | fastest | RTP if possible → instant_settlement → Same Day ACH | |
Bank Account | Sila Wallet | cheapest | Standard ACH | |
Bank Account | Sila Wallet | instant_settlement | instant settlement | |
Bank Account | Sila Wallet | rtp | RTP | |
Bank Account | Sila Wallet | same_day_ach | Same Day ACH | |
Bank Account | Sila Wallet | ach | Standard ACH | |
Sila Wallet | Bank Account | fastest | RTP if possible → Same Day ACH | |
Sila Wallet | Bank Account | cheapest | Standard ACH | |
Sila Wallet | Bank Account | rtp | RTP | |
Sila Wallet | Bank Account | same_day_ach | Same Day ACH | |
Sila Wallet | Bank Account | ach | Standard ACH |
Payment routes in order of speed (fastest to slowest):
- Instant Settlement (instant)
- RTP (instant)
- Same Day ACH (1 day)
- Standard ACH (approx. 3 days)
Payment routes in order of cost (cheapest to most expensive):
- Standard ACH
- Same Day ACH
- RTP
- Instant Settlement
Please note that Instant Settlement is only valid for transactions from a bank account to a Sila Wallet.
Mocking Errors
You can set the Sila-Mock-Error
header in a request in order to mock an error in Sandbox. The error mocked will be based on the value of the header. Please see the table below for the which values mock which errors:
Sila-Mock-Error value | Description |
---|---|
aws-sqs-timeout | Mocks an AWS timeout, as if AWS sqs was not functioning correctly. |
ach-return-r<return code digits> | Mocks a standard ach return with the specified return code. Example: ach_return_r05 mocks an R05 return |
ach-late-return-r<return code digits> | Mocks a late dated ach return with the specified return code. Example: ach_late_return_r16 mocks an R16 return |
insufficent-funds | Mocks a insufficient funds error. |
delay-<time amt><time units> | Mocks a delay in processing the transaction due to a service outage. Exmaple: delay-10m mocks a 10 minute processing delay. delay-10d mocks a 10 day delay |
rtp-failure | Mocks a failure during an RTP transaction |
rtp-bank-not-supported | Mocks the associated bank being unable to perform RTP transactions |
reserve-wallet-warning | Causes the response to return the reserve wallet low warning response |
reserve-wallet-nsf | Mocks the reserve wallet not having enough funds for the transaction |
limit-exceeded | Mocks the fund limit for the endpoint being exceeded |
rtp-bank-debit-unsupported | Mocks the associated bank being unable to accept RTP debits (RTP RfPs / RTP Pulls) |
rtp-bank-credit-unsupported | Mocks the associated bank being unable to accept RTP credits (RTP pushes) |
Note that if the header does not apply to the transaction information provided, a 400 error will be returned.
Updated 5 days ago