flotiq-page-824-feature-contact-u-yovpp9.dev.cdwv.pl
Open in
urlscan Pro
88.199.97.11
Public Scan
URL:
https://flotiq-page-824-feature-contact-u-yovpp9.dev.cdwv.pl/
Submission: On October 02 via automatic, source certstream-suspicious — Scanned from PL
Submission: On October 02 via automatic, source certstream-suspicious — Scanned from PL
Form analysis
0 forms found in the DOMText Content
Get Flotiq Features Features SolutionsPricing Resources Become a PartnerBook a DemoLog in Try Flotiq for free Request a demo|Become a Partner Log in Try Flotiq for free ENJOY FAST AND PAINLESS CONTENT DELIVERY TO ANY CHANNEL WITH OUR HEADLESS CMS PLATFORM. Get started for free Free forever — no credit card required SEE HOW YOU CAN CREATE WITH ANY PROGRAMMING LANGUAGE JavaScriptPHPGatsbyNextJSReactAngular // Import Your Personal API SDK import { ApiClient, ContentProjectApi } from "../lib/flotiq-sdk"; // Configure API ApiClient.instance .authentications['HeaderApiKeyAuth'] .apiKey = process.env.FLOTIQ_API_KEY; // Request projects const ProjectsAPI = new ContentProjectApi(); const projects = await ProjectsAPI.listProject({ limit: 10 }); console.log(`Projects count: ${projects.count}`); projects.data.map((project) => { console.log(`${project.id}: ${project.name}`); }); <?php // Import Your Personal API SDK require_once('lib/flotiq-sdk/vendor/autoload.php'); // Configure API $config = OpenAPI\Client\Configuration::getDefaultConfiguration() ->setApiKey('X-AUTH-TOKEN', '__FLOTIQ_API_KEY__'); // Request projects $projectsApi = new OpenAPI\Client\Api\ContentProjectApi(null, $config); $projects = $projectsApi->listProject(1, 10); echo "Projects count: {$projects->getTotalCount()}"; foreach ($projects->getData() as $project) { echo $project->getId(); echo $project->getName(); } // File: /src/pages/{project.slug}.js // Using gatsby-source-flotiq plugin import React from 'react'; import { graphql } from 'gatsby'; const ProjectPage = ({ data }) => { const { project } = data; return ( <article> <h2>{project.name}</h2> <p>{project.description}</p> </article> ); }; export const query = graphql` query($slug: String) { project(slug: {eq: $slug}, status: {eq: "public"}) { name description } } `; export default ProjectPage; // File: pages/projects/[id].js // Using auto generated SDK package import { ApiClient, ContentProjectApi } from '../../lib/flotiq-sdk'; ApiClient.instance .authentications['HeaderApiKeyAuth'] .apiKey = process.env.FLOTIQ_API_KEY; export async function getStaticPaths() { const ProjectsApi = new ContentProjectApi(); const projects = await ProjectsApi.listProject({ limit: 1000 }); // ... } export async function getStaticProps({ params }) { const ProjectsApi = new ContentProjectApi(); const project = await ProjectsApi.getProject(params.id) // ... } export default function Project({ project }) { return ( <article> <h2>{project.name}</h2> <p>{project.description}</p> </article> ) } import { useEffect, useState } from "react"; import { ContentProjectApi } from "./lib/flotiq-sdk/"; function App() { const [projects, setProjects] = useState([]); const [total, setTotal] = useState(); useEffect(() => { (async function() { const projectsApi = new ContentProjectApi(); const apiResponse = await (projectsApi.listProject()); setProjects(apiResponse.data); setTotal(apiResponse.total_count); })(); }, []); return ( <> <h1>Projects {total}</h1> { projects.map((project) => ( <div key={project.id}> <h2>{project.name}</h2> <p>{project.description}</p> </div> ))} </> ); } export default App; import { Component, OnInit } from '@angular/core'; import { ContentProjectService, Project } from "flotiq"; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent implements OnInit{ projects: Project[] | undefined; total = 0; // Inject your Personal API constructor(private readonly projectsService: ContentProjectService) { } ngOnInit() { // Use available methods and response this.projectsService.listProject().subscribe((res) => { this.total = res.total_count this.projects = res.data; }) } } PUBLISH AND SYNC WITH ANY DEVICE Flotiq is an API-first content management platform that works with any technology, framework, and language. Start for free FEATURE-PACKED TRY FLOTIQ OUT AND SIMPLIFY YOUR WORKFLOW. NOW EVERY MEMBER OF YOUR TEAM CAN SAVE TIME. Previous Easy-to-use content editing Learn more Easy-to-use content editing User-friendly editing workflow Learn more Flotiq forms Learn more Flotiq forms Create any kind of form with a few simple steps Learn more Content versioning Learn more Content versioning All content changes are automatically versioned Learn more Content governance Learn more Content governance Be as flexible about your content model as you want, without asking the developers for help Learn more Separate content from presentation Learn more Separate content from presentation Enable content reuse and omni-channel experiences Learn more Full-text search Learn more Full-text search Built-in Search API Learn more Quickly integrate with other tools Learn more Quickly integrate with other tools Compatibility with many platforms Learn more Asset management, simplified Learn more Asset management, simplified Store all images in one place Learn more Powerful API generator Learn more Powerful API generator An API that is generated from your content model Learn more Generate SDKs Learn more Generate SDKs Jump-start your projects with SDKs Learn more Code samples Learn more Code samples Quick start Learn more API sandbox Learn more API sandbox Jump-start your projects with Postman API sandboxes Learn more Custom workflows Learn more Custom workflows Custom workflows Learn more Easy-to-use content editing Learn more Easy-to-use content editing User-friendly editing workflow Learn more Flotiq forms Learn more Flotiq forms Create any kind of form with a few simple steps Learn more Content versioning Learn more Content versioning All content changes are automatically versioned Learn more Content governance Learn more Content governance Be as flexible about your content model as you want, without asking the developers for help Learn more Separate content from presentation Learn more Separate content from presentation Enable content reuse and omni-channel experiences Learn more Full-text search Learn more Full-text search Built-in Search API Learn more Quickly integrate with other tools Learn more Quickly integrate with other tools Compatibility with many platforms Learn more Asset management, simplified Learn more Asset management, simplified Store all images in one place Learn more Powerful API generator Learn more Powerful API generator An API that is generated from your content model Learn more Generate SDKs Learn more Generate SDKs Jump-start your projects with SDKs Learn more Code samples Learn more Code samples Quick start Learn more API sandbox Learn more API sandbox Jump-start your projects with Postman API sandboxes Learn more Custom workflows Learn more Custom workflows Custom workflows Learn more Easy-to-use content editing Learn more Easy-to-use content editing User-friendly editing workflow Learn more Flotiq forms Learn more Flotiq forms Create any kind of form with a few simple steps Learn more Content versioning Learn more Content versioning All content changes are automatically versioned Learn more Content governance Learn more Content governance Be as flexible about your content model as you want, without asking the developers for help Learn more Separate content from presentation Learn more Separate content from presentation Enable content reuse and omni-channel experiences Learn more Full-text search Learn more Full-text search Built-in Search API Learn more Quickly integrate with other tools Learn more Quickly integrate with other tools Compatibility with many platforms Learn more Asset management, simplified Learn more Asset management, simplified Store all images in one place Learn more Powerful API generator Learn more Powerful API generator An API that is generated from your content model Learn more Generate SDKs Learn more Generate SDKs Jump-start your projects with SDKs Learn more Code samples Learn more Code samples Quick start Learn more API sandbox Learn more API sandbox Jump-start your projects with Postman API sandboxes Learn more Custom workflows Learn more Custom workflows Custom workflows Learn more Next See all features BETTER FLOW FOR DEVS AND MARKETERS A headless CMS platform that brings two worlds together to communicate and create in harmony. Explore Docs DEVS Choose your favourite frameworks and backends and perform your tasks more efficiently. Python .NET JAVA PHP GO NodeJS Gatsby Scully React Angular Open API Postman Netlify Heroku Python .NET JAVA PHP GO NodeJS Gatsby Scully React Angular Open API Postman Netlify Heroku Python .NET JAVA PHP GO NodeJS CONTENT MANAGERS Reduce chaos in your daily work. Remember - no coding necessary! Microsoft Power Automate Microsoft Power Apps Microsoft SharePoint Hubspot Microsoft Dynamics Pipedrive Zapier Microsoft Excel Microsoft Word Google Docs Google Sheets Microsoft Power Automate Microsoft Power Apps Microsoft SharePoint Hubspot Microsoft Dynamics Pipedrive Zapier Microsoft Excel Microsoft Word Google Docs Google Sheets Microsoft Power Automate Microsoft Power Apps Microsoft SharePoint Hubspot Microsoft Dynamics Pipedrive BUSINESS Unify your team around putting your product on the market. Microsoft Dynamics Pipedrive Trello Microsoft Azure Amazon Web Services Open API Microsoft Power Automate Microsoft Power Apps Salesforce Microsoft Dynamics Pipedrive Trello Microsoft Azure Amazon Web Services Open API Microsoft Power Automate Microsoft Power Apps Salesforce Microsoft Dynamics Pipedrive Trello Microsoft Azure Amazon Web Services Open API View all integrations YOU ARE IN A GOOD COMPANY! Previous Credit Agricole has recently successfully implemented the Flotiq Content Management System in the bank’s intranet. Flotiq provides a uniform way to access content and is the basis of a comprehensive intranet search engine aggregating multiple data sources. Magdalena Tarnas-Kaczmarek Director – internal communication department Flotiq allows me to setup websites for my clients to take full control of through the Flotiq Dashboard. It is incredibly easy to get started and they have incredible support! I love how easy it was to get started and if I got stuck I could always rely on a quick response on their Discord Server! Chris M. Self-employed Synapticare is a startup in the med-tech space, their aim is to simplify access to medical services. Synapticare development team used Flotiq to quickly develop a state-wide pharmacy directory with geo-localisation support. Flotiq allowed us to decrease the cost and time required to execute this project by 60%. Greg Kowalski Synapticare Inc Next COMMUNITY SUPPORT We are ready to support you! Discord FAQ Docs Feature request Roadmap START WORKING. TOGETHER. REACH COMMON FLOW WHICH JUST GETS THINGS DONE. Get started for free * * Download Flotiq App * * * Flotiq * Features * Solutions * Pricing * Book a demo * Contact us * Career * Resources * Blog * Docs * FAQ * Flotiq vs Contenful * Start with your personalized Flotiq SDK * Integrations * Education * Wordpress to Flotiq * Create Flotiq Forms * Build a static blog with Flotiq * Build a contact form * Zapier integrations * Flotiq Mobile Expo Download Flotiq App Flotiq * Features * Solutions * Pricing * Book a demo * Contact us * Career Resources * Blog * Docs * FAQ * Flotiq vs Contenful * Start with your personalized Flotiq SDK * Integrations Education * Wordpress to Flotiq * Create Flotiq Forms * Build a static blog with Flotiq * Build a contact form * Zapier integrations * Flotiq Mobile Expo © 2024 Flotiq Privacy PolicyTerms of ServiceCookie Policy By using our website you agree to our cookie policy.