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": false
        }
      ],
      "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>

An enumeration.

Available options:
active,
inactive

Response

200
application/json
Successful Response
id
string
required
name
string
required
definition
object
required
status
enum<string>
default:active

An enumeration.

Available options:
active,
inactive