Skip to content

Export users

POST
/api/v1/users/export
curl --request POST \
--url http://localhost:3000/api/v1/users/export \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <X-API-Key>' \
--data '{ "format": "csv", "organizationId": "example", "active": true, "userIds": [ "example" ] }'

Exports users to CSV or JSON format. Requires Super Admin privileges.

Media type application/json
object
format

Export format

string
default: csv
Allowed values: csv json
organizationId

Filter by organization ID

string
active

Filter by active status

boolean
userIds

Specific user IDs to export

Array<string>

Users exported successfully

Unauthorized

Forbidden - Super Admin required