MembershipRates
Create a MembershipRate
Use this endpoint to create a new MembershipRate. A MembershipRate belongs to a MembershipType and defines how members of that type are billed.
post/customers/membership-rates
Request body
Example request
{
"name": "Standard rate",
"membership_type_id": "5f8a1b2c-9d3e-4a5b-8c6d-7e8f9a0b1c2d",
"price": 5000,
"currency": "GBP",
"joining_fee": 1000,
"private": true,
"billing_frequency": "P1M",
"default_duration": "P1Y",
"notice_period": "P1M"
}Response
The MembershipRate was successfully retrieved or updated.
Example response
{
"data": {
"name": "Standard rate",
"currency": "GBP",
"price": 5000,
"joining_fee": 1000,
"billing_frequency": "P1M",
"default_duration": "P1Y",
"notice_period": "P1M",
"private": true
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.