Appointment, bookable appointment and slots operations
- Withdraw a contract idle period
Magicline API (1.10.0)
- Appointment, bookable appointment and slots operations
- Redeem checkin vouchers
- Class and slots operations
- Cross studio operations
- Get customers and contracts
- Retrieve customer accounting details
- Retrieve customer communication details
- Get device information
- Employee operations
- Debt collection operations
- Leads operations
- Manage membership contracts
- Membership operations
- Payment operations
- Get studio information
- Get trial offers information
https://open-api-demo.open-api.magicline.com/
https://redocly.sportalliance.com/_mock/apis/magicline/openapi/openapi/
Represents an idle period update request
Represents the temporal unit of an idle period
| Enum Value | Description |
|---|---|
| MONTH | Represents a monthly temporal unit of the idle period. Can be used for month pickers only. Supports only full months. |
| WEEK | Represents a weekly temporal unit of the idle period. Can be used for week pickers only. Supports only full weeks. |
| DAY | Represents a daily temporal unit of the idle period. Can be used for day pickers only. |
Duration term of the idle period. The field is related to the temporal unit
If true, the idle period has no defined end date. In that case, termValue and temporalUnit are empty.
- Demo tenant
https://open-api-demo.open-api.magicline.com/v1/memberships/{contractId}/self-service/idle-periods/{idlePeriodId}
- Mock server
https://redocly.sportalliance.com/_mock/apis/magicline/openapi/openapi/v1/memberships/{contractId}/self-service/idle-periods/{idlePeriodId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://open-api-demo.open-api.magicline.com/v1/memberships/{contractId}/self-service/idle-periods/{idlePeriodId}' \
-H 'Content-Type: multipart/form-data' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-F 'data[startDate]=2019-08-24' \
-F 'data[temporalUnit]=WEEK' \
-F 'data[termValue]=1' \
-F 'data[unlimited]=true' \
-F 'data[reasonId]=1' \
-F 'data[endDate]=2025-12-31' \
-F document=string{ "id": 203, "startDate": "2019-08-24", "endDate": "2019-08-24", "reason": "Vacation", "fee": { "amount": 20, "currency": "EUR" }, "unlimited": false, "documentUrl": "string", "state": "PENDING_VERIFICATION" }
- Demo tenant
https://open-api-demo.open-api.magicline.com/v1/memberships/{contractId}/self-service/idle-periods/{idlePeriodId}
- Mock server
https://redocly.sportalliance.com/_mock/apis/magicline/openapi/openapi/v1/memberships/{contractId}/self-service/idle-periods/{idlePeriodId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://open-api-demo.open-api.magicline.com/v1/memberships/{contractId}/self-service/idle-periods/{idlePeriodId}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'- Demo tenant
https://open-api-demo.open-api.magicline.com/v1/memberships/self-service/additional-modules
- Mock server
https://redocly.sportalliance.com/_mock/apis/magicline/openapi/openapi/v1/memberships/self-service/additional-modules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://open-api-demo.open-api.magicline.com/v1/memberships/self-service/additional-modules \
-H 'X-API-KEY: YOUR_API_KEY_HERE'OK
Payment frequencies of the additional module
Unique ID of the payment frequency of an additional module
Payment frequency type of an additional module
| Enum Value | Description |
|---|---|
| TERM_BASED | Represents that the additional module payment frequency is based on terms, with a possibly individual price per term. |
| NON_RECURRING | Represents that the additional module payment frequency is non recurring, meaning only one payment is necessary here. |
| FREE | Represents that the additional module payment frequency is free of charge. |
| RECURRING | Represents that the additional module payment frequency is recurring, meaning that the payment will take place every term. |
| MONTH_DAY | Represents that the additional module payment frequency is based on month days, with a possibly individual price per month day. |
Base price, used only for payment frequencies of type RECURRING
Month day to prices list, used for additional module payment frequency type MONTH_DAY
Term information of the additional module
Represents a term
Represents an additional module extension
Represents the trial period config of an additional module
[ { "id": 203, "name": "drink flat", "description": "drink flat", "imageUrl": "https://www.image.com", "paymentFrequencies": [ … ], "termInformation": { … }, "trialPeriodConfig": { … }, "rateCodes": [ … ] } ]