Import users (bulk)
documentedBulk import users.
POST https://api.repsly.com/v3/import/userListUsersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.repsly.com/v3/import/userList" \
-X POST \
-H "Authorization: Basic {{REPSLY_BASIC_AUTH_B64}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"Users": [{"Code": "{{$code}}", "Name": "{{$name}}", "Email": "{{$email}}", "Active": {{$active}}, "Role": "{{$role}}", "Note": "{{$note}}", "Phone": "{{$phone}}", "Territories": {{$territories}}, "SendEmailEnabled": {{$sendEmailEnabled}}, "Address1": "{{$address1}}", "Address2": "{{$address2}}", "City": "{{$city}}", "State": "{{$state}}", "ZipCode": "{{$zip}}", "ZipCodeExt": "{{$zipExt}}", "Country": "{{$country}}", "CountryCode": "{{$countryCode}}", "Attributes": [{"Title": "{{$attrTitle}}", "Value": "{{$attrValue}}"}], "Permissions": {{$permissions}}, "Teams": {{$teams}}}]}'