Sign in

Import clients (bulk)

documented

Bulk import multiple clients into Repsly.

POST https://api.repsly.com/v3/import/clientListClientsno implementation yet0 runs
No 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/clientList" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"Clients": [ {"Code": "{{$code}}","Name": "{{$name}}","Active": {{$active}},"Tag": "{{$tag}}","Territory": "{{$territory}}","RepresentativeCode": "{{$rep_code}}","RepresentativeName": "{{$rep_name}}","StreetAddress": "{{$street}}","ZIP": "{{$zip}}","ZIPExt": "{{$zip_ext}}","City": "{{$city}}","State": "{{$state}}","Country": "{{$country}}","Email": "{{$email}}","Phone": "{{$phone}}","Mobile": "{{$mobile}}","Website": "{{$website}}","ContactName": "{{$contact_name}}","ContactTitle": "{{$contact_title}}","Note": "{{$note}}","Status": "{{$status}}","CustomFields": [{ "Field": "{{$custom_field_name}}", "Value": "{{$custom_field_value}}"}], "PriceLists": [{ "Name": "{{$price_list_name}}"}], "AccountCode": "{{$account_code}}" } ] }' --compressed}
Import clients (bulk) · Repsly · OpenIntegrations