TraitGroup
Create a Trait Group
Creates a Trait Group with declarative trait schemas for this Memory Store.
post/v1/ControlPlane/Stores/{storeId}/TraitGroups
Request body
Example request
{
"displayName": "Contact",
"description": "This Trait Group contains traits related to contact information.",
"traits": {
"email": {
"dataType": "STRING",
"description": "User's email address"
},
"dob": {
"dataType": "STRING",
"description": "User's date of birth"
}
}
}Response
TraitGroup creation request accepted.
Example response
{
"message": "TraitGroup creation request accepted."
}