Update Booking Page Custom CSS via API
Overview
This guide demonstrates how to use the meetergo API to automatically update custom CSS for your booking page, which is useful for integrating with continuous integration (CI) pipelines.
Use Case: Maintain consistent branding and styling across booking pages through automated deployment processes.
Prerequisites
- A meetergo account with admin access
- API access credentials
Implementation
Step 1: Set up API keys
If you haven't already, follow the authentication guide to generate an API Key for this integration.
Step 2: Make API request
With your API key ready, prepare the request:
PATCH /company
Include the full CSS in the request body:
{
"customBookingCSS": "/* Valid CSS rules here */"
}
Tip: For best results, ensure that the CSS is minified and trimmed.
Upon a successful request, you will receive a 20x Response, and the CSS changes will be applied to your booking page within a few minutes.
Example
Using curl to send a PATCH request:
curl --request PATCH \
--url https://api.meetergo.com/company \
--header 'Authorization: Bearer <your_api_key>' \
--header 'Content-Type: application/json' \
--data '{"customBookingCSS": "/* Your custom CSS rules here */"}'
Support
For additional assistance, contact our support team.