Skip to content

Latest commit

 

History

History
593 lines (419 loc) · 20.9 KB

OrganizationsApi.md

File metadata and controls

593 lines (419 loc) · 20.9 KB

ClerkBackend::OrganizationsApi

All URIs are relative to https://api.clerk.com/v1

Method HTTP request Description
create_organization POST /organizations Create an organization
delete_organization DELETE /organizations/{organization_id} Delete an organization
delete_organization_logo DELETE /organizations/{organization_id}/logo
get_organization GET /organizations/{organization_id} Retrieve an organization by ID or slug
list_organizations GET /organizations Get a list of organizations for an instance
merge_organization_metadata PATCH /organizations/{organization_id}/metadata Merge and update metadata for an organization
update_organization PATCH /organizations/{organization_id} Update an organization
upload_organization_logo PUT /organizations/{organization_id}/logo Upload a logo for the organization

create_organization

create_organization(opts)

Create an organization

Creates a new organization with the given name for an instance. In order to successfully create an organization you need to provide the ID of the User who will become the organization administrator. You can specify an optional slug for the new organization. If provided, the organization slug can contain only lowercase alphanumeric characters (letters and digits) and the dash "-". Organization slugs must be unique for the instance. You can provide additional metadata for the organization and set any custom attribute you want. Organizations support private and public metadata. Private metadata can only be accessed from the Backend API. Public metadata can be accessed from the Backend API, and are read-only from the Frontend API. The created_by user will see this as their [active organization] (https://clerk.com/docs/organizations/overview#active-organization) the next time they create a session, presuming they don't explicitly set a different organization as active before then.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
opts = {
  create_organization_request: ClerkBackend::CreateOrganizationRequest.new({name: 'name_example', created_by: 'created_by_example'}) # CreateOrganizationRequest | 
}

begin
  # Create an organization
  result = api_instance.create_organization(opts)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->create_organization: #{e}"
end

Using the create_organization_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> create_organization_with_http_info(opts)

begin
  # Create an organization
  data, status_code, headers = api_instance.create_organization_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <Organization>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->create_organization_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
create_organization_request CreateOrganizationRequest [optional]

Return type

Organization

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

delete_organization

delete_organization(organization_id)

Delete an organization

Deletes the given organization. Please note that deleting an organization will also delete all memberships and invitations. This is not reversible.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
organization_id = 'organization_id_example' # String | The ID of the organization to delete

begin
  # Delete an organization
  result = api_instance.delete_organization(organization_id)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->delete_organization: #{e}"
end

Using the delete_organization_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> delete_organization_with_http_info(organization_id)

begin
  # Delete an organization
  data, status_code, headers = api_instance.delete_organization_with_http_info(organization_id)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <DeletedObject>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->delete_organization_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
organization_id String The ID of the organization to delete

Return type

DeletedObject

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

delete_organization_logo

delete_organization_logo(organization_id)

Delete the organization's logo.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
organization_id = 'organization_id_example' # String | The ID of the organization for which the logo will be deleted.

begin
  
  result = api_instance.delete_organization_logo(organization_id)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->delete_organization_logo: #{e}"
end

Using the delete_organization_logo_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> delete_organization_logo_with_http_info(organization_id)

begin
  
  data, status_code, headers = api_instance.delete_organization_logo_with_http_info(organization_id)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <Organization>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->delete_organization_logo_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
organization_id String The ID of the organization for which the logo will be deleted.

Return type

Organization

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

get_organization

get_organization(organization_id, opts)

Retrieve an organization by ID or slug

Fetches the organization whose ID or slug matches the provided id_or_slug URL query parameter.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
organization_id = 'organization_id_example' # String | The ID or slug of the organization
opts = {
  include_members_count: true # Boolean | Flag to denote whether or not the organization's members count should be included in the response.
}

begin
  # Retrieve an organization by ID or slug
  result = api_instance.get_organization(organization_id, opts)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->get_organization: #{e}"
end

Using the get_organization_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_organization_with_http_info(organization_id, opts)

begin
  # Retrieve an organization by ID or slug
  data, status_code, headers = api_instance.get_organization_with_http_info(organization_id, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <Organization>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->get_organization_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
organization_id String The ID or slug of the organization
include_members_count Boolean Flag to denote whether or not the organization's members count should be included in the response. [optional]

Return type

Organization

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

list_organizations

list_organizations(opts)

Get a list of organizations for an instance

This request returns the list of organizations for an instance. Results can be paginated using the optional limit and offset query parameters. The organizations are ordered by descending creation date. Most recent organizations will be returned first.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
opts = {
  limit: 8.14, # Float | Applies a limit to the number of results returned. Can be used for paginating the results together with `offset`.
  offset: 8.14, # Float | Skip the first `offset` results when paginating. Needs to be an integer greater or equal to zero. To be used in conjunction with `limit`.
  include_members_count: true, # Boolean | Flag to denote whether the member counts of each organization should be included in the response or not.
  query: 'query_example', # String | Returns organizations with ID, name, or slug that match the given query. Uses exact match for organization ID and partial match for name and slug.
  order_by: 'order_by_example' # String | Allows to return organizations in a particular order. At the moment, you can order the returned organizations either by their `name`, `created_at` or `members_count`. In order to specify the direction, you can use the `+/-` symbols prepended in the property to order by. For example, if you want organizations to be returned in descending order according to their `created_at` property, you can use `-created_at`. If you don't use `+` or `-`, then `+` is implied. Defaults to `-created_at`.
}

begin
  # Get a list of organizations for an instance
  result = api_instance.list_organizations(opts)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->list_organizations: #{e}"
end

Using the list_organizations_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> list_organizations_with_http_info(opts)

begin
  # Get a list of organizations for an instance
  data, status_code, headers = api_instance.list_organizations_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <Organizations>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->list_organizations_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
limit Float Applies a limit to the number of results returned. Can be used for paginating the results together with `offset`. [optional][default to 10]
offset Float Skip the first `offset` results when paginating. Needs to be an integer greater or equal to zero. To be used in conjunction with `limit`. [optional][default to 0]
include_members_count Boolean Flag to denote whether the member counts of each organization should be included in the response or not. [optional]
query String Returns organizations with ID, name, or slug that match the given query. Uses exact match for organization ID and partial match for name and slug. [optional]
order_by String Allows to return organizations in a particular order. At the moment, you can order the returned organizations either by their `name`, `created_at` or `members_count`. In order to specify the direction, you can use the `+/-` symbols prepended in the property to order by. For example, if you want organizations to be returned in descending order according to their `created_at` property, you can use `-created_at`. If you don't use `+` or `-`, then `+` is implied. Defaults to `-created_at`. [optional][default to '-created_at']

Return type

Organizations

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

merge_organization_metadata

merge_organization_metadata(organization_id, merge_organization_metadata_request)

Merge and update metadata for an organization

Update organization metadata attributes by merging existing values with the provided parameters. Metadata values will be updated via a deep merge. Deep meaning that any nested JSON objects will be merged as well. You can remove metadata keys at any level by setting their value to null.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
organization_id = 'organization_id_example' # String | The ID of the organization for which metadata will be merged or updated
merge_organization_metadata_request = ClerkBackend::MergeOrganizationMetadataRequest.new # MergeOrganizationMetadataRequest | 

begin
  # Merge and update metadata for an organization
  result = api_instance.merge_organization_metadata(organization_id, merge_organization_metadata_request)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->merge_organization_metadata: #{e}"
end

Using the merge_organization_metadata_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> merge_organization_metadata_with_http_info(organization_id, merge_organization_metadata_request)

begin
  # Merge and update metadata for an organization
  data, status_code, headers = api_instance.merge_organization_metadata_with_http_info(organization_id, merge_organization_metadata_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <Organization>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->merge_organization_metadata_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
organization_id String The ID of the organization for which metadata will be merged or updated
merge_organization_metadata_request MergeOrganizationMetadataRequest

Return type

Organization

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

update_organization

update_organization(organization_id, update_organization_request)

Update an organization

Updates an existing organization

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
organization_id = 'organization_id_example' # String | The ID of the organization to update
update_organization_request = ClerkBackend::UpdateOrganizationRequest.new # UpdateOrganizationRequest | 

begin
  # Update an organization
  result = api_instance.update_organization(organization_id, update_organization_request)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->update_organization: #{e}"
end

Using the update_organization_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> update_organization_with_http_info(organization_id, update_organization_request)

begin
  # Update an organization
  data, status_code, headers = api_instance.update_organization_with_http_info(organization_id, update_organization_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <Organization>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->update_organization_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
organization_id String The ID of the organization to update
update_organization_request UpdateOrganizationRequest

Return type

Organization

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

upload_organization_logo

upload_organization_logo(organization_id, file, opts)

Upload a logo for the organization

Set or replace an organization's logo, by uploading an image file. This endpoint uses the multipart/form-data request content type and accepts a file of image type. The file size cannot exceed 10MB. Only the following file content types are supported: image/jpeg, image/png, image/gif, image/webp, image/x-icon, image/vnd.microsoft.icon.

Examples

require 'time'
require 'clerk-sdk-ruby-backend'
# setup authorization
ClerkBackend.configure do |config|
  # Configure Bearer authorization (sk_<environment>_<secret value>): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
end

api_instance = ClerkBackend::OrganizationsApi.new
organization_id = 'organization_id_example' # String | The ID of the organization for which to upload a logo
file = File.new('/path/to/some/file') # File | 
opts = {
  uploader_user_id: 'uploader_user_id_example' # String | The ID of the user that will be credited with the image upload.
}

begin
  # Upload a logo for the organization
  result = api_instance.upload_organization_logo(organization_id, file, opts)
  p result
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->upload_organization_logo: #{e}"
end

Using the upload_organization_logo_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> upload_organization_logo_with_http_info(organization_id, file, opts)

begin
  # Upload a logo for the organization
  data, status_code, headers = api_instance.upload_organization_logo_with_http_info(organization_id, file, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <OrganizationWithLogo>
rescue ClerkBackend::ApiError => e
  puts "Error when calling OrganizationsApi->upload_organization_logo_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
organization_id String The ID of the organization for which to upload a logo
file File
uploader_user_id String The ID of the user that will be credited with the image upload. [optional]

Return type

OrganizationWithLogo

Authorization

bearerAuth

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json