card_status_change

A card status has changed. CDMSG controls which new card statuses trigger this event. This event is triggered by the PHP Program API only when FCSNT is set to 1; for the Python Program API, FCSNT is not needed. (If you are still on the PHP version, your URL contains intserv/3.0.)

  • CodeCSNT
  • Event trigger — The card status is changed to one of the values in CDMSG.
  • Processes — These processes contain the event trigger:
    • Modify Status endpoint
    • Customer Service Tool
    • Galileo's integrated CIP process
    • Galileo's fraud-detection process
    • Internal process that changes card status

Fields

All fields are strings. Your field names may vary. Default fields are included in the default webhook template. See Default and optional fields for more information.

Field Default Description
avail_cash

For debit accounts, the open_to_buy plus available overdraft. Example: "143.11"

avail_credit

For credit accounts, the available credit limit to spend. Example: "432.00"

balance_id X

The balance ID, also called the galileo_account_number. Example: "20211"

cad

Galileo-generated card ID. Example: "12534"

credit_balance

For credit accounts, the total amount of unpaid purchases and advances. Example: "325.00"

exp_date

The expiration date of the card. Format: MM/DD/YYYY. Example: "03/14/2023"

mobile_number

Cardholder's mobile phone number. Example: "8015553235"

msg_event_id

Unique Galileo-generated identifier for this message. Example: "243693"

msg_id

The four-letter code to identify this event. Example: "CSNT"

new_status X

See Card Statuses for possible values. Example: "C"

open_to_buy X

The available balance to spend. Example: "500.00"

pmt_ref_no X

Galileo 12-digit payment reference number (PRN) for the account. Example: "155101003022"

prod_id X

The product ID of the account. Example: "1701"

prog_id X

The program ID of the account. Example: "305"

protected_pan_four

The last four digits of the PAN. Example: "3523"

timestamp X

Date-time when this event was created in Mountain Standard Time (GMT -0700). Format: YYYY-MM-DD hh:mm:ss MST Example: "2025-01-31 17:20:33 MST"

type X

The name of this event: "card_status_change"

user_data

Populated according to your use case and needs by arrangement with Galileo.

Example

# card_status_change example:
{
  "avail_cash": "143.11",
  "avail_credit": "432.00",
  "balance_id": "20211",
  "cad": "12534",
  "credit_balance": "325.00",
  "exp_date": "03/14/2023",
  "mobile_number": "8015553235",
  "msg_event_id": "243693",
  "msg_id": "CSNT",
  "new_status": "C",
  "open_to_buy": "500.00",
  "pmt_ref_no": "155101003022",
  "prod_id": "1701",
  "prog_id": "305",
  "protected_pan_four": "3523",
  "timestamp": "2025-01-31 17:20:33 MST",
  "type": "card_status_change"
}