Unsubscribe contact
documentedUnsubscribe a contact (email or SMS) from Remarkety via API. Requires store_id in the URL and an API key; request body includes email or sms_phone_number_e164 and an optional reason. ([support.remarkety.com](https://support.remarkety.com/hc/en-us/articles/360044121611-Unsubscribing-a-contact-using-API))
POST /api/v1/stores/{store_id}/contacts/unsubscribeContactsno 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/v1/stores/{{$store_id}}/contacts/unsubscribe" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "x-api-key: {{REMARKETY_API_KEY}}" \
-d '{"email": "{{$email}}", "sms_phone_number_e164": "{{$sms_phone_number_e164}}", "reason": "{{$reason}}"}'