Skip to main content
POST
/
groups
/
{id}
/
data-catalogues
Add a data catalogue to a group
curl --request POST \
  --url http://localhost:8080/api/v1/groups/{id}/data-catalogues \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "attributes": {
      "icon": "<string>",
      "long_description": "<string>",
      "name": "<string>",
      "short_description": "<string>"
    },
    "type": "<string>"
  }
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Path Parameters

id
integer
required

Group ID

Body

application/json

Data Catalogue to add

Data Catalogue input model

data
object