Skip to content

Commit

Permalink
Merge branch 'main' into remove-connection-keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
hhanova authored Nov 1, 2024
2 parents d891df7 + 861a65b commit f480304
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,9 @@ items:
- url: /components/extractors/other/google-search-console/
title: Google Search Console

- url: /components/extractors/other/okta/
title: Okta

- url: /components/extractors/other/hibob/
title: HiBob

Expand Down
1 change: 1 addition & 0 deletions components/extractors/other/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ connectors that do not fall into any of the above mentioned categories:
provides detailed data for locations specified by their names, address or coordinates.
- [GitHub](/components/extractors/other/github/) --- imports data from GitHub, a software development platform.
- [Google Search Console](/components/extractors/other/google-search-console/) --- imports data from Google Search Console, a web service by Google which allows webmasters to check indexing status and optimize visibility of their websites.
- [Okta](/components/extractors/other/okta/) --- imports data from the Okta platform.
- [HiBob](/components/extractors/other/hibob/) --- imports data from the HiBob HR platform.
- [Mapbox](/components/extractors/other/mapbox/) --- imports data from the Mapbox API, providing customizable mapping solutions and location-based services for developers and businesses
- [Papertrail](/components/extractors/other/papertrail/) --- imports data from Papertrail (log management).
Expand Down
33 changes: 33 additions & 0 deletions components/extractors/other/okta/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Okta
permalink: /components/extractors/other/okta/
redirect_from:
- /extractors/other/okta/
---

* TOC
{:toc}

This extractor fetches data from [Okta](https://www.okta.com/). It supports backfill mode and also incremental fetching.

## Prerequisites
Before you start, get an Okta API token. To find out how to obtain the token, go to the [Okta docs](https://developer.okta.com/docs/guides/create-an-api-token/main).

## Supported Endpoints
- users
- user_types
- devices

## General Configuration
- **Organization URL** (org_url) – [REQ] Example: keboola.okta.com
- **API Token** (#api_token) – [REQ] API key to authenticate the connection with Okta


## Row Configuration
- **Endpoint** (endpoint) – [REQ] Endpoint of Okta from which data will be fetched.
- **Search** (search) – [OPT] Refer to the [Okta docs](https://developer.okta.com/docs/reference/api/users/#list-users-with-search) for query syntax.
- **Sync Mode** (sync_mode) – [OPT] Full sync downloads all data from the source on every run; incremental sync downloads data updated since the last run.
- **Storage Table Name** (output_table_name) – [REQ] Name of the table stored in Storage.
- **Load Type** (load_type) – [REQ] If full load is used, the destination table will be overwritten on every run. If incremental load is used, data will be upserted into the destination table. Tables with a primary key will have rows updated, and tables without a primary key will have rows appended.

When done, **save** the configuration.

0 comments on commit f480304

Please sign in to comment.