GET
/
apps
/
{appSlug}
/
datasets
/
{externalId}
/
schema-versions
/
{schemaVersion}
curl --request GET \
  --url https://api-v2.autoblocks.ai/apps/{appSlug}/datasets/{externalId}/schema-versions/{schemaVersion} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "externalId": "<string>",
  "latestRevisionId": "<string>",
  "schema": [
    {
      "id": "<string>",
      "name": "<string>",
      "required": false,
      "type": "<string>",
      "defaultValue": "<string>"
    }
  ],
  "schemaVersion": 123
}

Authorizations

Authorization
string
header
required

API Key created in the Autoblocks Webapp

Path Parameters

appSlug
string
required
externalId
string
required
schemaVersion
string
required

Response

200 - application/json

The dataset schema was returned successfully

The response is of type object.