Can I do an Export via CSV where the Owner is attached as well

Can I make an export via CSV from Mautic where the owner also comes along?

Thanks for your help.

By default it appears it does not include the owner.

You can easily export it with SQL:

 SELECT l.id, l.email, l.firstname, l.lastname, l.owner_id, CONCAT(u.first_name, ' ', u.last_name) AS ownerName 
FROM leads l LEFT JOIN users u ON (l.owner_id = u.id);

You can use tool like phpmyadmin to export query result (or use the command line to export ).

Regards, M.