Add data to custom column in EthTransactions

I added a custom column in EthTransactions Dashboard and I want to know if I can add data to it when I make the transfer using Javascript. If not, what other choices do I have?

My custom column name is customer_id and this is my JS code example:

const options = {
   type: "native",
   amount: Moralis.Units.ETH(this.amount),
   receiver: this.selected_wallet.address,
   customer_id: "1234"    // is this possible?
}
let result = await Moralis.transfer(options);

Thanks in advance.

You will need to save the data separately.

For that particular class of EthTransactions you will also need to adjust the Class Level Permissions for writes (through the Security tab at the top right of the server dashboard).

If I set a webhook, I receive the updates when there is a transaction update and I saw there is a context inside the payload. Can I send some custom data in that context or somewhere to receive it in the webhook payload?

Thanks for your answer.