Contact Group Member POST

URI

https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/contact-service/contact-group/{ID}/member

Refer to our documentation on URI syntax for more information on how to construct URIs.

Description

This message allows you to add contacts to an existing contact group. You may add one or more contacts to a contact group per request.

You may not add a contact to a contact group:

  • If the contact is already a member of the contact group.
  • If the contact group is set to read only.

Example

Adding contacts with IDs 12,3,54,5,55 to contact group 5.

Request URI

/contact-group/5/member

Request body

{
	"contactMemberIds": [
		12,
		3,
		54,
		5,
		55
	]
}

Response

{
}