Learn R Programming

Civis Platform API R Client

Introduction

civis is an R package that helps analysts and developers interact with the Civis Platform. The package includes a set of tools around common workflows as well as a convenient interface to make requests directly to the Civis Platform API.

Documentation

The full documentation is hosted here. The fastest way to get started is with the getting started guide.

API Keys

Installing and using civis requires an API key. Instructions for creating an API key can be found here. All API keys have a set expiration date and so a new key will need to be created at least every 30 days.

Once you have created an API key, you will then need to add it to your .Renviron so the civis package can access it.

Linux/MacOS

touch ~/.Renviron
open -t ~/.Renviron

Then add the following line replacing the fake key sadf8sadf9jasdf with the API key from your Civis Platform Profile:

CIVIS_API_KEY=sadf8sadf9jasdf

After saving the .Renviron file, you'll need to restart R/Rstudio.

Windows

A .Renviron file can be created in the R user home directory, Sys.getenv("R_USER"). Typically this is "C:/username/Documents". Open or create .Renviron with notepad and add the key as above. Save with type all files, not .txt. Restart R/Rstudio.

:heavy_exclamation_mark: You must keep your API key secret. If you use version control tools, ensure you do not commit .Renviron or any scripts in which you have hard-coded an API key.

Install

# Default install
install.packages("civis")

# All features (including CivisML)
install.packages("civis", depends = TRUE)

Updating

The civis package can automatically generate R functions and documentation to interact with the Civis Platform when the package installs.

From time to time, new API functions are added. These can be obtained immediately by installing the package from source:

install.packages('civis', depends = TRUE, type = 'source')

Usage

civis includes functionality for both

  1. Making single calls to accomplish a specific task (which may involve

making multiple calls to the API) 2. Making direct calls to the API

Many useful tasks will require making multiple direct calls to the API. civis includes a number of wrapper functions to make common tasks like IO and modeling easier. For example, reading data from a table in Platform is as easy as

library(civis)

# Read an entire table in to memory
my_table <- "schema.tablename"
df <- read_civis(my_table, database="my_database")

# Run a query and read the results into memory
query <- sql("SELECT a, b, c FROM schema.tablename WHERE b > 42")
df2 <- read_civis(query, database="my_database")

civis includes many more functions for tasks like writing data to tables and files as well as for creating reports. For more detailed documentation, see the included vignettes:

browseVignettes('civis')

Direct calls to API

Functions which make direct calls to the API are prefixed with the name of the resource that the function accesses. For example, the users resource encapsulates all the functionality of Platform regarding users. We can make various calls to the users resource to get information about ourselves and our team.

# Data about me
civis::users_list_me()

<civis_api>
List of 14
 $ id                      : int 971
 $ name                    : chr "A User"
 $ email                   : chr "a_user@example.com"
 $ username                : chr "a_user"
 $ initials                : chr "AU"
# ...
# Data about my team
my_team <- civis::users_list()
team_members <- sapply(my_team, function(x) x$name)
print(team_members)

[1] "Jean-Luc Picard"      "Beverly Crusher"     "Q"

API Documentation

https://platform.civisanalytics.com/#/api

Contributing

Contributions to the code are very welcome! Issues and bug reports can filed through the standard Github issue interface.

git-flow

  1. Fork the repo, make changes in your branch.
  2. Unit tests must pass, and can be run with devtools::test() or cmd-shift-t in Rstudio.
  3. New code must be backed with tests, mocking all API calls.
  4. R CMD check must pass, i.e. using devtools::check().
  5. Make a pull request from the fork to the master branch of the main repo. In your pull request, link to the issue the pull request addresses.
  6. Tag a maintainer for review. Once it has been approved, squash and merge!

Adding the environment variable R_CLIENT_DEV = "TRUE" to .Renviron will prevent new API functions and documentation from being generated based on your API Key. The default generated API functions included in the package are only updated when this package releases to CRAN.

Integration tests

For major, potentially breaking changes, integration tests should be run with

cd tools/integration_tests
Rscript smoke_test.R

Note, integration tests require a valid API key to run, and my be slow.

Authorship

All contributors of code should include themselves in DESCRIPTION by adding the following object in the Authors@R section:

person("FirstName", "LastName", email = "email@email.com", role = "ctb")

This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Copy Link

Version

Install

install.packages('civis')

Monthly Downloads

208

Version

3.1.3

License

BSD_3_clause + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Dustin Leatherman

Last Published

August 29th, 2025

Functions in civis (3.1.3)

aliases_delete_shares_users

Revoke the permissions a user has on this object
aliases_delete

Delete an alias
aliases_list

List Aliases
CIVIS_ML_CLASSIFIERS

List of classification models.
admin_list_organizations

List organizations
aliases_delete_shares_groups

Revoke the permissions a group has on this object
CivisFuture

Evaluate an expression in Civis Platform
aliases_get

Get an Alias
aliases_get_object_type

Get details about an alias within an FCO type
CIVIS_ML_REGRESSORS

List of civis_ml regression models.
aliases_patch

Update some attributes of this Alias
aliases_list_dependencies

List dependent objects for this object
aliases_put_shares_users

Set the permissions users have on this object
aliases_put_transfer

Transfer ownership of this object to another user
aliases_post

Create an Alias
aliases_list_shares

List users and groups permissioned on this object
aliases_put_shares_groups

Set the permissions groups has on this object
announcements_list

List announcements
await

Call a function repeatedly until a status is reached.
aliases_put

Replace all attributes of this Alias
civis_file_manifest

A manifest file in the Civis Platform
civis_file

A file in the Civis Platform
civis_ml_random_forest_regressor

CivisML Random Forest Regressor
civis_ml

Interface for modeling in the Civis Platform
civis_ml_random_forest_classifier

CivisML Random Forest Classifier
cancel

Cancel the evaluation of a CivisFuture.
civis_ml_extra_trees_regressor

CivisML Extra Trees Regressor
civis_ml_extra_trees_classifier

CivisML Extra Trees Classifier
civis_ml_gradient_boosting_regressor

CivisML Gradient Boosting Regressor
civis_ml_gradient_boosting_classifier

CivisML Gradient Boosting Classifier
clusters_get_kubernetes

Describe a Kubernetes Cluster
clusters_get_kubernetes_instance_configs

Describe an Instance Config
civis_platform

Evaluate an expression in Civis Platform
clusters_delete_kubernetes_partitions

Delete a Cluster Partition
civis_ml_sparse_linear_regressor

CivisML Sparse Linear Regression
civis_to_multifile_csv

Split a Redshift table into multiple CSV parts on S3
civis_table

A table in the Civis Platform
civis_ml_sparse_logistic

CivisML Sparse Logistic
civis_ml_sparse_ridge_regressor

CivisML Sparse Ridge Regression
civis_script

Civis Script
clusters_list_kubernetes_instance_configs_historical_metrics

Get graphs of historical resource usage in an Instance Config
clusters_list_kubernetes_partitions

List Cluster Partitions for given cluster
clusters_list_kubernetes_instance_configs_user_statistics

Get statistics about the current users of an Instance Config
clusters_list_kubernetes_deployment_stats

Get stats about deployments associated with a Kubernetes Cluster
clusters_list_kubernetes_instance_configs_historical_graphs

Get graphs of historical resource usage in an Instance Config
clusters_list_kubernetes_compute_hours

List compute hours for a Kubernetes Cluster
clusters_list_kubernetes_instance_configs_active_workloads

List active workloads in an Instance Config
clusters_list_kubernetes

List Kubernetes Clusters
clusters_get_kubernetes_partitions

Describe a Cluster Partition
clusters_list_kubernetes_deployments

List the deployments associated with a Kubernetes Cluster
clusters_post_kubernetes_partitions

Create a Cluster Partition for given cluster
credentials_list_dependencies

List dependent objects for this object
credentials_delete_shares_groups

Revoke the permissions a group has on this object
credentials_get

Get a credential
clusters_patch_kubernetes_partitions

Update a Cluster Partition
credentials_list

List credentials
credentials_list_shares

List users and groups permissioned on this object
coef.civis_ml

Get civis_ml model coefficients
credentials_delete

Delete a credential
credentials_delete_shares_users

Revoke the permissions a user has on this object
credentials_list_types

Get list of Credential Types
credentials_put

Update an existing credential
credentials_put_transfer

Transfer ownership of this object to another user
databases_delete_schemas_tables_projects

Remove a Table from a project
credentials_post_authenticate

Authenticate against a remote host
credentials_post_temporary

Generate a temporary credential for accessing S3
credentials_post

Create a credential
credentials_patch

Update some attributes of a credential
credentials_put_shares_users

Set the permissions users have on this object
credentials_put_shares_groups

Set the permissions groups has on this object
databases_list_groups

List groups in the specified database
databases_list

List databases
databases_list_schemas

List schemas in this database
databases_get_schema_privileges

Show schema privileges
databases_get_whitelist_ips

View details about a whitelisted IP
databases_get_status_graphs_timeframe

Get the status graphs for this database
databases_list_advanced_settings

Get the advanced settings for this database
databases_get_schemas_tables

Show basic table info
databases_get_table_privilegesschema_name

Show table privileges
databases_get

Show database information
databases_patch_advanced_settings

Update the advanced settings for this database
databases_list_users

Show list of database users
databases_list_schemas_tables

List tables in this schema
databases_put_advanced_settings

Edit the advanced settings for this database
databases_post_schemas_scan

Creates and enqueues a schema scanner job
databases_list_schemas_tables_projects

List the projects a Table belongs to
databases_list_whitelist_ips

List whitelisted IPs for the specified database
databases_list_tables_search

List tables in the specified database, deprecated use "GET /tables" instead
databases_patch_schemas_tables

Update a table
databases_list_tables

List tables in the specified database, deprecated use "GET /tables" instead
endpoints_list

List API endpoints
databases_put_schemas_tables_projects

Add a Table to a project
enhancements_delete_cass_ncoa_projects

Remove a CASS/NCOA Enhancement from a project
download_civis

Download a table or a file from the Civis Platform to local disk
enhancements_delete_cass_ncoa_shares_groups

Revoke the permissions a group has on this object
enhancements_delete_civis_data_match_projects

Remove a Civis Data Match Enhancement from a project
enhancements_delete_cass_ncoa_shares_users

Revoke the permissions a user has on this object
default_credential

The current user's default credential.
enhancements_delete_cass_ncoa_runs

Cancel a run
enhancements_delete_civis_data_match_runs

Cancel a run
enhancements_delete_geocode_projects

Remove a Geocode Enhancement from a project
enhancements_delete_geocode_shares_groups

Revoke the permissions a group has on this object
enhancements_delete_geocode_shares_users

Revoke the permissions a user has on this object
enhancements_delete_geocode_runs

Cancel a run
enhancements_delete_identity_resolution_runs

Cancel a run
enhancements_delete_civis_data_match_shares_groups

Revoke the permissions a group has on this object
enhancements_delete_identity_resolution_projects

Remove an Identity Resolution Enhancement from a project
enhancements_delete_identity_resolution_shares_groups

Revoke the permissions a group has on this object
enhancements_delete_identity_resolution_shares_users

Revoke the permissions a user has on this object
enhancements_delete_civis_data_match_shares_users

Revoke the permissions a user has on this object
enhancements_get_cass_ncoa

Get a CASS/NCOA Enhancement
enhancements_get_geocode

Get a Geocode Enhancement
enhancements_get_civis_data_match

Get a Civis Data Match Enhancement
enhancements_get_cass_ncoa_runs

Check status of a run
enhancements_get_geocode_runs

Check status of a run
enhancements_get_identity_resolution_runs

Check status of a run
enhancements_get_identity_resolution

Get an Identity Resolution Enhancement
enhancements_list_cass_ncoa_dependencies

List dependent objects for this object
enhancements_list

List Enhancements
enhancements_get_civis_data_match_runs

Check status of a run
enhancements_list_civis_data_match_dependencies

List dependent objects for this object
enhancements_list_civis_data_match_projects

List the projects a Civis Data Match Enhancement belongs to
enhancements_list_cass_ncoa_shares

List users and groups permissioned on this object
enhancements_list_civis_data_match_runs_logs

Get the logs for a run
enhancements_list_cass_ncoa_runs_logs

Get the logs for a run
enhancements_list_cass_ncoa_runs_outputs

List the outputs for a run
enhancements_list_civis_data_match_runs_outputs

List the outputs for a run
enhancements_list_civis_data_match_runs

List runs for the given Civis Data Match job
enhancements_list_cass_ncoa_runs

List runs for the given CASS NCOA job
enhancements_list_cass_ncoa_projects

List the projects a CASS/NCOA Enhancement belongs to
enhancements_list_geocode_dependencies

List dependent objects for this object
enhancements_list_geocode_projects

List the projects a Geocode Enhancement belongs to
enhancements_list_geocode_shares

List users and groups permissioned on this object
enhancements_list_field_mapping

List the fields in a field mapping for Civis Data Match, Data Unification, and Table Deduplication jobs
enhancements_list_identity_resolution_dependencies

List dependent objects for this object
enhancements_list_civis_data_match_shares

List users and groups permissioned on this object
enhancements_list_identity_resolution

List Identity Resolution Enhancements
enhancements_list_geocode_runs_logs

Get the logs for a run
enhancements_list_geocode_runs

List runs for the given Geocode job
enhancements_list_geocode_runs_outputs

List the outputs for a run
enhancements_list_identity_resolution_runs_logs

Get the logs for a run
enhancements_list_types

List available enhancement types
enhancements_patch_cass_ncoa

Update some attributes of this CASS/NCOA Enhancement
enhancements_post_cass_ncoa

Create a CASS/NCOA Enhancement
enhancements_list_identity_resolution_runs

List runs for the given Identity Resolution job
enhancements_list_identity_resolution_shares

List users and groups permissioned on this object
enhancements_patch_identity_resolution

Update some attributes of this Identity Resolution Enhancement
enhancements_patch_civis_data_match

Update some attributes of this Civis Data Match Enhancement
enhancements_patch_geocode

Update some attributes of this Geocode Enhancement
enhancements_list_identity_resolution_projects

List the projects an Identity Resolution Enhancement belongs to
enhancements_post_civis_data_match_runs

Start a run
enhancements_post_cass_ncoa_runs

Start a run
enhancements_post_geocode

Create a Geocode Enhancement
enhancements_post_geocode_runs

Start a run
enhancements_post_civis_data_match

Create a Civis Data Match Enhancement
enhancements_post_civis_data_match_clone

Clone this Civis Data Match Enhancement
enhancements_post_civis_data_match_cancel

Cancel a run
enhancements_post_cass_ncoa_cancel

Cancel a run
enhancements_post_geocode_cancel

Cancel a run
enhancements_post_identity_resolution

Create an Identity Resolution Enhancement
enhancements_post_identity_resolution_cancel

Cancel a run
enhancements_put_cass_ncoa_projects

Add a CASS/NCOA Enhancement to a project
enhancements_post_identity_resolution_clone

Clone this Identity Resolution Enhancement
enhancements_post_identity_resolution_runs

Start a run
enhancements_put_cass_ncoa_archive

Update the archive status of this object
enhancements_put_cass_ncoa

Replace all attributes of this CASS/NCOA Enhancement
enhancements_put_cass_ncoa_shares_users

Set the permissions users have on this object
enhancements_put_civis_data_match

Replace all attributes of this Civis Data Match Enhancement
enhancements_put_cass_ncoa_transfer

Transfer ownership of this object to another user
enhancements_put_cass_ncoa_shares_groups

Set the permissions groups has on this object
enhancements_put_civis_data_match_archive

Update the archive status of this object
enhancements_put_geocode_shares_groups

Set the permissions groups has on this object
enhancements_put_civis_data_match_projects

Add a Civis Data Match Enhancement to a project
enhancements_put_geocode_shares_users

Set the permissions users have on this object
enhancements_put_civis_data_match_shares_groups

Set the permissions groups has on this object
enhancements_put_civis_data_match_shares_users

Set the permissions users have on this object
enhancements_put_geocode_projects

Add a Geocode Enhancement to a project
enhancements_put_geocode_archive

Update the archive status of this object
enhancements_put_geocode

Replace all attributes of this Geocode Enhancement
enhancements_put_civis_data_match_transfer

Transfer ownership of this object to another user
enhancements_put_identity_resolution_transfer

Transfer ownership of this object to another user
enhancements_put_identity_resolution_projects

Add an Identity Resolution Enhancement to a project
enhancements_put_identity_resolution_archive

Update the archive status of this object
exports_get_files_csv_runs

Check status of a run
enhancements_put_identity_resolution

Replace all attributes of this Identity Resolution Enhancement
enhancements_put_identity_resolution_shares_groups

Set the permissions groups has on this object
enhancements_put_geocode_transfer

Transfer ownership of this object to another user
exports_get_files_csv

Get a CSV Export
enhancements_put_identity_resolution_shares_users

Set the permissions users have on this object
exports_delete_files_csv_runs

Cancel a run
exports_put_files_csv_archive

Update the archive status of this object
exports_post_files_csv_runs

Start a run
exports_list

List
exports_list_files_csv_runs

List runs for the given CSV Export job
fetch_all

Retrieve all results from a paginated endpoint
exports_list_files_csv_runs_outputs

List the outputs for a run
exports_post_files_csv

Create a CSV Export
exports_patch_files_csv

Update some attributes of this CSV Export
exports_put_files_csv

Replace all attributes of this CSV Export
exports_list_files_csv_runs_logs

Get the logs for a run
files_delete_preprocess_csv

Archive a Preprocess CSV (deprecated, use archiving endpoints instead)
fetch_output_file_ids

Return output from a civis_script.
fetch_oos_scores

Retrieve out of sample/fold predictions
fetch_until

Retrieve some results from a paginated endpoint
fetch_logs

Fetch job logs from the Civis Platform
fetch_predictions

Retrieve predictions from a CivisML prediction job
files_delete_shares_groups

Revoke the permissions a group has on this object
files_delete_projects

Remove a File from a project
files_delete_shares_users

Revoke the permissions a user has on this object
fetch_and_generate_client

Fetches and generates the client in generated_client.R
files_patch

Update details about a file
files_post_multipart

Initiate a multipart upload
files_get_preprocess_csv

Get a Preprocess CSV
files_post

Initiate an upload of a file into the platform
files_post_multipart_complete

Complete a multipart upload
files_get

Get details about a file
files_patch_preprocess_csv

Update some attributes of this Preprocess CSV
files_list_shares

List users and groups permissioned on this object
files_list_projects

List the projects a File belongs to
files_list_dependencies

List dependent objects for this object
files_put_preprocess_csv

Replace all attributes of this Preprocess CSV
generate_client

Generate a client
files_put_preprocess_csv_archive

Update the archive status of this object
files_put_shares_users

Set the permissions users have on this object
files_put_transfer

Transfer ownership of this object to another user
files_put_projects

Add a File to a project
files_put

Update details about a file
files_put_shares_groups

Set the permissions groups has on this object
get_database_id

Return the database id for a given database name
files_post_preprocess_csv

Create a Preprocess CSV
get_error

Get error data from civis_errors
get_script_fun

Get a script function matching a job type.
get_table_id

Return the table id for a given table
git_repos_delete

Remove the bookmark on a git repository
get_train_template_id

Get training template IDs for the specified CivisML version
get_job_type_version

Derive the job type and version from the given alias.
get_feature_importance

Get model feature importance
get_status

Get the status from results of await
get_metric

Get model metrics
get_template_ids_all_versions

Get template IDs for all accessible CivisML versions.
git_repos_list_refs

Get all branches and tags of a bookmarked git repository
groups_delete

Delete a Group (deprecated)
git_repos_get

Get a bookmarked git repository
groups_delete_shares_groups

Revoke the permissions a group has on this object
groups_delete_members

Remove a user from a group
groups_delete_shares_users

Revoke the permissions a user has on this object
git_repos_list

List bookmarked git repositories
git_repos_post

Bookmark a git repository
groups_get

Get a Group
hist.civis_ml

Plot a histogram of the predicted scores or probabilities for a CivisML object
groups_post

Create a Group
groups_put_members

Add a user to a group
groups_list

List Groups
imports_delete_files_csv

Archive a CSV Import (deprecated, use archiving endpoints instead)
groups_put_shares_groups

Set the permissions groups has on this object
groups_put

Replace all attributes of this Group
groups_list_child_groups

Get child groups of this group
groups_list_shares

List users and groups permissioned on this object
groups_put_shares_users

Set the permissions users have on this object
groups_patch

Update some attributes of this Group
imports_delete_projects

Remove an Import from a project
imports_delete_syncs

Archive a sync (deprecated, use the /archive endpoint instead)
imports_get_files_csv_runs

Check status of a run
imports_delete_shares_users

Revoke the permissions a user has on this object
imports_delete_shares_groups

Revoke the permissions a group has on this object
imports_delete_files_runs

Cancel a run
imports_get

Get details about an import
imports_delete_files_csv_runs

Cancel a run
imports_get_batches

Get details about a batch import
imports_get_files_csv

Get a CSV Import
imports_list_files_runs

List runs for the given Import job
imports_list_batches

List batch imports
imports_list_files_csv_runs_logs

Get the logs for a run
imports_list_dependencies

List dependent objects for this object
imports_list_files_csv_runs

List runs for the given CSV Import job
imports_list

List Imports
imports_get_files_runs

Check status of a run
imports_list_files_runs_logs

Get the logs for a run
imports_list_runs

Get the run history of this import
imports_list_projects

List the projects an Import belongs to
imports_patch_files_csv

Update some attributes of this CSV Import
imports_post_cancel

Cancel a run
imports_post_files

Initate an import of a tabular file into the platform
imports_list_runs_logs

Get the logs for a run
imports_post_files_runs

Start a run
imports_post_batches

Upload multiple files to Civis
imports_list_shares

List users and groups permissioned on this object
imports_post

Create a new import configuration
imports_post_files_csv

Create a CSV Import
imports_post_files_csv_runs

Start a run
imports_put_archive

Update the archive status of this object
imports_put_shares_groups

Set the permissions groups has on this object
imports_put_syncs

Update a sync
imports_put_files_csv_archive

Update the archive status of this object
imports_put

Update an import
imports_put_files_csv

Replace all attributes of this CSV Import
imports_put_shares_users

Set the permissions users have on this object
imports_put_projects

Add an Import to a project
imports_post_syncs

Create a sync
imports_post_runs

Run an import
jobs_list_children

Show nested tree of children that this job triggers
jobs_get_runs

Check status of a job
jobs_delete_runs

Cancel a run
jobs_delete_projects

Remove a Job from a project
jobs_get

Show basic job info
imports_put_syncs_archive

Update the archive status of this sync
imports_put_transfer

Transfer ownership of this object to another user
jobs_delete_shares_groups

Revoke the permissions a group has on this object
jobs_delete_shares_users

Revoke the permissions a user has on this object
jobs_list

List Jobs
jobs_list_runs_outputs

List the outputs for a run
jobs_post_runs

Run a job
jobs_list_shares

List users and groups permissioned on this object
jobs_list_dependencies

List dependent objects for this object
jobs_list_parents

Show chain of parents as a list that this job triggers from
jobs_list_workflows

List the workflows a job belongs to
jobs_list_projects

List the projects a Job belongs to
jobs_list_runs

List runs for the given job
jobs_post_trigger_email

Generate and retrieve trigger email address
jobs_list_runs_logs

Get the logs for a run
jobs_put_transfer

Transfer ownership of this object to another user
jobs_put_archive

Update the archive status of this object
json_values_delete_shares_groups

Revoke the permissions a group has on this object
json_values_delete_shares_users

Revoke the permissions a user has on this object
json_values_list_shares

List users and groups permissioned on this object
jobs_put_shares_groups

Set the permissions groups has on this object
json_values_get

Get details about a JSON Value
jobs_put_projects

Add a Job to a project
jobs_put_shares_users

Set the permissions users have on this object
json_values_list_dependencies

List dependent objects for this object
json_values_put_shares_groups

Set the permissions groups has on this object
match_targets_list_shares

List users and groups permissioned on this object
json_values_patch

Update some attributes of this JSON Value
match_targets_delete_shares_users

Revoke the permissions a user has on this object
json_values_post

Create a JSON Value
json_values_put_transfer

Transfer ownership of this object to another user
json_values_put_shares_users

Set the permissions users have on this object
match_targets_get

Show Match Target info
match_targets_delete_shares_groups

Revoke the permissions a group has on this object
match_targets_list

List match targets
media_delete_ratecards_shares_users

Revoke the permissions a user has on this object
match_targets_put_archive

Update the archive status of this object
match_targets_put_shares_groups

Set the permissions groups has on this object
media_delete_optimizations_shares_groups

Revoke the permissions a group has on this object
media_delete_ratecards_shares_groups

Revoke the permissions a group has on this object
match_targets_put_shares_users

Set the permissions users have on this object
media_delete_optimizations_shares_users

Revoke the permissions a user has on this object
match_targets_patch

Update a match target
match_targets_post

Create a new match target
media_delete_optimizations_runs

Cancel a run
media_delete_spot_orders_shares_groups

Revoke the permissions a group has on this object
media_list_dmas

List all Designated Market Areas
media_delete_spot_orders_shares_users

Revoke the permissions a user has on this object
media_get_optimizations_runs

Check status of a run
media_list_optimizations_runs

List runs for the given Optimization job
media_get_optimizations

Show a single optimization
media_get_ratecards

Get a Ratecard
media_get_spot_orders

Show a single spot order
media_list_optimizations

List all optimizations
media_list_optimizations_runs_logs

Get the logs for a run
media_list_ratecards_shares

List users and groups permissioned on this object
media_patch_optimizations

Edit an existing optimization
media_list_targets

List all Media Targets
media_list_spot_orders

List all spot orders
media_list_spot_orders_shares

List users and groups permissioned on this object
media_list_ratecards

List all ratecards
media_patch_ratecards

Update some attributes of this Ratecard
media_list_optimizations_shares

List users and groups permissioned on this object
media_post_optimizations_clone

Clone an existing optimization
media_post_optimizations

Create a new optimization
media_post_optimizations_runs

Start a run
media_put_optimizations_shares_groups

Set the permissions groups has on this object
media_put_ratecards_shares_users

Set the permissions users have on this object
media_put_ratecards_shares_groups

Set the permissions groups has on this object
media_put_optimizations_archive

Update the archive status of this object
media_put_ratecards_archive

Update the archive status of this object
media_post_ratecards

Create a Ratecard
media_put_optimizations_shares_users

Set the permissions users have on this object
media_post_spot_orders

Create a spot order
media_put_ratecards

Replace all attributes of this Ratecard
media_put_spot_orders

Edit the specified spot order
models_get_builds

Check status of a build
models_delete_builds

Cancel a build
media_put_spot_orders_archive

Update the archive status of this object
models_delete_projects

Remove a Model from a project
models_delete_shares_groups

Revoke the permissions a group has on this object
media_put_spot_orders_shares_groups

Set the permissions groups has on this object
models_get

Retrieve model configuration
models_delete_shares_users

Revoke the permissions a user has on this object
media_put_spot_orders_shares_users

Set the permissions users have on this object
models_list_builds

List builds for the given Model job
models_list_projects

List the projects a Model belongs to
models_list_schedules

Show the model build schedule
models_put_projects

Add a Model to a project
models_list

List
models_put_archive

Update the archive status of this object
models_list_types

List all available model types
models_list_shares

List users and groups permissioned on this object
models_list_dependencies

List dependent objects for this object
models_list_builds_logs

Get the logs for a build
models_put_shares_groups

Set the permissions groups has on this object
models_put_shares_users

Set the permissions users have on this object
models_put_transfer

Transfer ownership of this object to another user
notebooks_get

Get a Notebook
notebooks_delete_shares_groups

Revoke the permissions a group has on this object
notebooks_delete_projects

Remove a Notebook from a project
multipart_upload

Upload to files endpoint in parts.
notebooks_delete

Archive a Notebook (deprecated, use archiving endpoints instead)
notebooks_delete_deployments

Delete a Notebook deployment
notebooks_delete_shares_users

Revoke the permissions a user has on this object
notebooks_list_projects

List the projects a Notebook belongs to
notebooks_list_deployments

List deployments for a Notebook
notebooks_list_dependencies

List dependent objects for this object
notebooks_list_shares

List users and groups permissioned on this object
notebooks_list

List Notebooks
notebooks_list_git_commits

Get the git commits for an item on the current branch
notebooks_list_deployments_logs

Get the logs for a Notebook deployment
notebooks_list_git

Get the git metadata attached to an item
notebooks_get_git_commits

Get file contents at git ref
notebooks_get_deployments

Get details about a Notebook deployment
notebooks_patch_git

Update an attached git file
notebooks_post

Create a Notebook
notebooks_post_git_commits

Commit and push a new version of the file
notebooks_put_git

Attach an item to a file in a git repo
notebooks_put

Replace all attributes of this Notebook
notebooks_patch

Update some attributes of this Notebook
notebooks_post_clone

Clone this Notebook
notebooks_put_archive

Update the archive status of this object
notebooks_list_update_links

Get URLs to update notebook
notebooks_post_deployments

Deploy a Notebook
notebooks_put_shares_groups

Set the permissions groups has on this object
notebooks_put_shares_users

Set the permissions users have on this object
notebooks_put_projects

Add a Notebook to a project
notifications_list

Receive a stream of notifications as they come in
organizations_delete_favorites

Unfavorite an item for your organization
ontology_list

List the ontology of column names Civis uses
organizations_list_favorites

List Favorites
permission_sets_delete_resources

Delete a resource in a permission set
organizations_post_favorites

Favorite an item for your organization
notebooks_put_transfer

Transfer ownership of this object to another user
permission_sets_get

Get a Permission Set
permission_sets_list

List Permission Sets
permission_sets_delete_resources_shares_groups

Revoke the permissions a group has on this object
permission_sets_delete_shares_groups

Revoke the permissions a group has on this object
permission_sets_get_resources

Get a resource in a permission set
permission_sets_list_resources_shares

List users and groups permissioned on this object
permission_sets_list_resources

List resources in a permission set
permission_sets_list_dependencies

List dependent objects for this object
permission_sets_delete_resources_shares_users

Revoke the permissions a user has on this object
permission_sets_delete_shares_users

Revoke the permissions a user has on this object
permission_sets_list_users_permissions

Get all permissions for a user, in this permission set
permission_sets_put_resources_shares_users

Set the permissions users have on this object
permission_sets_put_resources_shares_groups

Set the permissions groups has on this object
permission_sets_post_resources

Create a resource in a permission set
permission_sets_post

Create a Permission Set
permission_sets_patch

Update some attributes of this Permission Set
permission_sets_patch_resources

Update a resource in a permission set
permission_sets_put_archive

Update the archive status of this object
permission_sets_list_shares

List users and groups permissioned on this object
permission_sets_put

Replace all attributes of this Permission Set
permission_sets_put_shares_users

Set the permissions users have on this object
predictions_list_schedules

Show the prediction schedule
projects_delete

Archive a project (deprecated, use the /archive endpoint instead)
predictions_get

Show the specified prediction
print.civis_api

Print results from a Civis API call
permission_sets_put_shares_groups

Set the permissions groups has on this object
plot.civis_ml_regressor

Y-yhat plot for regression with civis_ml
plot.civis_ml_classifier

Decile plot for classification with civis_ml
permission_sets_put_transfer

Transfer ownership of this object to another user
predictions_list

List predictions
projects_delete_parent_projects

Remove an item from a Parent Project
projects_post

Create a project
projects_list_dependencies

List dependent objects for this object
projects_delete_shares_groups

Revoke the permissions a group has on this object
projects_list

List projects
projects_delete_shares_users

Revoke the permissions a user has on this object
projects_list_shares

List users and groups permissioned on this object
projects_post_clone

Clone this
projects_list_parent_projects

List the Parent Projects an item belongs to
projects_get

Get a detailed view of a project and the objects in it
projects_put_parent_projects

Add an item to a Parent Project
projects_put_shares_users

Set the permissions users have on this object
publish_rmd

Publish an R Markdown file to Platform Reports
publish_addin

Add in to Publish an R Markdown file to Platform Reports from RStudio
projects_put_shares_groups

Set the permissions groups has on this object
projects_put

Update a project
publish_html

Publish HTML to Platform Reports
projects_put_auto_share

Enable or disable Auto-Share on a project
projects_put_transfer

Transfer ownership of this object to another user
projects_put_archive

Update the archive status of this object
queries_post_runs

Start a run
queries_delete

Sets Query Hidden to true
queries_list

List queries
queries_list_runs_logs

Get the logs for a run
queries_list_runs

List runs for the given Query job
queries_post

Execute a query
queries_get_runs

Check status of a run
queries_delete_runs

Cancel a run
queries_get

Get details about a query
queries_put_scripts

Update the query's associated script
remote_hosts_delete_shares_users

Revoke the permissions a user has on this object
query_civis

Run a Query on Platform
remote_hosts_list

List Remote Hosts
remote_hosts_delete_shares_groups

Revoke the permissions a group has on this object
remote_hosts_get

Get a Remote Host
refresh_table

Refresh a table
query_civis_file

Export results from a query to S3 and return a file id.
remote_hosts_list_shares

List users and groups permissioned on this object
remote_hosts_list_data_sets

List data sets available from a remote host
read_civis

Read tables and files from Civis Platform
remote_hosts_patch

Update some attributes of this Remote Host
reports_delete_services_shares_groups

Revoke the permissions a group has on this object
reports_delete_services_projects

Remove a Service Report from a project
reports_delete_grants

Revoke permission for this report to perform Civis platform API operations on your behalf
remote_hosts_put_shares_users

Set the permissions users have on this object
remote_hosts_post

Create a Remote Host
reports_delete_projects

Remove a Report from a project
remote_hosts_put_shares_groups

Set the permissions groups has on this object
remote_hosts_put

Replace all attributes of this Remote Host
remote_hosts_post_authenticate

Authenticate against a remote host using either a credential or a user name and password
reports_delete_services_shares_users

Revoke the permissions a user has on this object
reports_delete_shares_users

Revoke the permissions a user has on this object
reports_delete_sql_shares_groups

Revoke the permissions a group has on this object
reports_delete_sql_projects

Remove a SQL Report from a project
reports_delete_sql_shares_users

Revoke the permissions a user has on this object
reports_delete_shares_groups

Revoke the permissions a group has on this object
reports_get

Get a single report
reports_get_sql

Get a single SQL report
reports_get_services

Get a single service report
reports_get_git_commits

Get file contents at git ref
reports_list_sql_dependencies

List dependent objects for this object
reports_list_git_commits

Get the git commits for an item on the current branch
reports_list

List Reports
reports_list_shares

List users and groups permissioned on this object
reports_list_services_shares

List users and groups permissioned on this object
reports_list_projects

List the projects a Report belongs to
reports_list_services_projects

List the projects a Service Report belongs to
reports_list_dependencies

List dependent objects for this object
reports_list_services_dependencies

List dependent objects for this object
reports_list_git

Get the git metadata attached to an item
reports_post_grants

Grant this report the ability to perform Civis platform API operations on your behalf
reports_post_git_commits

Commit and push a new version of the file
reports_patch_services

Update some attributes of this service report
reports_patch_git

Update an attached git file
reports_list_sql_projects

List the projects a SQL Report belongs to
reports_patch

Update a report
reports_patch_sql

Update a SQL report
reports_post

Create an HTML report
reports_list_sql_shares

List users and groups permissioned on this object
reports_post_refresh

Refresh the data in this Tableau report
reports_put_projects

Add a Report to a project
reports_put_services_shares_users

Set the permissions users have on this object
reports_post_sql

Create a SQL report
reports_put_services_archive

Update the archive status of this object
reports_post_sql_refresh

Refresh the data in a SQL report
reports_put_services_shares_groups

Set the permissions groups has on this object
reports_post_services

Create a service report
reports_put_git

Attach an item to a file in a git repo
reports_put_archive

Update the archive status of this object
reports_put_services_projects

Add a Service Report to a project
reports_put_shares_users

Set the permissions users have on this object
reports_put_transfer

Transfer ownership of this object to another user
reports_put_sql_shares_groups

Set the permissions groups has on this object
reports_put_sql_projects

Add a SQL Report to a project
reports_put_services_transfer

Transfer ownership of this object to another user
reports_put_sql_shares_users

Set the permissions users have on this object
resolved

Check whether a CivisFuture has resolved.
reports_put_sql_transfer

Transfer ownership of this object to another user
scripts_delete_containers_shares_users

Revoke the permissions a user has on this object
scripts_delete_custom

Archive a Custom Script (deprecated, use archiving endpoints instead)
roles_list

List Roles
scripts_delete_containers_runs

Cancel a run
scripts_delete_containers_projects

Remove a Container Script from a project
scripts_delete_containers

Archive a container (deprecated, use archive endpoints)
scripts_delete

Archive a script (deprecated, use archive endpoints instead)
run_civis

Evaluate an R expression in a Civis Platform container
reports_put_sql_archive

Update the archive status of this object
run_template

Run a template script
reports_put_shares_groups

Set the permissions groups has on this object
scripts_delete_containers_shares_groups

Revoke the permissions a group has on this object
scripts_delete_dbt_projects

Remove a dbt Script from a project
scripts_delete_custom_shares_users

Revoke the permissions a user has on this object
scripts_delete_javascript

Archive a JavaScript Script (deprecated, use archiving endpoints instead)
scripts_delete_custom_runs

Cancel a run
scripts_delete_dbt_shares_groups

Revoke the permissions a group has on this object
scripts_delete_dbt_runs

Cancel a run
scripts_delete_custom_shares_groups

Revoke the permissions a group has on this object
scripts_delete_dbt_shares_users

Revoke the permissions a user has on this object
scripts_delete_custom_projects

Remove a Custom Script from a project
scripts_delete_dbt

Archive a dbt Script (deprecated, use archiving endpoints instead)
scripts_delete_python3_runs

Cancel a run
scripts_delete_python3_shares_users

Revoke the permissions a user has on this object
scripts_delete_javascript_runs

Cancel a run
scripts_delete_r

Archive an R Script (deprecated, use archiving endpoints instead)
scripts_delete_python3

Archive a Python Script (deprecated, use archiving endpoints instead)
scripts_delete_javascript_shares_groups

Revoke the permissions a group has on this object
scripts_delete_javascript_shares_users

Revoke the permissions a user has on this object
scripts_delete_python3_shares_groups

Revoke the permissions a group has on this object
scripts_delete_javascript_projects

Remove a JavaScript Script from a project
scripts_delete_python3_projects

Remove a Python Script from a project
scripts_delete_r_projects

Remove an R Script from a project
scripts_delete_r_shares_users

Revoke the permissions a user has on this object
scripts_delete_r_shares_groups

Revoke the permissions a group has on this object
scripts_delete_sql

Archive a SQL Script (deprecated, use archiving endpoints instead)
scripts_delete_r_runs

Cancel a run
scripts_get

Get details about a SQL script (legacy)
scripts_delete_sql_shares_users

Revoke the permissions a user has on this object
scripts_delete_sql_shares_groups

Revoke the permissions a group has on this object
scripts_delete_sql_projects

Remove a SQL Script from a project
scripts_delete_sql_runs

Cancel a run
scripts_get_javascript_runs

Check status of a run
scripts_get_containers

View a container
scripts_get_javascript

Get a JavaScript Script
scripts_get_custom_runs

Check status of a run
scripts_get_dbt

Get a dbt Script
scripts_get_containers_runs

Check status of a run
scripts_get_dbt_runs

Check status of a run
scripts_get_python3

Get a Python Script
scripts_get_javascript_git_commits

Get file contents at git ref
scripts_get_custom

Get a Custom Script
scripts_get_python3_git_commits

Get file contents at git ref
scripts_list

List Scripts
scripts_get_python3_runs

Check status of a run
scripts_list_containers_dependencies

List dependent objects for this object
scripts_get_sql

Get a SQL Script
scripts_get_sql_git_commits

Get file contents at git ref
scripts_get_sql_runs

Check status of a run
scripts_get_r

Get an R Script
scripts_get_r_git_commits

Get file contents at git ref
scripts_get_r_runs

Check status of a run
scripts_list_containers_projects

List the projects a Container Script belongs to
scripts_list_custom_projects

List the projects a Custom Script belongs to
scripts_list_containers_shares

List users and groups permissioned on this object
scripts_list_custom_runs

List runs for the given Custom job
scripts_list_custom_dependencies

List dependent objects for this object
scripts_list_custom

List Custom Scripts
scripts_list_containers_runs

List runs for the given Container job
scripts_list_containers_runs_logs

Get the logs for a run
scripts_list_custom_runs_logs

Get the logs for a run
scripts_list_containers_runs_outputs

List the outputs for a run
scripts_list_javascript_dependencies

List dependent objects for this object
scripts_list_dbt_runs_outputs

List the outputs for a run
scripts_list_dbt_dependencies

List dependent objects for this object
scripts_list_dbt_projects

List the projects a dbt Script belongs to
scripts_list_history

Get the run history and outputs of this script
scripts_list_dbt_shares

List users and groups permissioned on this object
scripts_list_custom_shares

List users and groups permissioned on this object
scripts_list_dbt_runs_logs

Get the logs for a run
scripts_list_dbt_runs

List runs for the given dbt job
scripts_list_custom_runs_outputs

List the outputs for a run
scripts_list_javascript_shares

List users and groups permissioned on this object
scripts_list_javascript_projects

List the projects a JavaScript Script belongs to
scripts_list_javascript_runs_outputs

List the outputs for a run
scripts_list_javascript_git

Get the git metadata attached to an item
scripts_list_python3_git

Get the git metadata attached to an item
scripts_list_python3_dependencies

List dependent objects for this object
scripts_list_javascript_runs

List runs for the given Javascript job
scripts_list_python3_git_commits

Get the git commits for an item on the current branch
scripts_list_javascript_git_commits

Get the git commits for an item on the current branch
scripts_list_javascript_runs_logs

Get the logs for a run
scripts_list_python3_projects

List the projects a Python Script belongs to
scripts_list_r_projects

List the projects an R Script belongs to
scripts_list_python3_runs

List runs for the given Python job
scripts_list_r_git_commits

Get the git commits for an item on the current branch
scripts_list_r_git

Get the git metadata attached to an item
scripts_list_python3_shares

List users and groups permissioned on this object
scripts_list_r_dependencies

List dependent objects for this object
scripts_list_python3_runs_outputs

List the outputs for a run
scripts_list_python3_runs_logs

Get the logs for a run
scripts_list_r_runs

List runs for the given R job
scripts_list_sql_runs_outputs

List the outputs for a run
scripts_list_r_shares

List users and groups permissioned on this object
scripts_list_sql_projects

List the projects a SQL Script belongs to
scripts_list_sql_runs

List runs for the given SQL job
scripts_list_sql_git

Get the git metadata attached to an item
scripts_list_sql_runs_logs

Get the logs for a run
scripts_list_r_runs_outputs

List the outputs for a run
scripts_list_r_runs_logs

Get the logs for a run
scripts_list_sql_git_commits

Get the git commits for an item on the current branch
scripts_list_sql_dependencies

List dependent objects for this object
scripts_patch_javascript

Update some attributes of this JavaScript Script
scripts_list_sql_shares

List users and groups permissioned on this object
scripts_patch_dbt_runs

Update the given run
scripts_patch_custom

Update some attributes of this Custom Script
scripts_patch_javascript_runs

Update the given run
scripts_patch_container_runs

Update the given run
scripts_patch_containers

Update a container
scripts_patch_dbt

Update some attributes of this dbt Script
scripts_list_types

List available script types
scripts_patch_javascript_git

Update an attached git file
scripts_patch_sql_runs

Update the given run
scripts_patch_r_runs

Update the given run
scripts_patch_python3_runs

Update the given run
scripts_patch_r_git

Update an attached git file
scripts_patch_r

Update some attributes of this R Script
scripts_patch_python3_git

Update an attached git file
scripts_post

Create a script (legacy)
scripts_patch_sql

Update some attributes of this SQL Script
scripts_patch_sql_git

Update an attached git file
scripts_patch_python3

Update some attributes of this Python Script
scripts_post_custom_runs

Start a run
scripts_post_containers_clone

Clone this Container Script
scripts_post_cancel

Cancel a run
scripts_post_containers_runs_outputs

Add an output for a run
scripts_post_containers

Create a container
scripts_post_custom_clone

Clone this Custom Script
scripts_post_containers_runs

Start a run
scripts_post_custom_runs_outputs

Add an output for a run
scripts_post_containers_runs_logs

Add log messages
scripts_post_custom

Create a Custom Script
scripts_post_dbt_runs

Start a run
scripts_post_javascript_git_checkout_latest

Checkout latest commit on the current branch of a script or workflow
scripts_post_javascript

Create a JavaScript Script
scripts_post_javascript_clone

Clone this JavaScript Script
scripts_post_dbt

Create a dbt Script
scripts_post_javascript_git_checkout

Checkout content that the existing git_ref points to and save to the object
scripts_post_dbt_clone

Clone this dbt Script
scripts_post_javascript_git_commits

Commit and push a new version of the file
scripts_post_dbt_runs_outputs

Add an output for a run
scripts_post_javascript_runs

Start a run
scripts_post_python3_clone

Clone this Python Script
scripts_post_python3_runs

Start a run
scripts_post_python3_runs_outputs

Add an output for a run
scripts_post_python3_git_checkout

Checkout content that the existing git_ref points to and save to the object
scripts_post_r_clone

Clone this R Script
scripts_post_r

Create an R Script
scripts_post_python3

Create a Python Script
scripts_post_javascript_runs_outputs

Add an output for a run
scripts_post_python3_git_commits

Commit and push a new version of the file
scripts_post_python3_git_checkout_latest

Checkout latest commit on the current branch of a script or workflow
scripts_post_run

Run a SQL script (legacy)
scripts_post_sql

Create a SQL Script
scripts_post_sql_clone

Clone this SQL Script
scripts_post_r_git_checkout

Checkout content that the existing git_ref points to and save to the object
scripts_post_r_git_checkout_latest

Checkout latest commit on the current branch of a script or workflow
scripts_post_sql_git_checkout

Checkout content that the existing git_ref points to and save to the object
scripts_post_r_runs

Start a run
scripts_post_r_git_commits

Commit and push a new version of the file
scripts_post_sql_git_checkout_latest

Checkout latest commit on the current branch of a script or workflow
scripts_post_r_runs_outputs

Add an output for a run
scripts_put_containers_shares_users

Set the permissions users have on this object
scripts_put_containers_projects

Add a Container Script to a project
scripts_put_containers_transfer

Transfer ownership of this object to another user
scripts_put_custom

Replace all attributes of this Custom Script
scripts_post_sql_runs

Start a run
scripts_put_containers

Edit a container
scripts_put_containers_archive

Update the archive status of this object
scripts_put_custom_archive

Update the archive status of this object
scripts_post_sql_git_commits

Commit and push a new version of the file
scripts_put_containers_shares_groups

Set the permissions groups has on this object
scripts_put_custom_shares_users

Set the permissions users have on this object
scripts_put_dbt_shares_users

Set the permissions users have on this object
scripts_put_dbt_projects

Add a dbt Script to a project
scripts_put_dbt_transfer

Transfer ownership of this object to another user
scripts_put_dbt_shares_groups

Set the permissions groups has on this object
scripts_put_custom_transfer

Transfer ownership of this object to another user
scripts_put_custom_shares_groups

Set the permissions groups has on this object
scripts_put_dbt_archive

Update the archive status of this object
scripts_put_dbt

Replace all attributes of this dbt Script
scripts_put_custom_projects

Add a Custom Script to a project
scripts_put_javascript_transfer

Transfer ownership of this object to another user
scripts_put_javascript_archive

Update the archive status of this object
scripts_put_javascript_projects

Add a JavaScript Script to a project
scripts_put_javascript_shares_groups

Set the permissions groups has on this object
scripts_put_javascript_git

Attach an item to a file in a git repo
scripts_put_python3_archive

Update the archive status of this object
scripts_put_javascript

Replace all attributes of this JavaScript Script
scripts_put_javascript_shares_users

Set the permissions users have on this object
scripts_put_python3_git

Attach an item to a file in a git repo
scripts_put_python3

Replace all attributes of this Python Script
scripts_put_r_shares_groups

Set the permissions groups has on this object
scripts_put_python3_shares_groups

Set the permissions groups has on this object
scripts_put_r_shares_users

Set the permissions users have on this object
scripts_put_python3_transfer

Transfer ownership of this object to another user
scripts_put_python3_shares_users

Set the permissions users have on this object
scripts_put_r_projects

Add an R Script to a project
scripts_put_r

Replace all attributes of this R Script
scripts_put_r_git

Attach an item to a file in a git repo
scripts_put_r_archive

Update the archive status of this object
scripts_put_python3_projects

Add a Python Script to a project
scripts_put_r_transfer

Transfer ownership of this object to another user
scripts_put_sql_projects

Add a SQL Script to a project
scripts_put_sql_archive

Update the archive status of this object
search_list

Perform a search
scripts_put_sql

Replace all attributes of this SQL Script
scripts_put_sql_shares_groups

Set the permissions groups has on this object
scripts_put_sql_git

Attach an item to a file in a git repo
search_list_queries

Search queries that are not hidden
scripts_put_sql_shares_users

Set the permissions users have on this object
scripts_put_sql_transfer

Transfer ownership of this object to another user
services_delete

Archive a Service (deprecated, use archiving endpoints instead)
services_delete_shares_groups

Revoke the permissions a group has on this object
services_list

List Services
services_delete_shares_users

Revoke the permissions a user has on this object
services_delete_projects

Remove a Service from a project
services_get

Get a Service
services_delete_tokens

Revoke a token by id
services_delete_deployments

Delete a Service deployment
services_get_deployments

Get details about a Service deployment
search_list_types

List available search types
services_list_deployments_logs

Get the logs for a Service deployment
services_post_clone

Clone this Service
services_list_dependencies

List dependent objects for this object
services_post_deployments

Deploy a Service
services_list_projects

List the projects a Service belongs to
services_patch

Update some attributes of this Service
services_post

Create a Service
services_list_tokens

List tokens
services_list_shares

List users and groups permissioned on this object
services_list_deployments

List deployments for a Service
services_post_tokens

Create a new long-lived service token
services_put_projects

Add a Service to a project
services_put_transfer

Transfer ownership of this object to another user
services_put_archive

Update the archive status of this object
services_put_shares_groups

Set the permissions groups has on this object
services_post_redeploy

Redeploy a Service
services_put

Replace all attributes of this Service
sql

SQL escaping
services_put_shares_users

Set the permissions users have on this object
stash_local_dataframe

Stash a data frame in feather or csv format, depending on CivisML version.
storage_hosts_list

List the storage hosts
storage_hosts_delete_shares_groups

Revoke the permissions a group has on this object
storage_hosts_delete_shares_users

Revoke the permissions a user has on this object
storage_hosts_list_shares

List users and groups permissioned on this object
storage_hosts_put

Replace all attributes of this storage host
storage_hosts_get

Get a storage host
storage_hosts_post

Create a new storage host
storage_hosts_patch

Update some attributes of this storage host
storage_hosts_list_dependencies

List dependent objects for this object
storage_hosts_delete

Delete a storage host (deprecated)
table_tags_get

Get a Table Tag
storage_hosts_put_shares_groups

Set the permissions groups has on this object
table_tags_list

List Table Tags
storage_hosts_put_transfer

Transfer ownership of this object to another user
storage_hosts_put_shares_users

Set the permissions users have on this object
tables_get

Show basic table info
table_tags_post

Create a Table Tag
tables_delete_tags

Add a tag to a table
tables_delete_projects

Remove a Table from a project
table_tags_delete

Delete a Table Tag
tables_get_enhancements_geocodings

View the status of a geocoding table enhancement
tables_post_refresh

Request a refresh for column and table statistics
tables_list_projects

List the projects a Table belongs to
tables_post_scan

Creates and enqueues a single table scanner job on a new table
tables_post_enhancements_cass_ncoa

Standardize addresses in a table
tables_patch

Update a table
tables_get_enhancements_cass_ncoa

View the status of a CASS / NCOA table enhancement
tables_list_columns

List columns in the specified table
tables_post_enhancements_geocodings

Geocode a table
tables_list

List tables
templates_delete_scripts_shares_groups

Revoke the permissions a group has on this object
templates_delete_reports_shares_users

Revoke the permissions a user has on this object
tables_put_tags

Add a tag to a table
templates_delete_reports

Archive a Report Template (deprecated, use archiving endpoints instead)
templates_delete_scripts

Archive a Script Template (deprecated, use archiving endpoints instead)
tables_put_projects

Add a Table to a project
templates_delete_scripts_projects

Remove a Script Template from a project
templates_delete_scripts_shares_users

Revoke the permissions a user has on this object
templates_get_reports

Get a Report Template
templates_delete_reports_shares_groups

Revoke the permissions a group has on this object
templates_list_reports_shares

List users and groups permissioned on this object
templates_list_scripts

List Script Templates
templates_patch_scripts

Update some attributes of this Script Template
templates_list_scripts_dependencies

List dependent objects for this object
templates_list_reports_dependencies

List dependent objects for this object
templates_list_reports

List Report Templates
templates_get_scripts

Get a Script Template
templates_list_scripts_projects

List the projects a Script Template belongs to
templates_patch_reports

Update some attributes of this Report Template
templates_list_scripts_shares

List users and groups permissioned on this object
templates_put_scripts_shares_groups

Set the permissions groups has on this object
templates_put_reports_shares_users

Set the permissions users have on this object
templates_put_scripts_projects

Add a Script Template to a project
templates_put_reports_transfer

Transfer ownership of this object to another user
templates_put_reports

Replace all attributes of this Report Template
templates_put_reports_shares_groups

Set the permissions groups has on this object
templates_post_scripts

Create a Script Template
templates_put_scripts_shares_users

Set the permissions users have on this object
templates_post_reports

Create a Report Template
templates_put_scripts

Replace all attributes of this Script Template
usage_limits_get_matching

Get a Matching Usage Limit
templates_put_scripts_transfer

Transfer ownership of this object to another user
usage_get_llm

Get an individual usage statistic for a given organization
usage_list_matching

Get usage statistics for a given organization
transfer_table

Transfer a table from one location to another.
usage_limits_get_llm

Get a LLM Usage Limit
usage_list_llm

Get a list of usage statistics for a given organization
usage_limits_list_llm

List LLM Usage Limits
usage_list_llm_organization_summary

Get summarized usage statistics for a given organization
usage_limits_list_matching

List Matching Usage Limits
users_delete_2fa

Wipes the user's current 2FA settings so that they must reset them upon next login
users_list_api_keys

Show API keys belonging to the specified user
users_list_me

Show info about the logged-in user
users_delete_me_favorites

Unfavorite an item
users_delete_sessions

Terminate all of the user's active sessions (must be a team or org admin)
users_list_me_activity

Get recent activity for logged-in user
users_delete_api_keys

Revoke the specified API key
users_list

List users
users_get_api_keys

Show the specified API key
users_get

Show info about a user
users_patch

Update info about a user (must be a team or org admin)
users_post

Create a new user (must be a team or org admin)
users_list_me_favorites

List Favorites
users_post_access_email

Sends the target user a 'Reset Password' or 'Welcome to Platform' email depending on the their status - Only available to Org and Team Admins
users_patch_me_favorites_ranking_lower

Move a favorite one position closer to the bottom of the list
users_patch_me

Update info about the logged-in user
users_list_me_organization_admins

Get list of organization admins for logged-in user
users_patch_me_favorites_ranking_higher

Move a favorite one position closer to the top of the list
users_patch_me_favorites_ranking_bottom

Move a favorite to the bottom of the list
users_patch_me_favorites_ranking_top

Move a favorite to the top of the list
workflows_delete_shares_users

Revoke the permissions a user has on this object
users_post_unsuspend

Unsuspends user
workflows_delete_projects

Remove a Workflow from a project
workflows_get_executions_tasks

Get a task of a workflow execution
workflows_get_executions

Get a workflow execution
workflows_delete_shares_groups

Revoke the permissions a group has on this object
users_post_api_keys

Create a new API key belonging to the logged-in user
workflows_get

Get a Workflow
users_post_me_favorites

Favorite an item
with_tempfile

Call a function with a temporary file.
workflows_patch_git

Update an attached git file
workflows_list_projects

List the projects a Workflow belongs to
workflows_list_git_commits

Get the git commits for an item on the current branch
workflows_patch

Update some attributes of this Workflow
workflows_list_executions

List workflow executions
workflows_list_dependencies

List dependent objects for this object
workflows_list_git

Get the git metadata attached to an item
workflows_get_git_commits

Get file contents at git ref
workflows_list_shares

List users and groups permissioned on this object
workflows_list

List Workflows
workflows_put

Replace all attributes of this Workflow
workflows_post_git_commits

Commit and push a new version of the file
workflows_post_executions_resume

Resume a paused workflow execution
workflows_post_git_checkout_latest

Checkout latest commit on the current branch of a script or workflow
workflows_post_executions_retry

Retry a failed task, or all failed tasks in an execution
workflows_post_clone

Clone this Workflow
workflows_put_archive

Update the archive status of this object
workflows_post_executions

Execute a workflow
workflows_post_executions_cancel

Cancel a workflow execution
workflows_post

Create a Workflow
workflows_put_shares_users

Set the permissions users have on this object
workflows_put_git

Attach an item to a file in a git repo
write_civis

Upload a local data frame or csv file to the Civis Platform (Redshift)
workflows_put_projects

Add a Workflow to a project
workflows_put_transfer

Transfer ownership of this object to another user
write_chunks

Split a file into chunks of a given chunk size, returning a list of file names.
write_job_output

Add a file as a run output if called from a container job
write_civis_file

Upload a R object or file to Civis Platform (Files endpoint)
workflows_put_shares_groups

Set the permissions groups has on this object