Payment Profile Activated

This webhook is triggered when a payment method is added to a worker's account.

Event

PAYMENT_PROFILE_ACTIVATED

Data

employee_id - String
Unique ID for the worker

active_type - PaymentType
The active payment type

WALLET
CARD

wallet - WalletData
Additional data returned when active_type = WALLET

  • routing_number - String
    Bank Routing number
  • account_number - String
    Bank Account number

time_emitted - datetime

Example

"data": {
  "employee_id": "123",
  "active_type": "WALLET",
  "wallet": {
    "routing_number": "987654321",
    "account_number": "123456789"
  },
  "time_emitted": "2023-12-30T15:40:32-08:00"
}                
"data": {
  "employee_id": "123",
  "active_type": "CARD",
  "wallet": null,
  "time_emitted": "2023-12-30T15:40:32-08:00"
}