Event Objects
Check available events and their corresponding payloads
Available events
A webhook will receive multiple business events generated in our systems, and the receiving URL should be able to manage them appropriately. The following list provides examples of the payload you may receive for each event.
Accounts
account.created
This event notifies a new account has been created in your account. Its initial status will be created
until it's finally activated.
{
"id": "evt_6wQEYkfw2j8IQnUJsnLzBQ",
"api_version": "v1",
"type": "account.created",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "acc_fYpgX5Ytdxzexuf61lFmw",
"status": "created",
"created_at": "2022-01-01T11:00:00Z",
"name": "Devengo 1",
"identifiers": [
{
"type": "iban",
"iban": null
}
],
"currency": "EUR",
"balance": null,
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
},
"metadata": {},
"closed_at": null
}
}
}
account.delayed
Devengo will generate this event if any kind of incident in the underlying banking infrastructure prevents us from activating the recently created account. Eventually, the account will be activated, sending you an account.active
event. Until that moment, the account is not suitable for any operations.
{
"id": "evt_6wQEYkfw2j8IQnUJsnLzBQ",
"api_version": "v1",
"type": "account.delayed",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "acc_fYpgX5Ytdxzexuf61lFmw",
"status": "delayed",
"created_at": "2022-01-01T11:00:00Z",
"name": "Devengo account 1",
"identifiers": [
{
"type": "iban",
"iban": null
}
],
"currency": "EUR",
"balance": null,
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
},
"metadata": {},
"closed_at": null
}
}
}
account.activated
This event informs you when an account is fully available to be used.
{
"id": "evt_2DGyfRxWAsHBGDguztHeCQ",
"api_version": "v1",
"type": "account.activated",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "acc_fYpgX5Ytdxzexuf61lFmw",
"status": "active",
"created_at": "2022-01-01T11:00:00Z",
"name": "Devengo account 1",
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"currency": "EUR",
"balance": null,
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
},
"metadata": {},
"closed_at": null
}
}
}
account.deactivated
Devengo will generate this event if any kind of incident in the underlying banking infrastructure prevents us from closing your account. At this point, the account is not suitable for any operations in Devengo anymore, but the actual closing of the bank account is still in process. Eventually, the account will be closed, sending you the final account.closed
event.
{
"id": "evt_6wQEYkfw2j8IQnUJsnLzBQ",
"api_version": "v1",
"type": "account.deactivated",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "acc_fYpgX5Ytdxzexuf61lFmw",
"status": "deactivated",
"created_at": "2022-01-01T11:00:00Z",
"name": "Devengo account 1",
"identifiers": [
{
"type": "iban",
"iban": null
}
],
"currency": "EUR",
"balance": null,
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
},
"metadata": {},
"closed_at": null
}
}
}
account.closed
This event will be sent when an account is closed so you can't operate with it anymore.
{
"id": "evt_3M47rXi4HsWbAfv090wJ38",
"api_version": "v1",
"type": "account.closed",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "acc_fYpgX5Ytdxzexuf61lFmw",
"status": "closed",
"created_at": "2022-01-01T11:00:00Z",
"name": "Devengo 1",
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"currency": "EUR",
"balance": null,
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
},
"metadata": {},
"closed_at": "2022-01-05T12:00:00Z"
}
}
}
Incoming Payments
incoming_payment.created
Devengo will generate this event when we get notice of the arrival of funds in any of your accounts and create the corresponding incoming payment to represent them.
{
"id": "evt_3U1dmDy86c0MNsvncFDhMG",
"api_version": "v1",
"type": "incoming_payment.created",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyi_FvfNdwkak009PWsv0wDRd",
"account_id": "acc_5fthxGFigq1GnCRme5JV54",
"status": "created",
"description": "Transaction description",
"amount": {
"cents": 1200,
"currency": "EUR"
},
"company_reference": "123",
"internal": false,
"instant": true,
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES2914653111661392648933"
}
],
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
}
}
}
}
}
}
incoming_payment.confirmed
Devengo will generate this event when an incoming payment is confirmed after its creation. At this point, the funds are available in your account.
{
"id": "evt_3U1dmDy86c0MNsvncFDhMG",
"api_version": "v1",
"type": "incoming_payment.confirmed",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyi_FvfNdwkak009PWsv0wDRd",
"account_id": "acc_5fthxGFigq1GnCRme5JV54",
"status": "confirmed",
"description": "Transaction description",
"amount": {
"cents": 1200,
"currency": "EUR"
},
"company_reference": "123",
"internal": false,
"instant": true,
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES2914653111661392648933"
}
],
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
}
}
}
}
}
}
incoming_payment.rejected
Devengo will generate this event when an incoming payment is rejected.
{
"id": "evt_2vyoFqzz52tWd8BywpBHf9",
"api_version": "v1",
"type": "incoming_payment.rejected",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyi_FvfNdwkak009PWsv0wDRd",
"account_id": "acc_5fthxGFigq1GnCRme5JV54",
"status": "rejected",
"description": "Transaction description",
"amount": {
"cents": 1200,
"currency": "EUR"
},
"company_reference": "123",
"internal": false,
"instant": true,
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES2914653111661392648933"
}
],
"bank": {
"name": "ING",
"bic": "INGDESMMXXX"
}
}
}
}
}
}
Outgoing Payments
outgoing_payment.created
Devengo will generate this event when you create a payment before the banking processing starts.
{
"id": "evt_6y3steMFYNJS3rZvqzUNls",
"api_version": "v1",
"type": "outgoing_payment.created",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2jy3",
"status": "created",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.validating
Devengo will generate this event while the payment is being validated and before the banking processing starts.
{
"id": "evt_6y3steMFYNJS3rZvqztedU",
"api_version": "v1",
"type": "outgoing_payment.validating",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2te7",
"status": "validating",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.blocked
Devengo will generate this event when the payment needs to go through an extra verification process.
{
"id": "evt_57rzANBrRP4MAIINItfgU",
"api_version": "v1",
"type": "outgoing_payment.blocked",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2te7",
"status": "blocked",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.pending
Devengo will generate this event once the payment has been validated and before the banking processing starts.
{
"id": "evt_6y3steMFYNJS3rZvqztwpO",
"api_version": "v1",
"type": "outgoing_payment.pending",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2tpq1",
"status": "pending",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.delayed
Devengo will generate this event when the payment couldn't be processed due to a temporary outage of an external service. The payment will be set to "pending" when the service is up again.
{
"id": "evt_6y3steMFYNJS3rZvqztwpo9",
"api_version": "v1",
"type": "outgoing_payment.delayed",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2tre4",
"status": "delayed",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.denied
Devengo will generate this event when the payment couldn't be validated so it won't be processed.
{
"id": "evt_6y3steMFYNJS3rZvqztwpo9",
"api_version": "v1",
"type": "outgoing_payment.denied",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2tre4",
"status": "denied",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.processing
Devengo will generate this event when the banking processing starts.
{
"id": "evt_6y3steMFYNJS3rZvqztse2",
"api_version": "v1",
"type": "outgoing_payment.processing",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2tku7",
"status": "processing",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.retrying
Devengo will generate this event when the banking process has failed and is being retried.
{
"id": "evt_4p1sAxwTLJmWJnLxRa5EXv",
"api_version": "v1",
"type": "outgoing_payment.retrying",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2tku7",
"status": "retrying",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.confirmed
This event informs you the payment has been successfully confirmed.
{
"id": "evt_palpNUUmYPjRNnaUynqwz",
"api_version": "v1",
"type": "outgoing_payment.confirmed",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2jy3",
"status": "confirmed",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": null,
"links": {
"receipt": "http://devengo.com/v1/payments/pyo_2togcJuFHW1Vc0T8Cb2jy3/receipt/download"
},
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.reversed
This event informs you the payment has been reversed. Only if the payment had been previously confirmed.
{
"id": "evt_palpNUUmYPjRNnaUynqped",
"api_version": "v1",
"type": "payment.reversed",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2j5ts",
"status": "reversed",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-REGULAR"
},
"error": {
"code": "ERR-0002",
"type": "closed_account",
"reason": "AC04"
},
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
outgoing_payment.rejected
This event informs you the payment has been rejected.
{
"id": "evt_palpNUUmYPjRNnaUynqwz",
"api_version": "v1",
"type": "outgoing_payment.rejected",
"created_at": "2022-01-01T12:00:00Z",
"data": {
"object": {
"id": "pyo_2togcJuFHW1Vc0T8Cb2jy3",
"status": "rejected",
"recipient": "Ana Devenger",
"company_reference": "123",
"description": "March payout",
"amount": {
"cents": 10000,
"currency": "EUR"
},
"destination": {
"iban": "ES6621000418401234567891"
},
"account_id": "acc_fYpgX5Ytdxzexuf61lFmw",
"instant": true,
"eta": "2022-01-01T12:00:00Z",
"created_at": "2022-01-01T12:00:00Z",
"processor": {
"network": "SEPA",
"scheme": "SCT-INST"
},
"error": {
"code": "ERR-0001",
"type": "blocked_account",
"reason": "AG01"
},
"links": null,
"metadata": {},
"internal": false,
"third_party": {
"name": "Ana Devenger",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES6621000418401234567891"
}
],
"bank": {
"name": "CAIXESBB",
"bic": "CAIXABANK, S.A."
}
}
}
}
}
}
Verifications
verification.created
This event will be sent when a new verification has been created, before it's delivered to the recipient.
{
"id": "evt_42JdXlmtQNoxWSl9lewIyo",
"api_version": "v1",
"type": "verification.created",
"created_at": "2023-05-18T10:28:53Z",
"data": {
"object": {
"id": "vrf_677Rhc1GQQLoGZIxPHbgb0",
"third_party": {
"name": "Courtney Beier",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES9400814163357423474839"
}
],
"bank": {
"name": "Banco de Sabadell, S.A.",
"bic": "BSABESBBXXX"
}
}
},
"status": "created",
"company_reference": null,
"metadata": {},
"expired_at": "2023-05-25T10:28:53Z",
"created_at": "2023-05-18T10:28:53Z",
"eta": "2023-05-18T10:29:03Z",
"attempts": 0,
"error": null
}
}
}
verification.delivered
This event will be sent when the verification code was delivered to the recipient.
{
"id": "evt_42JdXlmtQNoxWSl9lewIyo",
"api_version": "v1",
"type": "verification.delivered",
"created_at": "2023-05-18T10:28:53Z",
"data": {
"object": {
"id": "vrf_677Rhc1GQQLoGZIxPHbgb0",
"third_party": {
"name": "Courtney Beier",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES9400814163357423474839"
}
],
"bank": {
"name": "Banco de Sabadell, S.A.",
"bic": "BSABESBBXXX"
}
}
},
"status": "delivered",
"company_reference": null,
"metadata": {},
"expired_at": "2023-05-25T10:28:53Z",
"created_at": "2023-05-18T10:28:53Z",
"eta": "2023-05-18T10:29:03Z",
"attempts": 0,
"error": null
}
}
}
verification.rejected
This event will be sent when the verification code couldn't be delivered to the recipient. In this case the error
field will contain more information about the problem.
{
"id": "evt_42JdXlmtQNoxWSl9lewIyo",
"api_version": "v1",
"type": "verification.rejected",
"created_at": "2023-05-18T10:28:53Z",
"data": {
"object": {
"id": "vrf_677Rhc1GQQLoGZIxPHbgb0",
"third_party": {
"name": "Courtney Beier",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES9400814163357423474839"
}
],
"bank": {
"name": "Banco de Sabadell, S.A.",
"bic": "BSABESBBXXX"
}
}
},
"status": "rejected",
"company_reference": null,
"metadata": {},
"expired_at": "2023-05-25T10:28:53Z",
"created_at": "2023-05-18T10:28:53Z",
"eta": "2023-05-18T10:29:03Z",
"attempts": 0,
"error": {
"code": "ERR-0001",
"type": "blocked_account",
"reason": "AC06"
}
}
}
}
verification.confirmed
This event will be sent when the verification was confirmed providing the right code.
{
"id": "evt_42JdXlmtQNoxWSl9lewIyo",
"api_version": "v1",
"type": "verification.confirmed",
"created_at": "2023-05-18T10:28:53Z",
"data": {
"object": {
"id": "vrf_677Rhc1GQQLoGZIxPHbgb0",
"third_party": {
"name": "Courtney Beier",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES9400814163357423474839"
}
],
"bank": {
"name": "Banco de Sabadell, S.A.",
"bic": "BSABESBBXXX"
}
}
},
"status": "confirmed",
"company_reference": null,
"metadata": {},
"expired_at": "2023-05-25T10:28:53Z",
"created_at": "2023-05-18T10:28:53Z",
"eta": "2023-05-18T10:29:03Z",
"attempts": 1,
"error": null
}
}
}
verification.failed
This event will be sent when the maximum number of confirmation attempts has been reached. Once the verification has failed, no more attempts will be allowed.
{
"id": "evt_42JdXlmtQNoxWSl9lewIyo",
"api_version": "v1",
"type": "verification.failed",
"created_at": "2023-05-18T10:28:53Z",
"data": {
"object": {
"id": "vrf_677Rhc1GQQLoGZIxPHbgb0",
"third_party": {
"name": "Courtney Beier",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES9400814163357423474839"
}
],
"bank": {
"name": "Banco de Sabadell, S.A.",
"bic": "BSABESBBXXX"
}
}
},
"status": "failed",
"company_reference": null,
"metadata": {},
"expired_at": "2023-05-25T10:28:53Z",
"created_at": "2023-05-18T10:28:53Z",
"eta": "2023-05-18T10:29:03Z",
"attempts": 5,
"error": null
}
}
}
verification.expired
This event will be sent when the verification has not been confirmed and the expiration date has been reached.
{
"id": "evt_42JdXlmtQNoxWSl9lewIyo",
"api_version": "v1",
"type": "verification.expired",
"created_at": "2023-05-18T10:28:53Z",
"data": {
"object": {
"id": "vrf_677Rhc1GQQLoGZIxPHbgb0",
"third_party": {
"name": "Courtney Beier",
"account": {
"identifiers": [
{
"type": "iban",
"iban": "ES9400814163357423474839"
}
],
"bank": {
"name": "Banco de Sabadell, S.A.",
"bic": "BSABESBBXXX"
}
}
},
"status": "expired",
"company_reference": null,
"metadata": {},
"expired_at": "2023-05-25T10:28:53Z",
"created_at": "2023-05-18T10:28:53Z",
"eta": "2023-05-18T10:29:03Z",
"attempts": 0,
"error": null
}
}
}
Updated 11 days ago