Create Member
Creates a new member.
Request
POST
/user/v1/member
Path Parameters
No parameters
Query Parameters
No parameters
Payload Properties
identifiers
dictionary :
required
A dictionary containing unique identifiers for the member.
key string : requiredThe unique type identifier. Possible values can be found in the Member Identifier Type Dictionary. At a minimum, aclientmemberid is required.
The unique member identifier.
type string : requiredThe type of member. Possible values can be found in the Member Type Dictionary.
groupId string : optionalThe unique identifier of the group the member belongs to. This is required when the type is primary. It is otherwise ignored.
The unique identifier of the service offering that should be assigned to the member.
primaryMemberId string : optionalThe unique identifier of the primary member on the account. This is required when the type is NOT primary. It is otherwise ignored.
The member's first name.
lastName string : requiredThe member's last name.
gender string : requiredThe gender of the member. Possible values can be found in the Gender Type Dictionary.
dateOfBirth date : optionalThe member's date of birth.
mobileNumber string : optionalThe member's mobile phone number. Value will be in E-164 format.
emailAddress string : optionalThe member's email address.
homePostalAddressLine1 string : optionalThe first line of the address.
homePostalAddressLine2 string : optionalThe second line of the address.
homePostalAddressCity string : optionalThe city.
homePostalAddressState string : optionalThe USPS 2 character state abbreviation.
homePostalAddressZipCode string : optionalThe USPS zip code.
homePostalAddressCountryCode string : optionalThe country code is in ISO 3166-1 format.
Example
{
"identifiers": {
"clientmemberid": "d6d9c46b6b2d4c12bca09e46d7f4c938"
},
"groupId": "grp_bcbeed73f9a544e28f6714b63e6ee510",
"serviceOfferingId": "srvo_efb154ed229f4d0b8017f4390d385f23",
"type": "primary",
"primaryMemberId": null,
"firstName": "John",
"lastName": "Doe",
"gender": "M",
"dateOfBirth": "1970-01-01",
"emailAddress": "[email protected]",
"mobileNumber": "+15551234567",
"homePostalAddressLine1": "555 Nowhere Ln",
"homePostalAddressLine2": "Apt 12",
"homePostalAddressCity": "Dallas",
"homePostalAddressState": "TX",
"homePostalAddressZipCode": "75063",
"homePostalAddressCountryCode": "US"
}Updated 7 months ago
