Upload contacts in batch
documentedUpload or update multiple contacts in batch for a store (up to 100 contacts per request). Request body includes a contacts array with per-contact fields (email, tags, accepts_marketing) plus flags update_existing and append_tags. ([support.remarkety.com](https://support.remarkety.com/hc/en-us/articles/360000694746-Uploading-contacts-in-batch-via-API))
POST /api/v2/stores/{store_id}/contacts/batchContactsno 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://app.remarkety.com/api/v2/stores/{{$store_id}}/contacts/batch" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Token: {{REMARKETY_API_KEY}}" \
-d '{"contacts": [
{"email": "{{$email1}}","tags": ["{{$tag1a}}","{{$tag1b}}"], "accepts_marketing": {{$accepts_marketing1}}},
{"email": "{{$email2}}","tags": ["{{$tag2a}}"], "accepts_marketing": {{$accepts_marketing2}} }
], "update_existing": {{$update_existing}}, "append_tags": {{$append_tags}} }'