ApiGroupMembershipInput Data Type

Properties
name data type description
externalId string Every group membership that is inserted using the API, can have a unique reference to the corresponding group membership in your data source. This can be anything as long as it is unique in the group and matches this regex: ^[A-Za-z0-9@_.-]+$. This id can later be used to retrieve, update and delete the group membership. Maximum length of 128 characters.
memberId string This is the Socie id of the corresponding member. This id must be present unless memberExternalId is used.
memberExternalId string This is your id of the corresponding member. This id must be present unless memberId is used.
title string Maximum length of 256 characters.

Example

{
  "externalId" : "123456",
  "memberId" : "5bBePJwK9ycB1QnjOlot",
  "memberExternalId" : "123456",
  "title" : "Director"
}