Import recipients into a group
documentedBulk import recipients into a group (the group belongs to a single list).
POST /API/v1.1/Rest/ConsoleService.svc/Console/Group/{id_Group}/RecipientsRecipientsno 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://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Group/{{$id_Group}}/Recipients" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"Fields":[{"Description":"name","Id":1,"Value":"{{$recipient_name}}"}],"Name":"{{$recipient_name}}","Email":"{{$recipient_email}}","MobileNumber":"{{$recipient_mobile}}","MobilePrefix":"{{$recipient_mobile_prefix}}"}'