https://github.com/kentico/xperience-by-kentico-zapier
Xperience by Kentico integration that enables seamless connectivity between a wide range of web applications using Zapier.
https://github.com/kentico/xperience-by-kentico-zapier
asp-net-core dotnet xperience-by-kentico xperience-by-kentico-integrations
Last synced: 7 months ago
JSON representation
Xperience by Kentico integration that enables seamless connectivity between a wide range of web applications using Zapier.
- Host: GitHub
- URL: https://github.com/kentico/xperience-by-kentico-zapier
- Owner: Kentico
- License: mit
- Created: 2024-01-08T08:40:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-11T08:12:11.000Z (7 months ago)
- Last Synced: 2025-04-12T19:09:45.817Z (7 months ago)
- Topics: asp-net-core, dotnet, xperience-by-kentico, xperience-by-kentico-integrations
- Language: C#
- Homepage:
- Size: 54.6 MB
- Stars: 1
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/Contributing-Setup.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Xperience by Kentico Zapier
[](https://github.com/Kentico/.github/blob/main/SUPPORT.md#full-support) [](https://github.com/Kentico/xperience-by-kentico-zapier/actions/workflows/ci.yml) [](https://www.nuget.org/packages/Kentico.Xperience.Zapier)
## Description
Zapier integration enables seamless connectivity between a wide range of web applications, allowing users to create automated workflows, or "Zaps," that trigger actions across different platforms based on specified conditions and triggers. This integration empowers users to streamline repetitive tasks, synchronize data, and improve productivity without requiring any coding knowledge, making it an invaluable tool for individuals and businesses alike.
## Screenshots





## Library Version Matrix
| Xperience Version | Library Version |
| ----------------- | --------------- |
| >= 30.0.\* | >= 2.3.0 |
| >= 29.7.\* | >= 2.2.0 |
| >= 29.5.\* | >= 2.1.0 |
| >= 29.3.\* | >= 2.0.0 |
| >= 29.0.\* | 1.0.0 |
## Zapier cli application
The Zapier cli app version 1.0.1 will initially be beta flagged, but this is the full version. The beta flag is just a zapier flag for new app integrations. This Flag will disappear after 90 days.
### Dependencies
- [ASP.NET Core 8.0](https://dotnet.microsoft.com/en-us/download)
- [Xperience by Kentico](https://docs.xperience.io/xp/changelog)
## Package Installation
Add the package to your application using the .NET CLI
```powershell
dotnet add package Kentico.Xperience.Zapier
```
## Quick Start (with trigger example)
1. Register required services into DI container.
```csharp
// Program.cs
var builder = WebApplication.CreateBuilder(args);
// ...
builder.Services.AddKenticoZapier();
// ...
var app = builder.Build();
// ...
app.UseAuthorization() //place under app.UseKentico()
```
2. Configure Zapier using CMSZapierConfiguration in appsettings.json of your application.
- Specify allowed objects that can interact with your Zapier triggers and handlers.
```csharp
// appsettings.json
"CMSZapierConfiguration": {
"AllowedObjects": [
"cms.user",
"CMS.EventLog",
// ...
"DancingGoat.Banner",
"DancingGoat.ConfirmationPage",
// ...
"BizForm.DancingGoatContactUs",
]
}
```
3. In the administration go to UI application 'Zapier' located at 'Configuration' section.
4. On the API Key menu generate new API key for your Zapier application.
- Save the API key as it will appear only once.
5. Open your Zapier UI and create new Zap.
- As a trigger pick _Xperience by Kentico_ application
- In the first step select event of your choice
- Then you have to connect an Account using URL of your website (without trailing slash) and your generated API Key from previous step
- In the third step you need to set configuration for your trigger
- Test your trigger
6. Now you can create your own workflow eg. connect with Gmail, Microsoft Teams, ...
- You can find more information on
7. Publication of your Zap will create an object in your Xperience by Kentico application.
- You can find the list of created triggers at Zapier application at page _List of Zapier triggers_
## Full Instructions
View the [Usage Guide](./docs/Usage-Guide.md) for more detailed instructions.
## Contributing
To see the guidelines for Contributing to Kentico open source software, please see [Kentico's `CONTRIBUTING.md`](https://github.com/Kentico/.github/blob/main/CONTRIBUTING.md) for more information and follow the [Kentico's `CODE_OF_CONDUCT`](https://github.com/Kentico/.github/blob/main/CODE_OF_CONDUCT.md).
Instructions and technical details for contributing to **this** project can be found in [Contributing Setup](./docs/Contributing-Setup.md).
## License
Distributed under the MIT License. See [`LICENSE.md`](./LICENSE.md) for more information.
## Support
[](https://github.com/Kentico/.github/blob/main/SUPPORT.md#full-support)
This project has **Full support by 7-day bug-fix policy**.
See [`SUPPORT.md`](https://github.com/Kentico/.github/blob/main/SUPPORT.md#full-support) for more information.
For any security issues see [`SECURITY.md`](https://github.com/Kentico/.github/blob/main/SECURITY.md).