Export users
POST
/api/v1/users/export
const url = 'http://localhost:3000/api/v1/users/export';const options = { method: 'POST', headers: {'X-API-Key': '<X-API-Key>', 'Content-Type': 'application/json'}, body: '{"format":"csv","organizationId":"example","active":true,"userIds":["example"]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
format
Export format
string
organizationId
Filter by organization ID
string
active
Filter by active status
boolean
userIds
Specific user IDs to export
Array<string>
Responses
Section titled “ Responses ”Users exported successfully
Unauthorized
Forbidden - Super Admin required