GET
/
api
/
v1
/
activities
/
curl --request GET \
  --url https://api.nekt.ai/api/v1/activities/ \
  --header 'x-api-key: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "activity_type": "add-source",
      "changed_fields": "<any>",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by": 123,
      "source": "<string>",
      "destination": "<string>",
      "transformation": "<string>",
      "table": "<string>",
      "volume": "<string>",
      "run": "<string>",
      "visualization": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API Key authentication. Format: 'x-api-key: api_key'

Query Parameters

activity_type
string[]

Multiple values may be separated by commas.

destination_id
string[]

Multiple values may be separated by commas.

notebook_slug
string[]

Multiple values may be separated by commas.

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

source_id
string[]

Multiple values may be separated by commas.

transformation_id
string[]

Multiple values may be separated by commas.

Response

200 - application/json

The response is of type object.