GET
/
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": [],
    "credentials": []
  }
]

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>

An enumeration.

Available options:
active,
inactive

Response

200
application/json
Successful Response
integrationid
integer
required
name
string
required
status
enum<string>
required

An enumeration.

Available options:
active,
inactive
api
enum<string>
required

An enumeration.

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
object[]

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

credentials
object[]

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.