GET
/
datastores
curl --request GET \
  --url https://api.chift.eu/datastores \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "status": "active",
    "definition": {
      "columns": [
        {
          "name": "<string>",
          "title": "<string>",
          "type": "<string>",
          "optional": true
        }
      ],
      "search_column": "<string>"
    }
  }
]

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

200
application/json

Successful Response

The response is of type object[].