Memberships
Membership plans, subscriptions, enrollments, and prepaid packages.
No content
GET /apis/v2/membership/jobs/{jobId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
No content
POST /apis/v2/membership/jobs/capture HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 61
{
"type": "text",
"date": "2026-01-01T00:00:00.000Z",
"_links": {}
}No content
Include unlisted memberships, based on permissions.
falseFilter by membership slug.
basic-membershipFilter memberships by membership id. Supports multiple.
Filter memberships by area id. Supports multiple.
["items._links.areas"]Returns a MembershipCollection
GET /apis/v2/memberships?page=1&ipp=1 HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns a MembershipCollection
{
"items": [
{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"subscriptionsCount": 1,
"hasOrHadMembers": true,
"slug": "text",
"taxRegionId": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}
],
"_pagination": {
"page": 1,
"ipp": 1,
"count": 1,
"total": 1
},
"_links": {
"self": {
"href": "text"
}
}
}If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
Returns a Membership
If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
Returns an ErrorDto in case of validation errors or failures.
Possible error codes are:M0001: Name must be set.M0002: Status must be set.M0003: Membership Plan must be set.M0004: Monthly Price must be set.M0005: Yearly Price must be set.M0006: Membership Areas must be set.M0007: Membership name already exists.M0008: Membership slug already exists.M0009: Membership slug must be set.M0010: Invalid slug format. Use lowercase and hyphens, e.g., "this-is-an-example".M0011: Area Liability Waiver agreement is missing for some areas. You must add an agreement for each area prior to activating the membership.M0012: One-time pricing options must be set for non-recurring memberships.M0013: Pause minimum weeks must be set and greater than 0 when pause is enabled.M0014: Pause maximum weeks must be set and greater than 0 when pause is enabled.M0015: Pause minimum weeks must be less than or equal to pause maximum weeks.M0016: Pause fee must be equal or greater than 0.M0017: Pause minimum weeks for monthly must be set and greater than 0 when monthly pause is enabled.M0018: Pause maximum weeks for monthly must be set and greater than 0 when monthly pause is enabled.M0019: Pause minimum weeks for monthly must be less than or equal to pause maximum weeks for monthly.M0020: Pause minimum weeks for yearly must be set and greater than 0 when yearly pause is enabled.M0021: Pause maximum weeks for yearly must be set and greater than 0 when yearly pause is enabled.M0022: Pause minimum weeks for yearly must be less than or equal to pause maximum weeks for yearly.M0023: Presales end date changed. Confirm to adjust next charge dates for existing subscribers.
POST /apis/v2/memberships HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1076
{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"slug": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"_links": {}
}{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"subscriptionsCount": 1,
"hasOrHadMembers": true,
"slug": "text",
"taxRegionId": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}f94e8bf8-454f-4f78-b358-1543ccc05d15["_links.areas"]Returns a Membership
If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
GET /apis/v2/memberships/{membershipId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns a Membership
{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"subscriptionsCount": 1,
"hasOrHadMembers": true,
"slug": "text",
"taxRegionId": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}f94e8bf8-454f-4f78-b358-1543ccc05d15If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
Returns a Membership
If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
Returns an ErrorDto in case of validation errors or failures.
Possible error codes are:
Membership has or had active subscriptions
DELETE /apis/v2/memberships/{membershipId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1076
{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"slug": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"_links": {}
}{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"subscriptionsCount": 1,
"hasOrHadMembers": true,
"slug": "text",
"taxRegionId": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}f94e8bf8-454f-4f78-b358-1543ccc05d15If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
Returns a Membership
If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
Returns an ErrorDto in case of validation errors or failures.
Possible error codes are:M0001: Name must be set.M0002: Status must be set.M0003: Membership Plan must be set.M0004: Monthly Price must be set.M0005: Yearly Price must be set.M0006: Membership Areas must be set.M0007: Membership name already exists.M0008: Membership slug already exists.M0009: Membership slug must be set.M0010: Invalid slug format. Use lowercase and hyphens, e.g., "this-is-an-example".M0011: Area Liability Waiver agreement is missing for some areas. You must add an agreement for each area prior to activating the membership.M0012: One-time pricing options must be set for non-recurring memberships.M0013: Pause minimum weeks must be set and greater than 0 when pause is enabled.M0014: Pause maximum weeks must be set and greater than 0 when pause is enabled.M0015: Pause minimum weeks must be less than or equal to pause maximum weeks.M0016: Pause fee must be equal or greater than 0.M0017: Pause minimum weeks for monthly must be set and greater than 0 when monthly pause is enabled.M0018: Pause maximum weeks for monthly must be set and greater than 0 when monthly pause is enabled.M0019: Pause minimum weeks for monthly must be less than or equal to pause maximum weeks for monthly.M0020: Pause minimum weeks for yearly must be set and greater than 0 when yearly pause is enabled.M0021: Pause maximum weeks for yearly must be set and greater than 0 when yearly pause is enabled.M0022: Pause minimum weeks for yearly must be less than or equal to pause maximum weeks for yearly.M0023: Presales end date changed. Confirm to adjust next charge dates for existing subscribers.
PATCH /apis/v2/memberships/{membershipId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1076
{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"slug": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"_links": {}
}{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"subscriptionsCount": 1,
"hasOrHadMembers": true,
"slug": "text",
"taxRegionId": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}f94e8bf8-454f-4f78-b358-1543ccc05d15Returns a Number
GET /apis/v2/memberships/{membershipId}/subscriptions-count HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns a Number
1f94e8bf8-454f-4f78-b358-1543ccc05d15Returns a true if the membership has or had members, false otherwise
GET /apis/v2/memberships/{membershipId}/has-or-had-members HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns a true if the membership has or had members, false otherwise
truef94e8bf8-454f-4f78-b358-1543ccc05d15Returns a MembershipBenefitsCollection
GET /apis/v2/memberships/{membershipId}/benefits HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns a MembershipBenefitsCollection
{
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
}f94e8bf8-454f-4f78-b358-1543ccc05d15Returns a OneTimePriceOptionsCollection
GET /apis/v2/memberships/{membershipId}/one-time-price-options HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns a OneTimePriceOptionsCollection
{
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
}HOME_DOBROReturns an AreaCollection
If specified, overrides the tenant setting company.bookingHorizonDays.members
Scope for price changes: ALL_CURRENT updates existing members, NEW_ONLY applies only to new subscriptions
Scope for presales end date changes: ADJUST_SUBSCRIPTIONS updates existing subscribers, NO_CHANGE leaves subscriptions unchanged
When true and presalesEndDateChangeScope is ADJUST_SUBSCRIPTIONS, also adjusts nextGrantDate for monthly subscriptions
GET /apis/v2/memberships/{membershipId}/areas HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns an AreaCollection
{
"id": "text",
"displayName": "text",
"description": "text",
"type": "GLOBAL_MEMBER",
"membershipPlan": {
"id": "text",
"displayName": "text"
},
"status": "ACTIVE",
"yearlyPrice": 1,
"monthlyPrice": 1,
"monthlyDisplayPrice": "text",
"initiationFeeMonthly": 1,
"initiationFeeYearly": 1,
"additionalMemberFee": 1,
"additionalMembersCap": 1,
"bookingHorizonDays": 1,
"benefits": {
"items": [
{}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"showSubscriptionDetails": true,
"allowPublicCancellation": true,
"isGroupMembership": true,
"areas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"membershipAreas": {
"items": [
"text"
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"tags": "MOST_POPULAR",
"settings": {
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
},
"subscriptionsCount": 1,
"hasOrHadMembers": true,
"slug": "text",
"taxRegionId": "text",
"allowedChargeTypes": [
"YEARLY"
],
"contactEmail": "text",
"oneTimePriceOptions": {
"items": [
{
"id": "text",
"price": 1,
"durationDays": 1,
"listed": true
}
],
"_links": {
"self": {
"href": "text"
}
},
"_total": 1
},
"priceChangeScope": "ALL_CURRENT",
"presalesEndDateChangeScope": "ADJUST_SUBSCRIPTIONS",
"adjustMonthlyGrantDates": true,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}w37Returns MembershipSettingsCollection
GET /apis/v2/memberships/{membershipId}/settings HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns MembershipSettingsCollection
{
"items": [
{
"id": "membership.priority",
"value": {}
}
],
"_total": 1,
"_links": {
"self": {
"href": "text"
}
}
}Last updated
Was this helpful?

