Skip to main content
POST
/
createmember_type
Create Membership Type
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": {}
}
'
{
  "status": "success",
  "data": {
    "id": 5,
    "name": "Premium Member",
    "category": "premium",
    "duration": "12",
    "autorecurring_payment": true,
    "reminder_frequency": "monthly"
  }
}

Request Body

membership_type
object
required
membership_dues
array
Array of dues configurations.
workflow
object
Workflow settings (approval, payment requirements).
notificationsettings
object
Notification template configuration.

Response

{
  "status": "success",
  "data": {
    "id": 5,
    "name": "Premium Member",
    "category": "premium",
    "duration": "12",
    "autorecurring_payment": true,
    "reminder_frequency": "monthly"
  }
}