Channels
Channels enable datasets to be categorised or grouped together. A single workspace can have multiple channels.
Objects
Channel
| Path | JSON Type | Format | Description |
|---|---|---|---|
id |
string |
Version 4 UUID | The channel ID |
creator |
object |
Member |
The channel creator |
workspace |
object |
Workspace |
The channel workspace |
created |
string |
ISO 8601 timestamp | The channel created at timestamp |
lastModified |
string |
ISO 8601 timestamp | The channel last modified timestamp |
name |
string |
The channel name | |
description |
string |
The channel description | |
picture |
string |
URL | The channel picture metadata |
{
"id" : "b30d569e-765a-47a9-bfce-41d1ed473516",
"name" : "SITChannel",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.272182",
"lastModified" : "2025-11-02T06:28:45.272182",
"description" : "SITChannel",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/scope/workspace"
}
}
}
Requests
- Initialise a channel
- View a channel
- View a channel in a workspace
- View all channels in a workspace
- Create or Update a channel in a workspace
- Delete a channel
- View all channels in your workspace news
- Add a dataset to a list channel
- Remove a dataset from a list channel
- Add workspace scope to a channel
- Withdraw workspace scope from a channel
See Also
Initialise a channel
POST
/api/channels/{channel-id}
Initialise a channel.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels' -i -X POST \
-H 'Content-Type: application/json' \
-d '{ }'
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels"
data = { }
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
200 OK
Channel with HAL links.
{
"id" : "5625f162-84e5-4d11-b78a-2b71d5f2cf16",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"created" : "2025-11-02T06:28:51.303769246",
"lastModified" : "2025-11-02T06:28:51.303769946",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"create channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
}
}
}
View a channel
GET
/api/channels/{channel-id}
Returns the channel {channel-id}.
Prerequisites
- Channel
{channel-id}must exist
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516' -i -X GET \
-H 'Content-Type: text/plain; charset=ISO-8859-1' \
-d '{}'
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
data = {}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
200 OK
Channel with HAL links.
{
"id" : "b30d569e-765a-47a9-bfce-41d1ed473516",
"name" : "SITChannel",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.272182",
"lastModified" : "2025-11-02T06:28:45.272182",
"description" : "SITChannel",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/scope/workspace"
}
}
}
View a channel in a workspace
GET
/api/workspaces/{workspace-id}/channels/{channel-id}
Returns a channel in the workspace {workspace-id}.
Prerequisites
- Workspace
{workspace-id}must exist - The user must be a member of the workspace
{workspace-id}
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516' -i -X GET \
-H 'Content-Type: text/plain; charset=ISO-8859-1' \
-d '{}'
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
data = {}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
200 OK
Channel with HAL links.
{
"id" : "b30d569e-765a-47a9-bfce-41d1ed473516",
"name" : "SITChannel",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.272182",
"lastModified" : "2025-11-02T06:28:45.272182",
"description" : "SITChannel",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/scope/workspace"
}
}
}
View all channels in a workspace
GET
/api/workspaces/{workspace-id}/channels/{channel-id}?type={type}&source={source}&containsDataset={datasetId}
Returns all channels in the workspace {workspace-id}.
Request
Query Parameters
| Parameter | Required | Format | Default Value | Description |
|---|---|---|---|---|
type |
No | string | None | Return channels by types: list or source |
source |
No | string | None | Return channels by source: profile or workspace |
containsDataset |
No | string | None | Adds a containsDataset boolean field to all channels returning if it contains the dataset |
Prerequisites
- Workspace
{workspace-id}must exist - The user must be a member of the workspace
{workspace-id}
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels' -i -X GET \
-H 'Content-Type: text/plain; charset=ISO-8859-1' \
-d '{}'
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels"
data = {}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
200 OK
Channel collection with HAL links.
{
"_embedded" : {
"channels" : [ {
"id" : "b30d569e-765a-47a9-bfce-41d1ed473516",
"name" : "SITChannel",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.272182",
"lastModified" : "2025-11-02T06:28:45.272182",
"description" : "SITChannel",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/scope/workspace"
}
}
}, {
"id" : "c7d75fc8-3f4e-4904-8728-72e51492c4d8",
"name" : "SITChannelTwo",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.373607",
"lastModified" : "2025-11-02T06:28:45.373608",
"description" : "SITChannelTwo",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/c7d75fc8-3f4e-4904-8728-72e51492c4d8"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/c7d75fc8-3f4e-4904-8728-72e51492c4d8/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/c7d75fc8-3f4e-4904-8728-72e51492c4d8/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/c7d75fc8-3f4e-4904-8728-72e51492c4d8"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/c7d75fc8-3f4e-4904-8728-72e51492c4d8"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/c7d75fc8-3f4e-4904-8728-72e51492c4d8/scope/workspace"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels?page=0&size=10&sort=name,asc"
}
},
"page" : {
"size" : 10,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Create or Update a channel in a workspace
PUT
/api/workspaces/{workspace-id}/channels/{channel-id}
Creates or Updates a channel in the workspace {workspace-id}.
This endpoint takes a {channel-id} (UUID) and based on the supplied value and the channels that already exist in the workspace, will update or create a channel accordingly.
Prerequisites
- Workspace
{workspace-id}must exist - The user must be a admin in the workspace
{workspace-id}
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"name" : "SITChannel",
"description" : "SITChannel"
}'
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
data = {
"name" : "SITChannel",
"description" : "SITChannel"
}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
200 OK / 201 Created
Channel with HAL links.
{
"id" : "b30d569e-765a-47a9-bfce-41d1ed473516",
"name" : "SITChannel",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.272181741",
"lastModified" : "2025-11-02T06:28:45.272182041",
"description" : "SITChannel",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516/scope/workspace"
}
}
}
Delete a channel
DELETE
/api/channels/{channel-id}
Delete a channel.
Prerequisites
- The user must be a admin of the workspace the channel is in.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516' -i -X DELETE \
-H 'Content-Type: text/plain; charset=ISO-8859-1' \
-d '{}'
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/b30d569e-765a-47a9-bfce-41d1ed473516"
data = {}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.
View all channels in your workspace news
GET
/api/channels/{channel-id}
Returns all channels in your news for the workspace.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/news/channels' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/news/channels"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Channels in your workspace news.
{
"_embedded" : {
"channels" : [ {
"id" : "3bb770f1-5ca7-409f-b39e-2525f4ab7c7d",
"name" : "SITChannel",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "WORKSPACE",
"type" : "SOURCE",
"created" : "2025-11-02T06:28:45.847798",
"lastModified" : "2025-11-02T06:28:45.847799",
"description" : "SITChannel",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"search" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/news?q=in:SITChannel"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels"
}
}
}
Add a dataset to a list channel
PUT
/api/channels/{channel-id}/datasets/{dataset-id}
Adds a dataset to a channel with type list.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/datasets/89df6bb3-dfd7-4e6b-b7e5-4f072f561c20' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/datasets/89df6bb3-dfd7-4e6b-b7e5-4f072f561c20"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers)
print(response.text.encode('utf8'))
Response
201 Created
No response body provided.
Remove a dataset from a list channel
DELETE
/api/channels/{channel-id}/datasets/{dataset-id}
Removes a dataset from a channel with type list.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/datasets/89df6bb3-dfd7-4e6b-b7e5-4f072f561c20' -i -X DELETE
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/datasets/89df6bb3-dfd7-4e6b-b7e5-4f072f561c20"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.
Add workspace scope to a channel
PUT
/api/channels/{channel-id}/scope/workspace
Add workspace scope to a channel.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/scope/workspace' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/scope/workspace"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Channel with HAL links.
{
"id" : "5625f162-84e5-4d11-b78a-2b71d5f2cf16",
"name" : "mylist",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "WORKSPACE",
"type" : "LIST",
"created" : "2025-11-02T06:28:51.367331",
"lastModified" : "2025-11-02T06:28:51.367331",
"description" : "mylist channel",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
},
"withdraw workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/scope/profile"
}
}
}
Withdraw workspace scope from a channel
PUT
/api/channels/{channel-id}/scope/profile
Withdraw workspace scope from a channel.
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/scope/profile' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/scope/profile"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Channel with HAL links.
{
"id" : "5625f162-84e5-4d11-b78a-2b71d5f2cf16",
"name" : "mylist",
"workspaceId" : "57711291-317e-407c-abdb-4650398fda9c",
"creator" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"scope" : "PROFILE",
"type" : "LIST",
"created" : "2025-11-02T06:28:51.367331",
"lastModified" : "2025-11-02T06:28:51.367331",
"description" : "mylist channel",
"datasetCount" : 0,
"containsDataset" : false,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
},
"datasets" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/datasets",
"type" : "GET"
},
"add subscription" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/subscriptions"
},
"update channel" : {
"href" : "https://app.matatika.com/api/workspaces/57711291-317e-407c-abdb-4650398fda9c/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
},
"delete channel" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16"
},
"add workspace-scope" : {
"href" : "https://app.matatika.com/api/channels/5625f162-84e5-4d11-b78a-2b71d5f2cf16/scope/workspace"
}
}
}