diff --git a/json/ManagementNotificationService-v1.json b/json/ManagementNotificationService-v1.json index 384b9176..d5a85e31 100644 --- a/json/ManagementNotificationService-v1.json +++ b/json/ManagementNotificationService-v1.json @@ -22,7 +22,6 @@ "name" : "Terminal management" } ], - "x-staticResponse" : "response.json", "webhooks" : { "merchant.created" : { "post" : { @@ -162,6 +161,46 @@ } } }, + "terminalBoarding.triggered" : { + "post" : { + "tags" : [ + "Terminal management" + ], + "summary" : "Result of terminal boarding", + "description" : "The boarding of a payment terminal succeeded or failed.", + "x-addedInVersion" : "1", + "operationId" : "post-terminalBoarding.triggered", + "x-sortIndex" : 2, + "x-methodName" : "resultOfTerminalBoarding", + "security" : [ + { + "BasicAuth" : [ + ] + } + ], + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/TerminalBoardingNotificationRequest" + } + } + } + }, + "responses" : { + "200" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/TerminalBoardingNotificationResponse" + } + } + }, + "description" : "OK - the request has succeeded." + } + } + } + }, "terminalSettings.modified" : { "post" : { "tags" : [ @@ -579,6 +618,74 @@ }, "type" : "object" }, + "TerminalBoardingData" : { + "additionalProperties" : false, + "properties" : { + "companyId" : { + "description" : "The unique identifier of the company account.", + "type" : "string" + }, + "merchantId" : { + "description" : "The unique identifier of the merchant account.", + "type" : "string" + }, + "storeId" : { + "description" : "The unique identifier of the store.", + "type" : "string" + }, + "uniqueTerminalId" : { + "description" : "The unique identifier of the terminal.", + "type" : "string" + } + }, + "required" : [ + "uniqueTerminalId", + "companyId" + ], + "type" : "object" + }, + "TerminalBoardingNotificationRequest" : { + "additionalProperties" : false, + "properties" : { + "createdAt" : { + "description" : "Timestamp for when the webhook was created.", + "format" : "date-time", + "type" : "string" + }, + "data" : { + "description" : "Contains event details.", + "$ref" : "#/components/schemas/TerminalBoardingData" + }, + "environment" : { + "description" : "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.", + "type" : "string" + }, + "type" : { + "description" : "Type of notification.", + "enum" : [ + "terminalBoarding.triggered" + ], + "type" : "string" + } + }, + "required" : [ + "environment", + "createdAt", + "data", + "type" + ], + "type" : "object" + }, + "TerminalBoardingNotificationResponse" : { + "additionalProperties" : false, + "properties" : { + "notificationResponse" : { + "description" : "Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).", + "type" : "string" + } + }, + "type" : "object" + }, "TerminalSettingsData" : { "additionalProperties" : false, "properties" : { diff --git a/json/ManagementNotificationService-v3.json b/json/ManagementNotificationService-v3.json index b2112d8d..caf2c280 100644 --- a/json/ManagementNotificationService-v3.json +++ b/json/ManagementNotificationService-v3.json @@ -22,7 +22,6 @@ "name" : "Terminal management" } ], - "x-staticResponse" : "response.json", "webhooks" : { "merchant.created" : { "post" : { @@ -252,6 +251,46 @@ } } }, + "terminalBoarding.triggered" : { + "post" : { + "tags" : [ + "Terminal management" + ], + "summary" : "Result of terminal boarding", + "description" : "The boarding of a payment terminal succeeded or failed.", + "x-addedInVersion" : "1", + "operationId" : "post-terminalBoarding.triggered", + "x-sortIndex" : 2, + "x-methodName" : "resultOfTerminalBoarding", + "security" : [ + { + "BasicAuth" : [ + ] + } + ], + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/TerminalBoardingNotificationRequest" + } + } + } + }, + "responses" : { + "200" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/TerminalBoardingNotificationResponse" + } + } + }, + "description" : "OK - the request has succeeded." + } + } + } + }, "terminalSettings.modified" : { "post" : { "tags" : [ @@ -737,6 +776,74 @@ }, "type" : "object" }, + "TerminalBoardingData" : { + "additionalProperties" : false, + "properties" : { + "companyId" : { + "description" : "The unique identifier of the company account.", + "type" : "string" + }, + "merchantId" : { + "description" : "The unique identifier of the merchant account.", + "type" : "string" + }, + "storeId" : { + "description" : "The unique identifier of the store.", + "type" : "string" + }, + "uniqueTerminalId" : { + "description" : "The unique identifier of the terminal.", + "type" : "string" + } + }, + "required" : [ + "uniqueTerminalId", + "companyId" + ], + "type" : "object" + }, + "TerminalBoardingNotificationRequest" : { + "additionalProperties" : false, + "properties" : { + "createdAt" : { + "description" : "Timestamp for when the webhook was created.", + "format" : "date-time", + "type" : "string" + }, + "data" : { + "description" : "Contains event details.", + "$ref" : "#/components/schemas/TerminalBoardingData" + }, + "environment" : { + "description" : "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.", + "type" : "string" + }, + "type" : { + "description" : "Type of notification.", + "enum" : [ + "terminalBoarding.triggered" + ], + "type" : "string" + } + }, + "required" : [ + "environment", + "createdAt", + "data", + "type" + ], + "type" : "object" + }, + "TerminalBoardingNotificationResponse" : { + "additionalProperties" : false, + "properties" : { + "notificationResponse" : { + "description" : "Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).", + "type" : "string" + } + }, + "type" : "object" + }, "TerminalSettingsData" : { "additionalProperties" : false, "properties" : { diff --git a/json/ManagementService-v1.json b/json/ManagementService-v1.json index 162dfb3d..e9102c9e 100644 --- a/json/ManagementService-v1.json +++ b/json/ManagementService-v1.json @@ -16232,7 +16232,7 @@ "type" : "string" }, "type" : { - "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", + "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n- **terminal-settings**\n- **terminal-boarding**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", "type" : "string" }, "url" : { @@ -16469,7 +16469,7 @@ "type" : "string" }, "type" : { - "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", + "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n- **terminal-settings**\n- **terminal-boarding**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", "type" : "string" }, "url" : { @@ -17969,6 +17969,10 @@ "description" : "Swish details.", "$ref" : "#/components/schemas/SwishInfo" }, + "ticket" : { + "description" : "Edenred details.", + "$ref" : "#/components/schemas/TicketInfo" + }, "twint" : { "description" : "Twint details.", "$ref" : "#/components/schemas/TwintInfo" @@ -18075,9 +18079,12 @@ "multibanco", "onlineBanking_PL", "paybybank", + "paynow", + "paynow_pos", "paypal", "payshop", "swish", + "ticket", "trustly", "twint", "twint_pos", @@ -18238,6 +18245,10 @@ "description" : "Swish details.", "$ref" : "#/components/schemas/SwishInfo" }, + "ticket" : { + "description" : "Edenred details.", + "$ref" : "#/components/schemas/TicketInfo" + }, "twint" : { "description" : "Twint details.", "$ref" : "#/components/schemas/TwintInfo" @@ -18283,9 +18294,12 @@ "multibanco", "onlineBanking_PL", "paybybank", + "paynow", + "paynow_pos", "paypal", "payshop", "swish", + "ticket", "trustly", "twint", "twint_pos", @@ -19948,6 +19962,16 @@ }, "type" : "object" }, + "TicketInfo" : { + "additionalProperties" : false, + "properties" : { + "requestorId" : { + "description" : "Ticket requestorId", + "type" : "string" + } + }, + "type" : "object" + }, "Timeouts" : { "additionalProperties" : false, "properties" : { @@ -20942,7 +20966,7 @@ "type" : "string" }, "type" : { - "description" : "The type of webhook. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **terminal-api-notification**\n- **terminal-settings**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", + "description" : "The type of webhook. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **terminal-api-notification**\n- **terminal-settings**\n- **terminal-boarding**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", "type" : "string" }, "url" : { diff --git a/json/ManagementService-v3.json b/json/ManagementService-v3.json index 55de7b0e..b7a9679c 100644 --- a/json/ManagementService-v3.json +++ b/json/ManagementService-v3.json @@ -16658,7 +16658,7 @@ "type" : "boolean" }, "type" : { - "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", + "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n- **terminal-settings**\n- **terminal-boarding**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", "type" : "string" }, "url" : { @@ -16896,7 +16896,7 @@ "type" : "boolean" }, "type" : { - "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", + "description" : "The type of webhook that is being created. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **rreq-notification**\n- **terminal-settings**\n- **terminal-boarding**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", "type" : "string" }, "url" : { @@ -18393,6 +18393,10 @@ "description" : "Swish details.", "$ref" : "#/components/schemas/SwishInfo" }, + "ticket" : { + "description" : "Edenred details.", + "$ref" : "#/components/schemas/TicketInfo" + }, "twint" : { "description" : "Twint details.", "$ref" : "#/components/schemas/TwintInfo" @@ -18499,9 +18503,12 @@ "multibanco", "onlineBanking_PL", "paybybank", + "paynow", + "paynow_pos", "paypal", "payshop", "swish", + "ticket", "trustly", "twint", "twint_pos", @@ -18666,6 +18673,10 @@ "description" : "Swish details.", "$ref" : "#/components/schemas/SwishInfo" }, + "ticket" : { + "description" : "Edenred details.", + "$ref" : "#/components/schemas/TicketInfo" + }, "twint" : { "description" : "Twint details.", "$ref" : "#/components/schemas/TwintInfo" @@ -18711,9 +18722,12 @@ "multibanco", "onlineBanking_PL", "paybybank", + "paynow", + "paynow_pos", "paypal", "payshop", "swish", + "ticket", "trustly", "twint", "twint_pos", @@ -20479,6 +20493,16 @@ }, "type" : "object" }, + "TicketInfo" : { + "additionalProperties" : false, + "properties" : { + "requestorId" : { + "description" : "Ticket requestorId", + "type" : "string" + } + }, + "type" : "object" + }, "Timeouts" : { "additionalProperties" : false, "properties" : { @@ -21497,7 +21521,7 @@ "type" : "boolean" }, "type" : { - "description" : "The type of webhook. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **terminal-api-notification**\n- **terminal-settings**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", + "description" : "The type of webhook. Possible values are:\n\n- **standard**\n- **account-settings-notification**\n- **banktransfer-notification**\n- **boletobancario-notification**\n- **directdebit-notification**\n- **ach-notification-of-change-notification**\n- **pending-notification**\n- **ideal-notification**\n- **ideal-pending-notification**\n- **report-notification**\n- **terminal-api-notification**\n- **terminal-settings**\n- **terminal-boarding**\n\nFind out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).", "type" : "string" }, "url" : { diff --git a/yaml/ManagementNotificationService-v1.yaml b/yaml/ManagementNotificationService-v1.yaml index 827031e5..fac292eb 100644 --- a/yaml/ManagementNotificationService-v1.yaml +++ b/yaml/ManagementNotificationService-v1.yaml @@ -22,7 +22,6 @@ tags: - name: Merchant account - name: Payment method - name: Terminal management -x-staticResponse: response.json webhooks: merchant.created: post: @@ -111,6 +110,30 @@ webhooks: schema: $ref: '#/components/schemas/PaymentMethodNotificationResponse' description: OK - the request has succeeded. + terminalBoarding.triggered: + post: + tags: + - Terminal management + summary: Result of terminal boarding + description: The boarding of a payment terminal succeeded or failed. + x-addedInVersion: '1' + operationId: post-terminalBoarding.triggered + x-sortIndex: 2 + x-methodName: resultOfTerminalBoarding + security: + - BasicAuth: [] + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/TerminalBoardingNotificationRequest' + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/TerminalBoardingNotificationResponse' + description: OK - the request has succeeded. terminalSettings.modified: post: tags: @@ -527,6 +550,59 @@ components: description: A description of how you can resolve the verification error. type: string type: object + TerminalBoardingData: + additionalProperties: false + properties: + companyId: + description: The unique identifier of the company account. + type: string + merchantId: + description: The unique identifier of the merchant account. + type: string + storeId: + description: The unique identifier of the store. + type: string + uniqueTerminalId: + description: The unique identifier of the terminal. + type: string + required: + - uniqueTerminalId + - companyId + type: object + TerminalBoardingNotificationRequest: + additionalProperties: false + properties: + createdAt: + description: Timestamp for when the webhook was created. + format: date-time + type: string + data: + description: Contains event details. + $ref: '#/components/schemas/TerminalBoardingData' + environment: + description: 'The environment from which the webhook originated. + + + Possible values: **test**, **live**.' + type: string + type: + description: Type of notification. + enum: + - terminalBoarding.triggered + type: string + required: + - environment + - createdAt + - data + - type + type: object + TerminalBoardingNotificationResponse: + additionalProperties: false + properties: + notificationResponse: + description: Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications). + type: string + type: object TerminalSettingsData: additionalProperties: false properties: diff --git a/yaml/ManagementNotificationService-v3.yaml b/yaml/ManagementNotificationService-v3.yaml index 209c7694..f65a2b9f 100644 --- a/yaml/ManagementNotificationService-v3.yaml +++ b/yaml/ManagementNotificationService-v3.yaml @@ -22,7 +22,6 @@ tags: - name: Merchant account - name: Payment method - name: Terminal management -x-staticResponse: response.json webhooks: merchant.created: post: @@ -168,6 +167,30 @@ webhooks: schema: $ref: '#/components/schemas/PaymentMethodNotificationResponse' description: OK - the request has succeeded. + terminalBoarding.triggered: + post: + tags: + - Terminal management + summary: Result of terminal boarding + description: The boarding of a payment terminal succeeded or failed. + x-addedInVersion: '1' + operationId: post-terminalBoarding.triggered + x-sortIndex: 2 + x-methodName: resultOfTerminalBoarding + security: + - BasicAuth: [] + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/TerminalBoardingNotificationRequest' + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/TerminalBoardingNotificationResponse' + description: OK - the request has succeeded. terminalSettings.modified: post: tags: @@ -652,6 +675,59 @@ components: description: A description of how you can resolve the verification error. type: string type: object + TerminalBoardingData: + additionalProperties: false + properties: + companyId: + description: The unique identifier of the company account. + type: string + merchantId: + description: The unique identifier of the merchant account. + type: string + storeId: + description: The unique identifier of the store. + type: string + uniqueTerminalId: + description: The unique identifier of the terminal. + type: string + required: + - uniqueTerminalId + - companyId + type: object + TerminalBoardingNotificationRequest: + additionalProperties: false + properties: + createdAt: + description: Timestamp for when the webhook was created. + format: date-time + type: string + data: + description: Contains event details. + $ref: '#/components/schemas/TerminalBoardingData' + environment: + description: 'The environment from which the webhook originated. + + + Possible values: **test**, **live**.' + type: string + type: + description: Type of notification. + enum: + - terminalBoarding.triggered + type: string + required: + - environment + - createdAt + - data + - type + type: object + TerminalBoardingNotificationResponse: + additionalProperties: false + properties: + notificationResponse: + description: Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications). + type: string + type: object TerminalSettingsData: additionalProperties: false properties: diff --git a/yaml/ManagementService-v1.yaml b/yaml/ManagementService-v1.yaml index eecdf6fd..8ffc2a25 100644 --- a/yaml/ManagementService-v1.yaml +++ b/yaml/ManagementService-v1.yaml @@ -10944,6 +10944,10 @@ components: - **rreq-notification** + - **terminal-settings** + + - **terminal-boarding** + Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).' @@ -11209,6 +11213,10 @@ components: - **rreq-notification** + - **terminal-settings** + + - **terminal-boarding** + Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).' @@ -12484,6 +12492,9 @@ components: swish: description: Swish details. $ref: '#/components/schemas/SwishInfo' + ticket: + description: Edenred details. + $ref: '#/components/schemas/TicketInfo' twint: description: Twint details. $ref: '#/components/schemas/TwintInfo' @@ -12582,9 +12593,12 @@ components: - multibanco - onlineBanking_PL - paybybank + - paynow + - paynow_pos - paypal - payshop - swish + - ticket - trustly - twint - twint_pos @@ -12716,6 +12730,9 @@ components: swish: description: Swish details. $ref: '#/components/schemas/SwishInfo' + ticket: + description: Edenred details. + $ref: '#/components/schemas/TicketInfo' twint: description: Twint details. $ref: '#/components/schemas/TwintInfo' @@ -12760,9 +12777,12 @@ components: - multibanco - onlineBanking_PL - paybybank + - paynow + - paynow_pos - paypal - payshop - swish + - ticket - trustly - twint - twint_pos @@ -14382,6 +14402,13 @@ components: $ref: '#/components/schemas/TestOutput' type: array type: object + TicketInfo: + additionalProperties: false + properties: + requestorId: + description: Ticket requestorId + type: string + type: object Timeouts: additionalProperties: false properties: @@ -15475,6 +15502,8 @@ components: - **terminal-settings** + - **terminal-boarding** + Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).' diff --git a/yaml/ManagementService-v3.yaml b/yaml/ManagementService-v3.yaml index de82fd03..87b0fdbc 100644 --- a/yaml/ManagementService-v3.yaml +++ b/yaml/ManagementService-v3.yaml @@ -11222,6 +11222,10 @@ components: - **rreq-notification** + - **terminal-settings** + + - **terminal-boarding** + Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).' @@ -11488,6 +11492,10 @@ components: - **rreq-notification** + - **terminal-settings** + + - **terminal-boarding** + Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).' @@ -12762,6 +12770,9 @@ components: swish: description: Swish details. $ref: '#/components/schemas/SwishInfo' + ticket: + description: Edenred details. + $ref: '#/components/schemas/TicketInfo' twint: description: Twint details. $ref: '#/components/schemas/TwintInfo' @@ -12860,9 +12871,12 @@ components: - multibanco - onlineBanking_PL - paybybank + - paynow + - paynow_pos - paypal - payshop - swish + - ticket - trustly - twint - twint_pos @@ -12997,6 +13011,9 @@ components: swish: description: Swish details. $ref: '#/components/schemas/SwishInfo' + ticket: + description: Edenred details. + $ref: '#/components/schemas/TicketInfo' twint: description: Twint details. $ref: '#/components/schemas/TwintInfo' @@ -13041,9 +13058,12 @@ components: - multibanco - onlineBanking_PL - paybybank + - paynow + - paynow_pos - paypal - payshop - swish + - ticket - trustly - twint - twint_pos @@ -14809,6 +14829,13 @@ components: $ref: '#/components/schemas/TestOutput' type: array type: object + TicketInfo: + additionalProperties: false + properties: + requestorId: + description: Ticket requestorId + type: string + type: object Timeouts: additionalProperties: false properties: @@ -15937,6 +15964,8 @@ components: - **terminal-settings** + - **terminal-boarding** + Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).'