Add Bulk Contacts

This request is used to add a batch of up to 500 contacts.

URL

POST https://api.smspartner.fr/v1/contact/multiple/add

Request

 {
   "apiKey": "API_KEY",
   "groupId": "GROUP_ID",
   "contactsList": [
       {
           "firstname":"firstname_1",
           "lastname":"lastname_1",
           "date": "2023-01-01",
           "url": "http:...",
           "phoneNumber": "0600000000",
           "custom1": "email"
       },
       {
           "firstname":"firstname_2",
           "lastname":"lastname_2",
           "date": "2023-01-01",
           "url": "http:...",
           "phoneNumber": "0600000001",
           "custom1": "email"
       },
       …
   ]
}

Response

Last updated