GET
/
api
/
v2
/
public
/
datastore
/
config
/
:slug
curl --request GET \
  --url https://api.gocobalt.io/api/v2/public/datastore/config/:slug \
  --header 'linked_account_id: <linked_account_id>' \
  --header 'x-api-key: <api-key>'
[
    "key_store",
    "user_datastore"
]

This API retrieves a list of all config datastores.

Request description

Headers

linked_account_id
string
required

Unique customer identification id. For Eg: markwood@some_email.com

Path Parameters

slug
string
required

Application Slug. Eg: hubspot

Response description

An array object containing names of all config datastores for the speicified application slug.

[
    "key_store",
    "user_datastore"
]