PSP Settlement DepositsBeta
A PSP Settlement Deposit is a deposit made by a PSP into a holding account. It is associated with a PSP Settlement Intent.
Airwallex provides the Platform with a holding account, set up by a Airwallex Solutions Engineer. Platforms pass payment details to a pay-in PSP for funds acquired by PSPs to be deposited to Airwallex.
PSP Settlement Deposits form part of the PSP-agnostic payout solution .
GET /api/v1/psp_settlement_deposits
Get a list of PSP settlement deposits
GET /api/v1/psp_settlement_deposits
Get a list of PSP settlement deposits sent to your account. The deposits returned are sorted by deposit time in descending order.
Unique identifier of the deposit
The start date of deposited_at in ISO8601 format (inclusive)
Global account unique identifier to which the funds were sent
Holding account unique identifier into which the funds were deposited
Page number, starts from 0
Number of results per page. Default value is 100, minimum 10, maximum 100
PSP Settlement Deposit status. One of NEW, MATCHED, or ACTION_REQUIRED
The end date of deposited_at in ISO8601 format (inclusive)
Amount of the PSP settlement deposit
Currency (3-letter ISO-4217 code) of the PSP settlement deposit
The unique identifier of the deposit associated with this PSP settlement deposit
The time this deposit was created
The unique identifier of the global account to which the funds were sent
Holding account unique identifier into which the funds were deposited
The Payer provided along with the deposit
The name of the payer
The unique identifier of the PSP settlement intent, if any, associated with this PSP settlement deposit
Reference provided along with the deposit, which will be used to associate this PSP settlement deposit with PSP settlement splits
Further actions required in order to proceed with this PSP settlement deposit
The amount of associated PSP settlement deposits does not match the amount of the PSP settlement intent.
Information about this requirement
Awaiting a PSP settlement intent.
Information about this requirement
PSP settlement deposit reference corresponds to multiple PSP settlement intents. Please specify in the PSP settlement intents which PSP settlement deposits correspond to them.
Status of the PSP settlement deposit. One of: NEW, ACTION_REQUIRED, MATCHED, SETTLED
| Error status | Description |
|---|---|
| 400 | Possible errors: |
| 401 | Possible errors: |
| 429 | Too many requests |
| 500 | Service unavailable |
$curl --request GET \> --url 'https://api-demo.airwallex.com/api/v1/psp_settlement_deposits' \> --header 'Authorization: Bearer {{ACCESS_TOKEN}}' \> --header 'Content-Type: application/json'
1{2 "amount": "10000",3 "currency": "AUD",4 "deposit_id": "90b98dc6-63a0-403f-816b-ac5305b42a11",5 "deposited_at": "2022-09-22T16:08:02+1100",6 "global_account_id": "3f457fe5-daf4-9962-92ec-10332301d9p3",7 "holding_account_id": "acct_wst1AJZWbOx2Ijf-PDS123w",8 "payer": {9 "name": "<string>"10 },11 "psp_settlement_intent_id": "psi_0iBwL9IuOZaKCz8Kn-01ew",12 "reference": "PMT1936398",13 "requirements": {14 "matching_psp_settlement_required": {15 "message": "<string>"16 },17 "psp_settlement_intent_required": {18 "message": "<string>"19 },20 "reference_disambiguation_required": {21 "message": "<string>"22 }23 },24 "status": "ACTION_REQUIRED"25}