Skip to main content
GET
/
api
/
v1
/
runs
/
{id}
cURL
curl --request GET \
  --url https://api.nekt.ai/api/v1/runs/{id}/ \
  --header 'x-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "number": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "started_at": "2023-11-07T05:31:56Z",
  "ended_at": "2023-11-07T05:31:56Z",
  "duration_seconds": 123,
  "status": "pending_events",
  "trigger": {
    "type": "<string>",
    "cron_expression": "<string>",
    "cron_timezone": "<string>",
    "event_rule": "<string>"
  },
  "full_sync": true,
  "extra_config": null,
  "credit_charge_status": "unsuccessful",
  "el_cost_usd": 123,
  "el_cost_metadata": null,
  "transformation_cost_usd": 123,
  "transformation_cost_metadata": null,
  "triggered_by": 123,
  "triggered_by_token": "<string>",
  "source": "<string>",
  "destination": "<string>",
  "transformation": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nekt.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

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

Path Parameters

id
string<uuid>
required

A UUID string identifying this Pipeline run.

Response

200 - application/json
id
string<uuid>
required
read-only
number
integer | null
required
read-only
created_at
string<date-time>
required
read-only
updated_at
string<date-time>
required
read-only
started_at
string<date-time> | null
required
read-only
ended_at
string<date-time> | null
required
read-only
duration_seconds
integer | null
required
read-only
status
enum<string>
required
  • pending_events - PENDING_EVENTS
  • queued - QUEUED
  • running - RUNNING
  • success - SUCCESS
  • failed - FAILED
  • cancelling - CANCELLING
  • canceled - CANCELED
Available options:
pending_events,
queued,
running,
success,
failed,
cancelling,
canceled
trigger
object
required
full_sync
boolean | null
required
read-only
extra_config
unknown
required
credit_charge_status
required
  • unsuccessful - Unsuccessful
  • charged - Charged
Available options:
unsuccessful,
charged
el_cost_usd
number<double> | null
required
read-only
el_cost_metadata
unknown
required
transformation_cost_usd
number<double> | null
required
read-only
transformation_cost_metadata
unknown
required
triggered_by
integer
required
read-only

User that triggered the run (Expandable)

triggered_by_token
string
required
read-only

API token that triggered the run (Expandable)

source
string
required
read-only

Source of the run (Expandable)

destination
string
required
read-only

Destination of the run (Expandable)

transformation
string
required
read-only

Transformation of the run (Expandable)