curl --request POST \
--url https://api.example.com/createmember_type \
--header 'Content-Type: application/json' \
--data '
{
"membership_type": {
"name": "<string>",
"chapter_id": 123,
"category": "<string>",
"duration": 123,
"description": "<string>",
"autorecurring_payment": true,
"reminder_frequency": "<string>",
"membership_privacy": true,
"startdate": "<string>",
"enddate": "<string>"
},
"membership_dues": [
{}
],
"workflow": {},
"notificationsettings": {}
}
'