Adyen · Schema

PayoutScheduleResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
nextScheduledPayout string The date of the next scheduled payout.
schedule string The payout schedule of the account. Permitted values: `DEFAULT`, `DAILY`, `DAILY_US`, `DAILY_EU`, `DAILY_AU`, `DAILY_SG`, `WEEKLY`, `WEEKLY_ON_TUE_FRI_MIDNIGHT`, `BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHT`
View JSON Schema on GitHub

JSON Schema

adyen-payoutscheduleresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayoutScheduleResponse",
  "title": "PayoutScheduleResponse",
  "properties": {
    "nextScheduledPayout": {
      "description": "The date of the next scheduled payout.",
      "format": "date-time",
      "type": "string"
    },
    "schedule": {
      "description": "The payout schedule of the account.\nPermitted values: `DEFAULT`, `DAILY`, `DAILY_US`, `DAILY_EU`, `DAILY_AU`, `DAILY_SG`, `WEEKLY`, `WEEKLY_ON_TUE_FRI_MIDNIGHT`, `BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHT`, `MONTHLY`, `HOLD`.",
      "enum": [
        "BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHT",
        "DAILY",
        "DAILY_AU",
        "DAILY_EU",
        "DAILY_SG",
        "DAILY_US",
        "HOLD",
        "MONTHLY",
        "WEEKLY",
        "WEEKLY_MON_TO_FRI_AU",
        "WEEKLY_MON_TO_FRI_EU",
        "WEEKLY_MON_TO_FRI_US",
        "WEEKLY_ON_TUE_FRI_MIDNIGHT",
        "WEEKLY_SUN_TO_THU_AU",
        "WEEKLY_SUN_TO_THU_US"
      ],
      "type": "string"
    }
  },
  "type": "object"
}