Bank Account Created

A new Bank Account has been opened.

Example Use Case

A new Bank Account has been created for one of your existing Entities

Request Specifications

Required API FieldDefinitionNotes
timestampTimestamp of the event.
external_account_idUnique identifier for the Bank Account being created.
At least one of: entities[]Array of Entities that are associated with the Account.For each entity, either external_entity_id or entity_token is required.
One of:
external_entity_id
entity_token
Unique identifier of one of the Entities associated with the Account.Not strictly required if the event is not being monitored, but recommended to include for future proofing your integration.

This field has no impact on which Entities are attached to the Account, although it should match at least one of the Entities that the Account belongs to.

Example Request/Response

{
    "event_type": "bank_account_created",
    "event_status": "successful",
    "event_lifecycle_id": "X99-43jf-434klj",
    "data": {
        "external_account_id": "8b75f5e2-b671-450c-9fb2-5aa05c286309",
        "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855",
        "timestamp": "2024-03-25T22:40:02.982Z",
        "account_class": "deposit",
        "account_name": "John Doe Business",
        "product_name": "Alloy Business Checking",
        "product_code": "DDA01",
        "account_number": "76396628",
        "routing_number": "000123456789",
        "opening_date": "2023-03-22T00:00:00Z",
        "closing_date": null,
        "maturity_date": null,
        "cif_number": null,
        "card_network": "visa",
        "country_code": "US",
        "currency": "USD",
        "status": "Active",
        "status_detail": "Account is active",
        "account_balance": 500000,
        "entities": [
            {
                "account_holder_type": "primary",
                "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855"
            },
            {
                "account_holder_type": "secondary",
                "external_entity_id": "9e82d5e7-ada0-4957-a8fd-4d937c99bae8"
            }
        ],
        "meta": {
            "somedata": "string"
        },
        "supplemental_data": {}
    }
}
{
    "status_code": 201,
    "event_request_token": "EV-feHKM66JaWfuJJ5BTApy",
    "_links": {
        "self": {
            "href": "/v1/events/EV-feHKM66JaWfuJJ5BTApy"
        }
    },
    "event": {
        "event_type": "bank_account_created",
        "event_status": "PROCESSED",
        "data": {
            "cif_number": null,
            "product_code": "DDA01",
            "product_name": "Alloy Business Checking",
            "opening_date": "2023-03-22T00:00:00.000Z",
            "meta": {
                "somedata": "string"
            },
            "routing_number": "000123456789",
            "card_network": "visa",
            "account_name": "John Doe Business",
            "account_class": "deposit",
            "country_code": "US",
            "entities": [
                {
                    "entity_token": "P-TfkFe6lCPkElc9Xktd3V",
                    "external_entity_id": "9e82d5e7-ada0-4957-a8fd-4d937c99bae8",
                    "account_holder_type": "secondary"
                },
                {
                    "entity_token": "B-4x8WzjvGz5Oz8RWA6MvY",
                    "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855",
                    "account_holder_type": "primary"
                }
            ],
            "currency": "USD",
            "account_number": "76396628",
            "account_balance": "500000.00",
            "credit_limit": null,
            "status": "Active",
            "status_detail": "Account is active",
            "as_of_date": "2024-03-25T00:00:00.000Z",
            "external_account_id": "8b75f5e2-b671-450c-9fb2-5aa05c286309",
            "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855",
            "account_token": "A-Rbdws17NItHaEy3HrHkL"
        },
        "evaluations": [],
        "journey_applications": []
    }
}