Download a UTF-8 CSV file pre-populated with the expected header row and a few example
data rows for the user import flow. Columns: email, name, phone, company_name,
roles. Sent as a text/csv attachment with Content-Disposition: attachment; filename="users_import_template.csv".
GET
/users/import/template
curl \
--request GET 'https://collect.your-domain.com/api/users/import/template' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}