MembershipRates
Update a MembershipRate
Update an existing MembershipRate. Only fields included in the request body will be changed.
put/customers/membership-rates/{rateId}
Request body
Example request
{
"name": "Standard rate",
"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.