Skip to main content
GET
/
integrations
Get list of integrations
curl --request GET \
  --url https://api.chift.eu/integrations \
  --header 'Authorization: Bearer <token>'
[
  {
    "integrationid": 123,
    "name": "<string>",
    "status": "active",
    "api": "Point of Sale",
    "logo_url": "<string>",
    "icon_url": "<string>",
    "post_connections": [
      {
        "id": "<string>",
        "title": "<string>",
        "optional": true,
        "resource": "<string>"
      }
    ],
    "credentials": [
      {
        "name": "<string>",
        "optional": false
      }
    ],
    "supported_countries": "BE",
    "local_agent": false
  }
]

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Query Parameters

status
enum<string> | null
Available options:
active,
inactive

Response

Successful Response

integrationid
integer
required
name
string
required
status
enum<string>
required
Available options:
active,
inactive
api
enum<string>
required
Available options:
Point of Sale,
eCommerce,
Accounting,
Invoicing,
Communication,
Banking,
Custom,
Payment,
Property Management System
logo_url
string
required
icon_url
string
required
post_connections
PostConnectionItem · object[] | null

List of post-connections that can be activated for this integration.

credentials
CredentialItem · object[] | null

List of credentials that must be specified to create a connection. Can be used if you want to pass credentials on connection creation. Not compatible with oAuth2 routes.

supported_countries
string[] | null

Country codes (ISO 3166-1 alpha-2) where this integration is supported. If not defined, the integration is supported globally.

Examples:

"BE"

"FR"

"ES"

local_agent
boolean
default:false

This field indicate if the integration is a local agent.

I