docs/ProjectApi.md in ory-client-1.15.7 vs docs/ProjectApi.md in ory-client-1.15.10

- old
+ new

@@ -1,21 +1,21 @@ # OryClient::ProjectApi -All URIs are relative to *https://.projects.oryapis.com* +All URIs are relative to *https://playground.projects.oryapis.com* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**create_organization**](ProjectApi.md#create_organization) | **POST** /projects/{project_id}/organizations | Create an Enterprise SSO Organization | | [**create_project**](ProjectApi.md#create_project) | **POST** /projects | Create a Project | -| [**create_project_api_key**](ProjectApi.md#create_project_api_key) | **POST** /projects/{project}/tokens | Create project API token | +| [**create_project_api_key**](ProjectApi.md#create_project_api_key) | **POST** /projects/{project}/tokens | Create project API key | | [**delete_organization**](ProjectApi.md#delete_organization) | **DELETE** /projects/{project_id}/organizations/{organization_id} | Delete Enterprise SSO Organization | -| [**delete_project_api_key**](ProjectApi.md#delete_project_api_key) | **DELETE** /projects/{project}/tokens/{token_id} | Delete project API token | +| [**delete_project_api_key**](ProjectApi.md#delete_project_api_key) | **DELETE** /projects/{project}/tokens/{token_id} | Delete project API key | | [**get_organization**](ProjectApi.md#get_organization) | **GET** /projects/{project_id}/organizations/{organization_id} | Get Enterprise SSO Organization by ID | | [**get_project**](ProjectApi.md#get_project) | **GET** /projects/{project_id} | Get a Project | | [**get_project_members**](ProjectApi.md#get_project_members) | **GET** /projects/{project}/members | Get all members associated with this project | | [**list_organizations**](ProjectApi.md#list_organizations) | **GET** /projects/{project_id}/organizations | List all Enterprise SSO organizations | -| [**list_project_api_keys**](ProjectApi.md#list_project_api_keys) | **GET** /projects/{project}/tokens | List a project&#39;s API Tokens | +| [**list_project_api_keys**](ProjectApi.md#list_project_api_keys) | **GET** /projects/{project}/tokens | List a project&#39;s API keys | | [**list_projects**](ProjectApi.md#list_projects) | **GET** /projects | List All Projects | | [**patch_project**](ProjectApi.md#patch_project) | **PATCH** /projects/{project_id} | Patch an Ory Network Project Configuration | | [**patch_project_with_revision**](ProjectApi.md#patch_project_with_revision) | **PATCH** /projects/{project_id}/revision/{revision_id} | Patch an Ory Network Project Configuration based on a revision ID | | [**purge_project**](ProjectApi.md#purge_project) | **DELETE** /projects/{project_id} | Irrecoverably purge a project | | [**remove_project_member**](ProjectApi.md#remove_project_member) | **DELETE** /projects/{project}/members/{member} | Remove a member associated with this project | @@ -169,13 +169,13 @@ ## create_project_api_key > <ProjectApiKey> create_project_api_key(project, opts) -Create project API token +Create project API key -Create an API token for a project. +Create an API key for a project. ### Examples ```ruby require 'time' @@ -191,11 +191,11 @@ opts = { create_project_api_key_request: OryClient::CreateProjectApiKeyRequest.new({name: 'name_example'}) # CreateProjectApiKeyRequest | } begin - # Create project API token + # Create project API key result = api_instance.create_project_api_key(project, opts) p result rescue OryClient::ApiError => e puts "Error when calling ProjectApi->create_project_api_key: #{e}" end @@ -207,11 +207,11 @@ > <Array(<ProjectApiKey>, Integer, Hash)> create_project_api_key_with_http_info(project, opts) ```ruby begin - # Create project API token + # Create project API key data, status_code, headers = api_instance.create_project_api_key_with_http_info(project, opts) p status_code # => 2xx p headers # => { ... } p data # => <ProjectApiKey> rescue OryClient::ApiError => e @@ -312,13 +312,13 @@ ## delete_project_api_key > delete_project_api_key(project, token_id) -Delete project API token +Delete project API key -Deletes an API token and immediately removes it. +Deletes an API key and immediately removes it. ### Examples ```ruby require 'time' @@ -332,11 +332,11 @@ api_instance = OryClient::ProjectApi.new project = 'project_example' # String | The Project ID or Project slug token_id = 'token_id_example' # String | The Token ID begin - # Delete project API token + # Delete project API key api_instance.delete_project_api_key(project, token_id) rescue OryClient::ApiError => e puts "Error when calling ProjectApi->delete_project_api_key: #{e}" end ``` @@ -347,11 +347,11 @@ > <Array(nil, Integer, Hash)> delete_project_api_key_with_http_info(project, token_id) ```ruby begin - # Delete project API token + # Delete project API key data, status_code, headers = api_instance.delete_project_api_key_with_http_info(project, token_id) p status_code # => 2xx p headers # => { ... } p data # => nil rescue OryClient::ApiError => e @@ -668,13 +668,13 @@ ## list_project_api_keys > <Array<ProjectApiKey>> list_project_api_keys(project) -List a project's API Tokens +List a project's API keys -A list of all the project's API tokens. +A list of all the project's API keys. ### Examples ```ruby require 'time' @@ -687,11 +687,11 @@ api_instance = OryClient::ProjectApi.new project = 'project_example' # String | The Project ID or Project slug begin - # List a project's API Tokens + # List a project's API keys result = api_instance.list_project_api_keys(project) p result rescue OryClient::ApiError => e puts "Error when calling ProjectApi->list_project_api_keys: #{e}" end @@ -703,10 +703,10 @@ > <Array(<Array<ProjectApiKey>>, Integer, Hash)> list_project_api_keys_with_http_info(project) ```ruby begin - # List a project's API Tokens + # List a project's API keys data, status_code, headers = api_instance.list_project_api_keys_with_http_info(project) p status_code # => 2xx p headers # => { ... } p data # => <Array<ProjectApiKey>> rescue OryClient::ApiError => e