Skip to content
Download OpenAPI description
Languages
Servers
Mock Server

https://docs.solarisgroup.com/_mock/api-reference/onboarding/webhooks/

Operations
Webhooks

(Legacy) BUSINESS_DIRECT_DEBIT_PROFILE_BLOCK_SCHEDULEDDeprecatedWebhook

Request

A block was scheduled on a business' SEPA Direct Debit profile.

Bodyapplication/json
idstring

ID of the SEPA Direct Debit profile.

Example: "3cab044cedf84443841d489547177469"
statusstring

Indicates whether or not the SEPA Direct Debit profile has been accepted and whether or not it is active.

Enum"ACCEPTED""REJECTED""ACTIVE""BLOCKED""EXPIRED"
Example: "ACCEPTED"
status_reasonsstring

Associated reasoning behind REJECTED and BLOCKED statuses.

collection_limitobject or null(SolarisToolkit.Web.Money.Optional)

The available collection limit for the profile.

application/json
{ "id": "3cab044cedf84443841d489547177469", "status": "ACCEPTED", "status_reasons": "string", "collection_limit": { "value": 5000, "unit": "cents", "currency": "EUR" } }

Responses

Return 200 to indicate that you successfully received the webhook notification.

(Legacy) CARD_AUTHORIZATION_DECLINEDeprecatedWebhook

Request

A customer's card transaction was declined. Click here to see the full list of possible reasons.
Note: This webhook event is deprecated. Please use CARD_AUTHORIZATION_DECLINE_V2 instead.

Bodyapplication/json
reasonstring

The reason why the card authorization was declined.

Enum"3DS_FAILED""ACCOUNT_CLOSED""ACCOUNT_LIMIT_REACHED""AUTHENTICATION_REQUIRED""CARD_BLOCKED""CARD_INACTIVE""CARD_NOT_PRESENT_AMOUNT_LIMIT_REACHED_DAILY""CARD_NOT_PRESENT_AMOUNT_LIMIT_REACHED_MONTHLY""CARD_NOT_PRESENT_USE_LIMIT_REACHED_DAILY""CARD_NOT_PRESENT_USE_LIMIT_REACHED_MONTHLY"
Example: "AUTHENTICATION_REQUIRED"
card_transactionobject

Object containing information about the declined transaction.

application/json
{ "reason": "AUTHENTICATION_REQUIRED", "card_transaction": { "card_id": "f459e5de647e2909c94a7120c4d03557mcrd", "type": "PURCHASE", "status": "DECLINED", "attempted_at": "2019-04-01T12:23:42+00:00", "pos_entry_mode": "CHIP", "merchant": {}, "amount": {}, "original_amount": {} } }

Responses

Return 200 to indicate that you successfully received the webhook notification.