---
title: "getPayoutSchedule"
description: "Get payout schedule information at merchant level."
url: "https://docs.adyen.com/account-management-api/manage-bank-accounts-and-payouts/getpayoutschedule"
source_url: "https://docs.adyen.com/account-management-api/manage-bank-accounts-and-payouts/getpayoutschedule.md"
canonical: "https://docs.adyen.com/account-management-api/manage-bank-accounts-and-payouts/getpayoutschedule"
last_modified: "2026-05-24T12:54:32+02:00"
language: "en"
---
# getPayoutSchedule
Get payout schedule information at merchant level.
[View source](/account-management-api/manage-bank-accounts-and-payouts/getpayoutschedule.md)
## Request parameters
To get the payout schedule information for a merchant, make a POST `/getPayoutSchedule` specifying:
| Name | Type | Required | Description |
| -------------- | ------ | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| `accountKey` | String |  | DEPRECATED Not used anymore. Do not use. |
| `merchantCode` | String |  | A merchant code string holds a value to identify a merchant.Format:- Either: `MerchantAccount.Merchant_Code`
- Or: `Merchant_Code` |
## Response parameters
If there are no errors in the request, the call returns a list of configured, unconfirmed deleted, and unconfirmed updated bank accounts belonging to the specified merchant code.
| Name | Type | Returned by default | Description | |
| -------------------- | ------ | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | - |
| `payoutSchedule` | String |  | Free-text description of the payout schedule. | |
| `payoutScheduleDays` | int |  | Number of payout days per week. Defines how often you want to plan a payout on a weekly basis. For example, once a week, twice a week, and so on.Allowed values: *1, 2, 3, 5*.- *1*: on Tuesday at 00:00 CET
- *2*: on Tuesday, Friday at 00:00 CET
- *3*: on Tuesday, Thursday, Friday at 00:00 CET
- *5*: from Monday to Friday at 00:00 CET | |
| `pspReference` | String |  | A reference to uniquely identify the request. | |
| `warnings` | String |  | List containing one or more warning messages. Returned when the request is not correctly processed. | |
| `errors` | String |  | List containing one or more error messages. Returned when the request fails. | |
## Examples
### Request
#### JSON
```json
{
"accountKey":"TestMerchant"
}
```
#### Soap
```xml
TestMerchant
```
### Response
#### JSON
```json
{
"pspReference":"9914526950630294",
"payoutSchedule":"1 time per week (Tuesday) at 0:00 CET",
"payoutScheduleDays":1
}
```
#### Soap
```xml
9914140758760046
2 times per week (Tuesday, Friday) at 0:00 CET
2
```