Connect

Choose a connection method

Start with the Postman tutorial in the Documentation
Connect manually
Get instructions how to establish a connection with Postman or curl.
Connect with Squidex CLI
Download the CLI and connect to this app to start backups, sync schemas or export content.
Connect to your App with SDK
Download an SDK and establish a connection to this app.
a Get a token using curl

{{connectHttpText}}

b Just use the following token

{{connectToken?.accessToken}}

2 Add the token as HTTP header to all requests

Authorization: Bearer [YOUR_TOKEN]

Tokens usally expire after 30days, but you can request multiple tokens.
1 Get the latest Squidex CLI

Download the CLI from Github The releases contains binaries for all major operation system and a small download if you have .NET Core installed.

2 Add <your Squidex CLI download directory> to your $PATH variable
3 Add your app name the CLI config

sq config add {{appName}} {{appName}}:{{client.id}} ${{client.secret}} -u ${{apiUrl.value}} You can manage configuration to multiple apps in the CLI and switch to an app.

4 Switch to your app in the CLI

sq config use {{appName}}

1 Install the .NET SDK

The SDK is available on nuget

dotnet add package Squidex.ClientLibrary

2 Create a client manager

{{connectLibraryText}}