Booking automation example that demonstrates how to book consultations and retrieve consultation data without authentication.
Open this project in Intuned by clicking the button below.
This example demonstrates basic RPA (Robotic Process Automation) workflows:
- Book Consultations - Automates filling out and submitting a consultation booking form with various topics (automation, API integration, data extraction, or other)
- Get Consultations - Retrieves consultation bookings for a specific email address
To get started developing browser automation projects with Intuned, check out our concepts and terminology.
NOTE: All commands support
--helpflag to get more information about the command and its arguments and options.
uv sync# Book consultations with different topics
uv run intuned run api book-consultations .parameters/api/book-consultations/default.json
uv run intuned run api book-consultations .parameters/api/book-consultations/automation-consultation.json
uv run intuned run api book-consultations .parameters/api/book-consultations/api-integration-consultation.json
uv run intuned run api book-consultations .parameters/api/book-consultations/data-extraction-consultation.json
uv run intuned run api book-consultations .parameters/api/book-consultations/other-topic-consultation.json
# Get consultations by email
uv run intuned run api get-consultations-by-email .parameters/api/get-consultations-by-email/default.jsonuv run intuned provisionuv run intuned deployThis project uses Intuned browser SDK. For more information, check out the Intuned Browser SDK documentation.
/
├── api/
│ ├── book-consultations.py # Book a consultation
│ └── get-consultations-by-email.py # Get consultations for an email
├── .parameters/
│ └── api/
│ ├── book-consultations/
│ │ ├── default.json # Default booking (other topic)
│ │ ├── automation-consultation.json # Automation topic
│ │ ├── api-integration-consultation.json # API integration topic
│ │ ├── data-extraction-consultation.json # Data extraction topic
│ │ └── other-topic-consultation.json # Other topic
│ └── get-consultations-by-email/
│ └── default.json # Get consultations query
├── utils/
│ └── types_and_schemas.py # Type definitions and schemas
├── Intuned.jsonc # Intuned project configuration
└── pyproject.toml # Python dependencies
- Intuned Concepts: https://docs.intunedhq.com/docs/00-getting-started/introduction
- Intuned Browser SDK: https://docs.intunedhq.com/automation-sdks/overview
- CLI Documentation: https://docs.intunedhq.com/docs/05-references/cli
- Intuned llm.txt