Received Credits
ReceivedCredits represent funds sent to a FinancialAccount (for example, via ACH or wire). These money movements are not initiated from the FinancialAccount.
Was this section helpful? Yes No
Retrieve a ReceivedCredit
GET / v1 / treasury / received_credits /:id
List all ReceivedCredits
GET / v1 / treasury / received_credits
Test mode: Create a ReceivedCredit
POST / v1 / test_helpers / treasury / received_credits
The ReceivedCredit object
Attributes
- id string Unique identifier for the object.
- object string, value is "treasury.received_credit" String representing the object’s type. Objects of the same type share the same value.
- amount integer Amount (in cents) transferred.
- created timestamp Time at which the object was created. Measured in seconds since the Unix epoch.
- currency enum Three-letter ISO currency code, in lowercase. Must be a supported currency.
- description string An arbitrary string attached to the object. Often useful for displaying to users.
- failure _ code nullable enum Reason for the failure. A ReceivedCredit might fail because the receiving FinancialAccount is closed or frozen. Possible enum values
account_closedFunds can’t be sent to a closed FinancialAccount.account_frozenFunds can’t be sent to a frozen FinancialAccount.international_transactionInternational transactions can’t be sent to FinancialAccount.otherFunds can’t be sent to FinancialAccount for other reasons. - financial _ account nullable string The FinancialAccount that received the funds.
- hosted _ regulatory _ receipt _ url nullable string A hosted transaction receipt URL that is provided when money movement is considered regulated under Stripe’s money transmission licenses.
- initiating _ payment _ method _ details object Details about the PaymentMethod used to send a ReceivedCredit.
- linked _ flows object Other flows linked to a ReceivedCredit.
- livemode boolean If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - network enum The rails used to send the funds. Possible enum values
achcardstripeus_domestic_wire - reversal _ details nullable object Details describing when a ReceivedCredit may be reversed.
- status enum Status of the ReceivedCredit. ReceivedCredits are created either
succeeded(approved) orfailed(declined). If a ReceivedCredit is declined, the failure reason can be found in thefailure_codefield. Possible enum valuesfailedThe ReceivedCredit was declined, and no Transaction was created.succeededThe ReceivedCredit was approved. - transaction nullable string Expandable The Transaction associated with this object.
The ReceivedCredit object
Retrieve a ReceivedCredit
GET / v1 / treasury / received_credits /:id
Retrieves the details of an existing ReceivedCredit by passing the unique ReceivedCredit ID from the ReceivedCredit list.
Parameters
No parameters.
Returns
Returns a ReceivedCredit object.
Response
