Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Datasets

Datasets are modules of data that can be published to workspaces. Datasets are visualised in the Matatika app following the Chart.js specifications.


Objects

Dataset

Path Type Format Description
id String Version 4 UUID The dataset ID
published String ISO 8601 timestamp The instant the dataset was published
alias String   The dataset alias
workspaceId String Version 4 UUID The workspace ID of the published dataset
source String   The channel ID where the dataset was initially published to
title String   The dataset title
description String   The dataset description (may contain markdown)
questions String   The dataset questions
rawData String JSON The dataset raw data
visualisation String JSON The dataset visualisation metadata. More Info
metadata String JSON The dataset metadata. More Info
query String SQL statement The dataset query. More Info
likeCount Integer   The number of likes the dataset has received
likedByProfiles Array of Member   The members that have liked the dataset
commentCount Integer   The number of comments the dataset has received
viewCount Integer   The number of views the dataset has received
created String ISO 8601 timestamp The instant the dataset was create
score Float   The dataset score used to determine its position in the workspace Feed
{
  "id" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "published" : "2024-04-10T14:19:19.082368",
  "alias" : "sit-generated-dataset",
  "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
  "source" : "@sit+prod",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "descriptionContentType" : "text/plain",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;",
  "likeCount" : 0,
  "likedByProfiles" : [ ],
  "commentCount" : 0,
  "viewCount" : 0,
  "created" : "2024-04-10T14:19:19.082368",
  "score" : 1.0,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"
    },
    "delete dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "DELETE"
    },
    "edit dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "PATCH"
    },
    "data" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/data",
      "type" : "GET"
    },
    "source" : {
      "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
      "type" : "GET"
    },
    "new comment" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/comments",
      "type" : "POST"
    },
    "add like" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like",
      "type" : "PUT"
    },
    "add view" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view",
      "type" : "PUT"
    },
    "new alert" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/alerts"
    },
    "add subscription" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/subscriptions"
    },
    "new message" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"
    }
  },
  "_embedded" : {
    "source" : {
      "name" : "@sit+prod",
      "description" : "[email protected] Channel"
    }
  }
}

Dataset Message

Path Type Format Description
id String Version 4 UUID The dataset message ID (shared with the resulting notification)
recipientId String   The recipient profile ID
message String   The dataset message content
datasetId String Version 4 UUID The message subject dataset ID
{
  "id" : "32b08fce-f40c-4c3b-8d3d-f3134dffa891",
  "recipientId" : "auth0|5eb0327cbfd7490bff55feeb",
  "message" : "SIT-generated dataset message [2024-04-10T15:19:22.555348]",
  "datasetId" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "_links" : {
    "notification" : {
      "href" : "https://catalog.matatika.com/api/notifications/32b08fce-f40c-4c3b-8d3d-f3134dffa891"
    }
  }
}

Requests

See Also


View all datasets in a workspace

GET

/api/workspaces/{workspace-id}/datasets

Returns all datasets in the workspace {workspace-id}.

Prerequisites

  • The user must be a member of the workspace {workspace-id}

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Dataset collection with HAL links.

{
  "_embedded" : {
    "datasets" : [ {
      "id" : "23fdcf18-52fe-4429-9b91-4750004fa45b",
      "published" : "2024-04-10T14:19:23.202347",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
      "description" : "This dataset was created during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 0,
      "likedByProfiles" : [ ],
      "commentCount" : 0,
      "viewCount" : 0,
      "created" : "2024-04-10T14:19:23.202347",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/comments",
          "type" : "POST"
        },
        "add like" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/like",
          "type" : "PUT"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    }, {
      "id" : "335f9642-a304-4fcf-8204-657916de2763",
      "published" : "2024-04-10T14:19:23.346459",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
      "description" : "This dataset was created during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 0,
      "likedByProfiles" : [ ],
      "commentCount" : 0,
      "viewCount" : 0,
      "created" : "2024-04-10T14:19:23.346459",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/comments",
          "type" : "POST"
        },
        "add like" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/like",
          "type" : "PUT"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    }, {
      "id" : "24e0496a-d40d-4886-8347-317ef2df2060",
      "published" : "2024-04-10T14:19:23.521021",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
      "description" : "This dataset was created during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 0,
      "likedByProfiles" : [ ],
      "commentCount" : 0,
      "viewCount" : 0,
      "created" : "2024-04-10T14:19:23.521021",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/comments",
          "type" : "POST"
        },
        "add like" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/like",
          "type" : "PUT"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets?page=0&size=20"
    }
  },
  "page" : {
    "size" : 20,
    "totalElements" : 3,
    "totalPages" : 1,
    "number" : 0
  }
}

View all liked datasets in a workspace

GET

/api/workspaces/{workspace-id}/liked

Returns all datasets in the workspace {workspace-id} liked by the authenticated profile.

Prerequisites

  • The user must be a member of the workspace {workspace-id}

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/liked' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/liked"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Dataset collection with HAL links.

{
  "_embedded" : {
    "datasets" : [ {
      "id" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "published" : "2024-04-10T14:19:21.169826",
      "alias" : "sit-generated-dataset",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:21.079883]",
      "description" : "This dataset was edited during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 1,
      "likedByProfiles" : [ {
        "id" : "auth0|5eb0327cbfd7490bff55feeb",
        "name" : "[email protected]",
        "handle" : "@sit+prod"
      } ],
      "commentCount" : 0,
      "viewCount" : 1,
      "created" : "2024-04-10T14:19:19.082368",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/comments",
          "type" : "POST"
        },
        "remove like" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like",
          "type" : "DELETE"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/liked?page=0&size=20"
    }
  },
  "page" : {
    "size" : 20,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

View datasets by channel

GET

/api/channels/{channel-id}/datasets

Returns datasets by the channel {channel-id}.

Prerequisites

  • Channel {channel-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f/datasets' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f/datasets"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Dataset collection with HAL links.

{
  "_embedded" : {
    "datasets" : [ {
      "id" : "23fdcf18-52fe-4429-9b91-4750004fa45b",
      "published" : "2024-04-10T14:19:23.202347",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
      "description" : "This dataset was created during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 0,
      "likedByProfiles" : [ ],
      "commentCount" : 0,
      "viewCount" : 0,
      "created" : "2024-04-10T14:19:23.202347",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/comments",
          "type" : "POST"
        },
        "add like" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/like",
          "type" : "PUT"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/23fdcf18-52fe-4429-9b91-4750004fa45b/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    }, {
      "id" : "335f9642-a304-4fcf-8204-657916de2763",
      "published" : "2024-04-10T14:19:23.346459",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
      "description" : "This dataset was created during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 0,
      "likedByProfiles" : [ ],
      "commentCount" : 0,
      "viewCount" : 0,
      "created" : "2024-04-10T14:19:23.346459",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/comments",
          "type" : "POST"
        },
        "add like" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/like",
          "type" : "PUT"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/335f9642-a304-4fcf-8204-657916de2763/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    }, {
      "id" : "24e0496a-d40d-4886-8347-317ef2df2060",
      "published" : "2024-04-10T14:19:23.521021",
      "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
      "source" : "@sit+prod",
      "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
      "description" : "This dataset was created during a SIT run.",
      "descriptionContentType" : "text/plain",
      "questions" : "What questions might this dataset help answer?",
      "query" : "SELECT * FROM table_name;",
      "likeCount" : 0,
      "likedByProfiles" : [ ],
      "commentCount" : 0,
      "viewCount" : 0,
      "created" : "2024-04-10T14:19:23.521021",
      "score" : 1.0,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060"
        },
        "delete dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060",
          "type" : "DELETE"
        },
        "edit dataset" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060",
          "type" : "PATCH"
        },
        "data" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/data",
          "type" : "GET"
        },
        "source" : {
          "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
          "type" : "GET"
        },
        "new comment" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/comments",
          "type" : "POST"
        },
        "add like" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/like",
          "type" : "PUT"
        },
        "add view" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/view",
          "type" : "PUT"
        },
        "new alert" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/alerts"
        },
        "add subscription" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/subscriptions"
        },
        "new message" : {
          "href" : "https://catalog.matatika.com/api/datasets/24e0496a-d40d-4886-8347-317ef2df2060/messages"
        }
      },
      "_embedded" : {
        "source" : {
          "name" : "@sit+prod",
          "description" : "[email protected] Channel",
          "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f/datasets?page=0&size=20"
    }
  },
  "page" : {
    "size" : 20,
    "totalElements" : 3,
    "totalPages" : 1,
    "number" : 0
  }
}

View a dataset

GET

/api/datasets/{dataset-id}

Returns the dataset {dataset-id}.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Dataset with HAL links.

{
  "id" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "published" : "2024-04-10T14:19:19.082368",
  "alias" : "sit-generated-dataset",
  "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
  "source" : "@sit+prod",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "descriptionContentType" : "text/plain",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;",
  "likeCount" : 0,
  "likedByProfiles" : [ ],
  "commentCount" : 0,
  "viewCount" : 0,
  "created" : "2024-04-10T14:19:19.082368",
  "score" : 1.0,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"
    },
    "delete dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "DELETE"
    },
    "edit dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "PATCH"
    },
    "data" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/data",
      "type" : "GET"
    },
    "source" : {
      "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
      "type" : "GET"
    },
    "new comment" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/comments",
      "type" : "POST"
    },
    "add like" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like",
      "type" : "PUT"
    },
    "add view" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view",
      "type" : "PUT"
    },
    "new alert" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/alerts"
    },
    "add subscription" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/subscriptions"
    },
    "new message" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"
    }
  },
  "_embedded" : {
    "source" : {
      "name" : "@sit+prod",
      "description" : "[email protected] Channel"
    }
  }
}

View a dataset in a workspace

GET

/api/workspaces/{workspace-id}/datasets/{dataset-id-or-alias}

Returns the dataset {dataset-id-or-alias} in the workspace {workspace-id}.

Prerequisites

  • The user must be a member of the workspace {workspace-id}
  • Dataset {dataset-id-or-alias} must exist within the workspace {workspace-id}

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets/sit-generated-dataset' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets/sit-generated-dataset"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Dataset with HAL links.

{
  "id" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "published" : "2024-04-10T14:19:19.082368",
  "alias" : "sit-generated-dataset",
  "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
  "source" : "@sit+prod",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "descriptionContentType" : "text/plain",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;",
  "likeCount" : 0,
  "likedByProfiles" : [ ],
  "commentCount" : 0,
  "viewCount" : 0,
  "created" : "2024-04-10T14:19:19.082368",
  "score" : 1.0,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"
    },
    "delete dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "DELETE"
    },
    "edit dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "PATCH"
    },
    "data" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/data",
      "type" : "GET"
    },
    "source" : {
      "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
      "type" : "GET"
    },
    "new comment" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/comments",
      "type" : "POST"
    },
    "add like" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like",
      "type" : "PUT"
    },
    "add view" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view",
      "type" : "PUT"
    },
    "new alert" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/alerts"
    },
    "add subscription" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/subscriptions"
    },
    "new message" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"
    }
  },
  "_embedded" : {
    "source" : {
      "name" : "@sit+prod",
      "description" : "[email protected] Channel",
      "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
    }
  }
}

View the data of a dataset

GET

/api/datasets/{dataset-id}/data

Returns the data of the dataset {dataset-id}.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Headers

Accept
Media Type(s) Description
application/json */* Sets the response content type format to JSON
text/csv Sets the response content type format to CSV

Defaults to application/json (given Accept */* or no Accept header).

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/a4fd6ec2-6f3c-48d2-bd39-5edc39c98a11/data' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/a4fd6ec2-6f3c-48d2-bd39-5edc39c98a11/data"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

  • 200: The dataset data (defaults to JSON format).
[ {
  "gitflixusers.name" : "John",
  "gitflixusers.age" : "23"
}, {
  "gitflixusers.name" : "George",
  "gitflixusers.age" : "42"
}, {
  "gitflixusers.name" : "Mary",
  "gitflixusers.age" : "19"
}, {
  "gitflixusers.name" : "Kate",
  "gitflixusers.age" : "52"
}, {
  "gitflixusers.name" : "Bill",
  "gitflixusers.age" : "35"
}, {
  "gitflixusers.name" : "Fiona",
  "gitflixusers.age" : "63"
} ]
  • 204: No response body provided.

Publish a dataset to a workspace

POST

/api/workspaces/{workspace-id}/datasets

Publishes a dataset to the workspace {workspace-id}.

Prerequisites

  • The user must be a member of the workspace {workspace-id}

Request

Making the request with an existing id or alias will result in the respective dataset being overwritten.

Dataset resource.

{
  "alias" : "sit-generated-dataset",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;"
}

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets' -i -X POST \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/hal+json; charset=ISO-8859-1' \
    -d '{
  "alias" : "sit-generated-dataset",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;"
}'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/workspaces/eadd570c-7646-4e1e-8d10-6534e1f81be0/datasets"

data = {
  "alias" : "sit-generated-dataset",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;"
}
headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("POST", url, headers=headers, data=data)

print(response.text.encode('utf8'))

Response

200 OK / 201 Created

Dataset with HAL links.

{
  "id" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "published" : "2024-04-10T14:19:19.082368415",
  "alias" : "sit-generated-dataset",
  "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
  "source" : "@sit+prod",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:18.984990]",
  "description" : "This dataset was created during a SIT run.",
  "descriptionContentType" : "text/plain",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;",
  "likeCount" : 0,
  "likedByProfiles" : [ ],
  "commentCount" : 0,
  "viewCount" : 0,
  "created" : "2024-04-10T14:19:19.082368115",
  "score" : 1.0,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"
    },
    "delete dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "DELETE"
    },
    "edit dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "PATCH"
    },
    "data" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/data",
      "type" : "GET"
    },
    "source" : {
      "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
      "type" : "GET"
    },
    "new comment" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/comments",
      "type" : "POST"
    },
    "add like" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like",
      "type" : "PUT"
    },
    "add view" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view",
      "type" : "PUT"
    },
    "new alert" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/alerts"
    },
    "add subscription" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/subscriptions"
    },
    "new message" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"
    }
  },
  "_embedded" : {
    "source" : {
      "name" : "@sit+prod",
      "description" : "[email protected] Channel"
    }
  }
}

Edit a dataset

PATCH

/api/datasets/{dataset-id}

Edits the dataset {dataset-id}.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Body

This request can update one or more of the dataset fields at once. With a single request, it is possible to - for example - edit the dataset title only, or both title and description (shown below).

{
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:21.079883]",
  "description" : "This dataset was edited during a SIT run."
}

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192' -i -X PATCH \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/hal+json; charset=ISO-8859-1' \
    -d '{
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:21.079883]",
  "description" : "This dataset was edited during a SIT run."
}'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"

data = {
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:21.079883]",
  "description" : "This dataset was edited during a SIT run."
}
headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("PATCH", url, headers=headers, data=data)

print(response.text.encode('utf8'))

Response

200 OK

Dataset with HAL links.

{
  "id" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "published" : "2024-04-10T14:19:21.169825755",
  "alias" : "sit-generated-dataset",
  "workspaceId" : "eadd570c-7646-4e1e-8d10-6534e1f81be0",
  "source" : "@sit+prod",
  "title" : "SIT-Generated Dataset [2024-04-10T15:19:21.079883]",
  "description" : "This dataset was edited during a SIT run.",
  "descriptionContentType" : "text/plain",
  "questions" : "What questions might this dataset help answer?",
  "query" : "SELECT * FROM table_name;",
  "likeCount" : 0,
  "likedByProfiles" : [ ],
  "commentCount" : 0,
  "viewCount" : 0,
  "created" : "2024-04-10T14:19:19.082368",
  "score" : 1.0,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"
    },
    "delete dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "DELETE"
    },
    "edit dataset" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192",
      "type" : "PATCH"
    },
    "data" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/data",
      "type" : "GET"
    },
    "source" : {
      "href" : "https://catalog.matatika.com/api/channels/6ac0d80c-da0a-4b30-af27-4cee4940827f",
      "type" : "GET"
    },
    "new comment" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/comments",
      "type" : "POST"
    },
    "add like" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like",
      "type" : "PUT"
    },
    "add view" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view",
      "type" : "PUT"
    },
    "new alert" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/alerts"
    },
    "add subscription" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/subscriptions"
    },
    "new message" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"
    }
  },
  "_embedded" : {
    "source" : {
      "name" : "@sit+prod",
      "description" : "[email protected] Channel",
      "picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
    }
  }
}

Record a view of a dataset

PUT

/api/datasets/{dataset-id}/view

“Adds a view to the dataset {dataset-id}.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view' -i -X PUT \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/view"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("PUT", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

No response body provided.


Record a like of a dataset

PUT

/api/datasets/{dataset-id}/like

Records a like of the dataset {dataset-id} from the authenticated user profile.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like' -i -X PUT \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("PUT", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

No response body provided.


Remove a like from a dataset

DELETE

/api/datasets/{dataset-id}/like

Removes a like of the dataset {dataset-id} from the authenticated user profile.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like' -i -X DELETE \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/like"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("DELETE", url, headers=headers)

print(response.text.encode('utf8'))

Response

204 No Content

No response body provided.


Initialise a new dataset message

POST

/api/datasets/{dataset-id}/messages

Initialises a new dataset message for the dataset {dataset-id}

Prerequisites

  • Dataset {dataset-id} must exist

Requests

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages' -i -X POST \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("POST", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Dataset Message with HAL links.

{
  "id" : "32b08fce-f40c-4c3b-8d3d-f3134dffa891",
  "datasetId" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "_links" : {
    "create message" : {
      "href" : "https://catalog.matatika.com/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages/32b08fce-f40c-4c3b-8d3d-f3134dffa891"
    }
  }
}

Create or update a dataset message

PUT

/api/datasets/{dataset-id}/messages/{message-id}

Creates or updates the dataset message {message-id} for the dataset {dataset-id}. This appears as DATASET_MESSAGE notification for the recipient.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Body

Dataset Message resource.

{
  "recipientId" : "auth0|5eb0327cbfd7490bff55feeb",
  "message" : "SIT-generated dataset message [2024-04-10T15:19:22.555348]"
}

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages/32b08fce-f40c-4c3b-8d3d-f3134dffa891' -i -X PUT \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/hal+json; charset=ISO-8859-1' \
    -d '{
  "recipientId" : "auth0|5eb0327cbfd7490bff55feeb",
  "message" : "SIT-generated dataset message [2024-04-10T15:19:22.555348]"
}'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192/messages/32b08fce-f40c-4c3b-8d3d-f3134dffa891"

data = {
  "recipientId" : "auth0|5eb0327cbfd7490bff55feeb",
  "message" : "SIT-generated dataset message [2024-04-10T15:19:22.555348]"
}
headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("PUT", url, headers=headers, data=data)

print(response.text.encode('utf8'))

Response

200 OK / 201 Created

Dataset Message with HAL links.

{
  "id" : "32b08fce-f40c-4c3b-8d3d-f3134dffa891",
  "recipientId" : "auth0|5eb0327cbfd7490bff55feeb",
  "message" : "SIT-generated dataset message [2024-04-10T15:19:22.555348]",
  "datasetId" : "c57a792b-c1bb-44d3-8f17-cd2f532a2192",
  "_links" : {
    "notification" : {
      "href" : "https://catalog.matatika.com/api/notifications/32b08fce-f40c-4c3b-8d3d-f3134dffa891"
    }
  }
}

Delete a dataset

DELETE

/api/datasets/{dataset-id}

Deletes the dataset {dataset-id}.

Prerequisites

  • Dataset {dataset-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192' -i -X DELETE \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/datasets/c57a792b-c1bb-44d3-8f17-cd2f532a2192"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("DELETE", url, headers=headers)

print(response.text.encode('utf8'))

Response

204 No Content

No response body provided.



Further Reading: