Sign in

Import recipients into a list

documented

Bulk import recipients into a list (async) via the Console/List/{id_List}/Recipients endpoint.

POST /API/v1.1/Rest/ConsoleService.svc/Console/List/{id_List}/RecipientsRecipientsno 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://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/List/{{$id_List}}/Recipients\" \\
  -X POST \\
  -H \"Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}\" \\
  -H \"Content-Type: application/json\" \\
  -H \"Accept: application/json\" \\
  -d '{ \"Fields\":[{\"Description\":\"FirstName\",\"Id\":1,\"Value\":\"{{$firstName}}\"},{\"Description\":\"LastName\",\"Id\":2,\"Value\":\"{{$lastName}}\"}], \"Name\":\"{{$name}}\", \"Email\":\"{{$email}}\", \"MobileNumber\":\"{{$mobileNumber}}\", \"MobilePrefix\":\"{{$mobilePrefix}}\" }'
Import recipients into a list · MailUp · OpenIntegrations