Data Factory Use Cases
List every user in your account
Quick links
The job is available for download here.
The JSON representation of the job is available here.
The purpose of this Data Factory job is to produce an Excel spreadsheet containing the list of every users in a given account. This job intends to illustrate the use of tasks such as data-user-find.
This job is made to be triggered by a user (from the app.product-live.com or the settings.product-live.com application). No parameters are required to trigger this job. The spreadsheet will be made available for download at the end of the job.
mermaid
flowchart TD
_start(("Start"))
_end(("End"))
find_users["<b><a href='/data-factory/references/tasks/data-user-find/'>data-user-find</a></b><br />Find users from the current account"]
file_transformation_xslt["<b><a href='/data-factory/references/tasks/file-transformation-xslt/'>file-transformation-xslt</a></b><br />Generate input for excel task"]
file_generation_xlsx["<b><a href='/data-factory/references/tasks/file-generation-xlsx/'>file-generation-xlsx</a></b><br />Generate Excel Sheet"]
_start --> find_users
find_users --> file_transformation_xslt
file_transformation_xslt --> file_generation_xlsx
file_generation_xlsx --> _end