주 콘텐츠로 건너뛰기

Export user data - 지식 베이스 / Using Deskpro / Reports - Deskpro Support

Export user data

저자 리스트

Question

Is there a method I can use to export my user data for use in MailChimp or similar ??

Answer

You can go to the Reports section Stat Builder > Create Statistic to export a list of users.

The following query will give you the users name, id, email address and organization.

SELECT people_emails.person.id, people_emails.date_created, people_emails.person, people_emails.email, people_emails.person.organization.name

FROM people_emails

WHERE people_emails.date_created = %THIS_MONTH%

You can change the time period under WHERE depending on what users you want to export e.g users that were created THIS_YEAR, LAST_MONTH etc.

This report will give you more information - all of the above plus their address and phone number:

SELECT people_emails.person.id, people_emails.person, people_emails.email, people_emails.person.organization.name AS 'Organization Name', people_emails.person.contact_data.field_1 AS 'Address', people_emails.person.contact_data.field_2 AS 'City', people_emails.person.contact_data.field_3 AS 'State', people_emails.person.contact_data.field_4 AS 'Zipcode', people_emails.person.contact_data.field_5 AS 'Country', people_emails.person.phone_numbers.number AS 'Phone Number'

FROM people_emails

ORDER BY people_emails.person.id

도움이 되었습니다 도움이 되지 않음

이 페이지가 도움이 된다고 생각하는 사람들의 수 71 / 119