Adyen · JSON Structure

Management Payout Settings Request Structure

PayoutSettingsRequest schema from Adyen API

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

PayoutSettingsRequest is a JSON Structure definition published by Adyen, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

enabled enabledFromDate transferInstrumentId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-payout-settings-request-structure.json",
  "description": "PayoutSettingsRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "enabled": {
      "description": "Indicates if payouts to this bank account are enabled. Default: **true**.\n\nTo receive payouts into this bank account, both `enabled` and `allowed` must be **true**.",
      "type": "boolean"
    },
    "enabledFromDate": {
      "description": "The date when Adyen starts paying out to this bank account.\n\nFormat: [ISO 8601](https://www.w3.org/TR/NOTE-datetime), for example, **2019-11-23T12:25:28Z** or **2020-05-27T20:25:28+08:00**.\n\nIf not specified, the `enabled` field indicates if payouts are enabled for this bank account.\n\nIf a date is specified and:\n\n* `enabled`: **true**, payouts are enabled starting the specified date.\n* `enabled`: **false**, payouts are disabled until the specified date. On the specified date, `enabled` changes to **true** and this field is reset to **null**.",
      "type": "string"
    },
    "transferInstrumentId": {
      "description": "The unique identifier of the [transfer instrument](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/transferInstruments) that contains the details of the bank account.",
      "type": "string"
    }
  },
  "required": [
    "transferInstrumentId"
  ],
  "name": "PayoutSettingsRequest"
}