Accounts

Reference of Payloads to be sent for event type Account.

Webhook List for Main Account events

For information about specific payloads for a given API event type and webhook notification code, just click on the corresponding Webhook Code in the table below.

Event TypeEvent Sub TypeCodescheduled to be sent whenever...
ACCOUNTACCOUNT_CREATED1000an account is created.
ACCOUNTACCOUNT_UPDATED1100an account is updated.
ACCOUNTACCOUNT_CANCELLED1101an account is cancelled.
ACCOUNTACCOUNT_FAILED1005an account failed on being created, updated or cancelled.
ACCOUNTEMAIL_UPDATED1001the account email is changed/replaced.
ACCOUNTMOBILE_UPDATED1002the account mobile is changed/replaced.
ACCOUNTSECRET_KEY_CREATED1010initial Secret API Key is created (by the first time only).
ACCOUNTSECRET_KEY_UPDATED1011a new Secret API Key is created and old one is scheduled to expire (second time and so on).
ACCOUNTSECRET_KEY_WARNING1012a Secret API Key is near to expire (1, 3 and 7 days before expire).
ACCOUNTCREDENTIAL_UPDATED1013new account credentials are created.
ACCOUNTCREDENTIAL_WARNING1014account credentials are expired (1, 3 and 5 days after expired).
ACCOUNTUNAUTHORIZED_ACTION1015an unauthorized action is requested (account behalf).

ACCOUNT_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "ACCOUNT_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1000, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

ACCOUNT_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "ACCOUNT_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1100, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

ACCOUNT_CANCELLED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "ACCOUNT_CANCELLED", /* Event Sub-Type description */
	  "webhook_notification_code": 1101, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

ACCOUNT_FAILED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "ACCOUNT_FAILED", /* Event Sub-Type description */
	  "webhook_notification_code": 1005, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "failed", /* The status of the action */
		    "failed_reason": "Inconsistent data", /* If status=failed, a failure code */
		    "failed_message": "Wrong Email and/or Phone" /* If status=failed, a description of the failure */
	  }
}

EMAIL_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "EMAIL_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1001, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

MOBILE_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "MOBILE_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1002, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SECRET_KEY_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SECRET_KEY_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1010, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SECRET_KEY_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SECRET_KEY_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1011, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SECRET_KEY_WARNING

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SECRET_KEY_WARNING", /* Event Sub-Type description */
	  "webhook_notification_code": 1012, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
        "code": "fb2992d3-5cf2-4177-8433-************",
        "name": ""
	  }
}

CREDENTIAL_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CREDENTIAL_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1013, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

CREDENTIAL_WARNING

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CREDENTIAL_WARNING", /* Event Sub-Type description */
	  "webhook_notification_code": 1014, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
        "code": "************",
        "name": "user_account"
	  }
}

UNAUTHORIZED_ACTION

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "UNAUTHORIZED_ACTION", /* Event Sub-Type description */
	  "webhook_notification_code": 1015, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "failed", /* The status of the action */
				"failed_reason": "Unauthorized request", /* If status=failed, a failure code */
		    "failed_message": "Secret Key Expired" /* If status=failed, a description of the failure */
	  }
}


Webhook List for Sub Account events

For information about specific payloads for a given API event type and webhook notification code, just click on the corresponding Webhook Code in the table below.

Event TypeEvent Sub TypeCodescheduled to be sent whenever...
ACCOUNTSUB_ACCOUNT_CREATED1200a sub-account is created.
ACCOUNTSUB_ACCOUNT_UPDATED1300a sub-account is updated.
ACCOUNTSUB_ACCOUNT_CANCELLED1301a sub-account is cancelled.
ACCOUNTSUB_ACCOUNT_FAILED1205a sub-account failed on being created, updated or cancelled.
ACCOUNTSA_EMAIL_UPDATED1201Sub-Account email is changed/replaced.
ACCOUNTSA_MOBILE_UPDATED1202Sub-Account mobile is changed/replaced.
ACCOUNTSA_SECRET_KEY_CREATED1210Sub-Account initial Secret API Key is created (first time only).
ACCOUNTSA_SECRET_KEY_UPDATED1211a new Secret API Key is created and old one is scheduled to expire (second time and so on).
ACCOUNTSA_SECRET_KEY_WARNING1212Sub-Account Secret API Key is near to expire (1, 3 and 7 days before expire).
ACCOUNTSA_CREDENTIAL_UPDATED1213new sub-account credentials are created.
ACCOUNTSA_CREDENTIAL_WARNING1214sub-account credentials are expired (1, 3 and 5 days after expired).
ACCOUNTSA_UNAUTHORIZED_ACTION1215an unauthorized action is requested (sub-account behalf).

SUB_ACCOUNT_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SUB_ACCOUNT_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1200, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SUB_ACCOUNT_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SUB_ACCOUNT_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1300, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SUB_ACCOUNT_CANCELLED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SUB_ACCOUNT_CANCELLED", /* Event Sub-Type description */
	  "webhook_notification_code": 1301, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SUB_ACCOUNT_FAILED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SUB_ACCOUNT_FAILED", /* Event Sub-Type description */
	  "webhook_notification_code": 1205, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "failed", /* The status of the action */
		    "failed_reason": "FAILED_ON_UPDATE", /* If status=failed, a failure code */
		    "failed_message": "Invalid document number provided" /* If status=failed, a description of the failure */
	  }
}

SA_EMAIL_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_EMAIL_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1201, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SA_MOBILE_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_MOBILE_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1202, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SA_SECRET_KEY_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_SECRET_KEY_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1210, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SA_SECRET_KEY_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_SECRET_KEY_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1211, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SA_SECRET_KEY_WARNING

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_SECRET_KEY_WARNING", /* Event Sub-Type description */
	  "webhook_notification_code": 1212, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
        "code": "fb2992d3-5cf2-4177-8433-************",
        "name": ""
	  }
}

SA_CREDENTIAL_UPDATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_CREDENTIAL_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1213, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

SA_CREDENTIAL_WARNING

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_CREDENTIAL_WARNING", /* Event Sub-Type description */
	  "webhook_notification_code": 1214, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
        "code": "************",
        "name": "user_account"
	  }
}

SA_UNAUTHORIZED_ACTION

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SA_UNAUTHORIZED_ACTION", /* Event Sub-Type description */
	  "webhook_notification_code": 1215, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "failed", /* The status of the action */
				"failed_reason": "Unauthorized request", /* If status=failed, a failure code */
		    "failed_message": "Secret Key Expired" /* If status=failed, a description of the failure */
	  }
}


Webhook List for payments received on behalf of Main Account

For information about specific payloads for a given API event type and webhook notification code, just click on the corresponding Webhook Code in the table below.

Event TypeEvent Sub TypeCodescheduled to be sent whenever...
ACCOUNTSPEI_REFERENCE_CREATED1030SPEI clabe account is created.
ACCOUNTSPEI_WEBHOOK_ACCEPTED1031a success SPEI webhook is received (accepted)
ACCOUNTSPEI_WEBHOOK_CANCELLED1032a success SPEI webhook is requested to be cancelled.
ACCOUNTSPEI_WEBHOOK_REJECTED1033a failed SPEI webhook is received (rejected).
ACCOUNTSPEI_WEBHOOK_REFUNDED1034a SPEI transaction refund webhook is received (REFUND)
ACCOUNTCASH_REFERENCE_CREATED1040account CASH reference is created.
ACCOUNTCASH_WEBHOOK_ACCEPTED1041a success CASH webhook is received (accepted).
ACCOUNTCASH_WEBHOOK_CANCELLED1042a success CASH webhook is requested to be cancelled.
ACCOUNTCASH_WEBHOOK_REJECTED1043a failed CASH webhook is received (rejected).
ACCOUNTCODI_WEBHOOK_ACCEPTED1051a success CODI webhook is received (accepted).
ACCOUNTCODI_WEBHOOK_REJECTED1053a failed CODI webhook is received (rejected).
ACCOUNTSPEI_ACCOUNT_CASH_OUT_CREATED1060an account SPEI cash out is successfully created but pending processing.
ACCOUNTSPEI_ACCOUNT_CASH_OUT_SUCCESS1061an account SPEI cash out is successfully created.
ACCOUNTSPEI_ACCOUNT_CASH_OUT_CANCELLED1062an account SPEI cash out transaction was cancelled.
ACCOUNTSPEI_ACCOUNT_CASH_OUT_DECLINED1063an account SPEI cash out transaction was declined.
ACCOUNTSPEI_ACCOUNT_CASH_OUT_REJECTED1064an account SPEI cash out transaction was rejected.
ACCOUNTSPEI_ACCOUNT_CASH_OUT_FAILED1065an account SPEI cash out failed on being created.

SPEI_WEBHOOKS

SPEI_REFERENCE_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_REFERENCE_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1030, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID that holds the generated clabe */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 0, /* No id here  */
		    "status": "success" /* The status of the action */,
        "code": "646123222734230003", // CLABE/reference created
	  }
}

SPEI_WEBHOOK_ACCEPTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_WEBHOOK_ACCEPTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1031, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 125436, /* ID of Spei transaction, unique and used later for refunds */
		    "status": "success", /* The status of the action */
        "amount": "1344.43", /* Amount of the money in request */
        "code": "646123222734230003", /* Beneficiary CLABE account */
        "name": ""
	  },
    "metadata": {
        "payer_name":"PAYER NAME",
        "payer_account":"00000605847406932", /* Payer Clabe Account */
        "payer_rfc":"AAAA9111059J5",
        "payer_institution":"40014",
        "beneficiary_account":"646180000002175408", /* Beneficiary CLABE account */
        "beneficiary_rfc":"AAAA9111059J6",
        "beneficiary_name":"BELANEA MEXICO, SAPI DE CV",
        "payment_concept":"TRANSFERENCIA A CUENTA CLABE",/* Payment Concept */
        "tracking_key":"2025060440014TRAPP001436462539",
        "numeric_reference":"3925461"
    }
}

SPEI_WEBHOOK_CANCELLED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_WEBHOOK_CANCELLED", /* Event Sub-Type description */
	  "webhook_notification_code": 1032, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 125436, /* ID of Spei transaction, unique and used later for refunds */
		    "status": "success", /* The status of the action */
        "amount": "1344.43", /* Amount related with the API resource created/updated */
        "code": "646123222734230003",
        "name": ""
	  }
}

SPEI_WEBHOOK_REJECTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_WEBHOOK_REJECTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1033, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 125436, /* ID of Spei transaction, unique and used later for refunds */
		    "status": "failed", /* The status of the action */
        "code": "646010222734232318",
        "name": "",
		    "failed_reason": "Clabe not found or disabled", /* If status=failed, a failure code */
		    "failed_message": "Clabe number received does not exist or is disabled" /* If status=failed, a description of the failure */
	  }
}

SPEI_WEBHOOK_REFUNDED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_WEBHOOK_REFUNDED", /* Event Sub-Type description */
	  "webhook_notification_code": 1034, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 125436, /* ID of Spei transaction that was refunded */
		    "status": "Refunded", /* The status of the action */
        "amount": "1344.43", /* Amount of the SPEI transaction */
        "code": "646123222734230003", /* Beneficiary CLABE account */
        "name": "SUCCESS"
	  },
    "metadata": {
        "payer_name":"PAYER NAME",
        "payer_account":"00000605847406932", /* Payer Clabe Account */
        "payer_rfc":"AAAA9111059J5",
        "payer_institution":"40014",
        "beneficiary_account":"646180000002175408", /* Beneficiary CLABE account */
        "beneficiary_rfc":"AAAA9111059J6",
        "beneficiary_name":"BELANEA MEXICO, SAPI DE CV",
        "payment_concept":"TRANSFERENCIA A CUENTA CLABE",/* Payment Concept */
        "tracking_key":"2025060440014TRAPP001436462539",
        "numeric_reference":"3925461"
    }
}

SPEI_ACCOUNT_CASH_OUT_FAILED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_ACCOUNT_CASH_OUT_FAILED", /* Event Sub-Type description */
	  "webhook_notification_code": 1065, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "transaction_id": "trx_ehe77r6t8et5", /* If exist, external transaction ID related with the event. */
	  "details": {
		      "id": 321, /* Object ID of the API resource created/updated */
		      "status": "failed", /* The status of the action */
        	"code": "4643546543",
        	"name": "Jonh Mashup",
        	"amount": "1344.43", /* Amount related with the API resource created/updated */
      		"failed_reason": "Inconsistent data", /* If status=failed, a failure code */
      		"failed_message": "Unable to create account spei cashout; low balance" /* If status=failed, a description of the failure */
	  }
}

SPEI_ACCOUNT_CASH_OUT_SUCCESS

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_ACCOUNT_CASH_OUT_SUCCESS", /* Event Sub-Type description */
	  "webhook_notification_code": 1061, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": -1, /* No customer id for cashout operations */
  	"transaction_id": "trx_ehe77r6t8et5", /* If exist, external transaction ID related with the event. */
	  "details": {
		    "id": 533432, /* Spei Out transaction ID */
		    "status": "success", /* The status of the action */
        "amount": "1344.43", /* Amount of the SPEI transaction */
        "code": "646123222734230003", /* Beneficiary CLABE account */
    		"name": "Jonh Mashup",
	  },
    "metadata": {
        "payer_name":"PAYER NAME",
        "payer_account":"00000605847406932", /* Payer Clabe Account */
        "payer_rfc":"AAAA9111059J5",
        "payer_institution":"40014",
        "beneficiary_account":"646180000002175408", /* Beneficiary CLABE account */
        "beneficiary_rfc":"AAAA9111059J6",
        "beneficiary_name":"BELANEA MEXICO, SAPI DE CV",
        "payment_concept":"TRANSFERENCIA A CUENTA CLABE",/* Payment Concept */
        "tracking_key":"2025060440014TRAPP001436462539",
        "numeric_reference":"3925461"
    }
}

SPEI_ACCOUNT_CASH_OUT_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_ACCOUNT_CASH_OUT_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1060, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
  	  "transaction_id": "trx_ehe77r6t8et5", /* If exist, external transaction ID related with the event. */
	  "details": {
		    "id": 533432, /* Spei Out transaction ID */
    		"status": "success", /* The status of the action */
       	"code": "4643546543",
    		"name": "Jonh Mashup",
   		  "amount": "1344.43" /* Amount related with the API resource created/updated */
	  },
      "metadata": {
        "payer_name":"PAYER NAME",
        "payer_account":"00000605847406932", /* Payer Clabe Account */
        "payer_rfc":"AAAA9111059J5",
        "payer_institution":"40014",
        "beneficiary_account":"646180000002175408", /* Beneficiary CLABE account */
        "beneficiary_rfc":"AAAA9111059J6",
        "beneficiary_name":"BELANEA MEXICO, SAPI DE CV",
        "payment_concept":"TRANSFERENCIA A CUENTA CLABE",/* Payment Concept */
        "tracking_key":"2025060440014TRAPP001436462539",
        "numeric_reference":"3925461"
    }
}

SPEI_ACCOUNT_CASH_OUT_CANCELLED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_ACCOUNT_CASH_OUT_CANCELLED",/*Event Sub-Type description */
	  "webhook_notification_code": 1062, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
  	  "transaction_id": "trx_ehe77r6t8et5", /* If exist, external transaction ID related with the event. */
	  "details": {
		      "id": 533432, /* Spei Out transaction ID */
    		  "status": "cancelled", /* The status of the action */
        	"code": "4643546543",
        	"name": "Jonh Mashup",
        	"amount": "1344.43", /* Amount related with the API resource created/updated */
      		"failed_reason": "CANCELLED BY PROVIDER", /* If status=failed, a failure code */
      		"failed_message": "Transaction cancelled by the bank or provider" /* If 
	  }
}

SPEI_ACCOUNT_CASH_OUT_REJECTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_ACCOUNT_CASH_OUT_REJECTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1063, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
  	  "transaction_id": "trx_ehe77r6t8et5", /* If exist, external transaction ID related with the event. */
	  "details": {
		      "id": 533432, /* Spei Out transaction ID */
		      "status": "rejected", /* The status of the action */
        	"code": "4643546543",
        	"name": "Jonh Mashup",
        	"amount": "1344.43", /* Amount related with the API resource created/updated */
      		"failed_reason": "REJECTED", /* If status=failed, a failure code */
      		"failed_message": "Transaction rejected by bank or provider" /* If 
	  }
}

SPEI_ACCOUNT_CASH_OUT_DECLINED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "SPEI_ACCOUNT_CASH_OUT_DECLINED", /* Event Sub-Type description */
	  "webhook_notification_code": 1064, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
  	  "transaction_id": "trx_ehe77r6t8et5", /* If exist, external transaction ID related with the event. */
	  "details": {
   		    "id": 533432, /* Spei Out transaction ID */
		      "status": "declined", /* The status of the action */
        	"code": "4643546543",
        	"name": "Jonh Mashup",
        	"amount": "1344.43", /* Amount related with the API resource created/updated */
      		"failed_reason": "DECLINED", /* If status=failed, a failure code */
      		"failed_message": "Transaction declined by bank or provider" /* If 
	  }
}

CASH_WEBHOOKS

CASH_REFERENCE_CREATED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CASH_REFERENCE_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 1040, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success" /* The status of the action */
	  }
}

CASH_WEBHOOK_ACCEPTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CASH_WEBHOOK_ACCEPTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1041, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 64354, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
        "amount": "1344.43", /* Amount related with the API resource created/updated */
        "code": "5450541222000123"
	  }
}

CASH_WEBHOOK_CANCELLED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CASH_WEBHOOK_CANCELLED", /* Event Sub-Type description */
	  "webhook_notification_code": 1042, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 64354, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
        "amount": "1344.43", /* Amount related with the API resource created/updated */
        "code": "5450541222000123"
	  }
}

CASH_WEBHOOK_REJECTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CASH_WEBHOOK_REJECTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1043, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
	  "details": {
		    "id": 46576, /* Object ID of the API resource created/updated */
		    "status": "failed", /* The status of the action */
        "code": "568569583457353",
		    "failed_reason": "FAILED_ON_VALIDATE", /* If status=failed, a failure code */
		    "failed_message": "Reference number provided does not exist or is disabled" /* If status=failed, a description of the failure */
	  }
}

CODI_WEBHOOKS

CODI_WEBHOOK_ACCEPTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CODI_WEBHOOK_ACCEPTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1051, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "success", /* The status of the action */
	  }
}

CODI_WEBHOOK_REJECTED

{
	  "event_type": "ACCOUNT", /* API Event Type */
	  "event_type_description": "CODI_WEBHOOK_REJECTED", /* Event Sub-Type description */
	  "webhook_notification_code": 1053, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
    "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "details": {
		    "id": 321, /* Object ID of the API resource created/updated */
		    "status": "failed", /* The status of the action */
		    "failed_reason": "FAILED_ON_VALIDATE", /* If status=failed, a failure code */
		    "failed_message": "Invalid payload; CODI config for maximum allowed amount exceeded" /* If status=failed, a description of the failure */
	  }
}