kinde_sdk 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +128 -0
- data/README.md +12 -434
- data/kinde_api/README.md +98 -27
- data/kinde_api/docs/APIsApi.md +356 -0
- data/kinde_api/docs/AddAPIsRequest.md +20 -0
- data/kinde_api/docs/Api.md +28 -0
- data/kinde_api/docs/ApiApplicationsInner.md +24 -0
- data/kinde_api/docs/Apis.md +24 -0
- data/kinde_api/docs/Applications.md +22 -0
- data/kinde_api/docs/ApplicationsApi.md +368 -0
- data/kinde_api/docs/BusinessApi.md +183 -0
- data/kinde_api/docs/CallbacksApi.md +385 -25
- data/kinde_api/docs/CreateApplicationRequest.md +20 -0
- data/kinde_api/docs/CreateApplicationResponse.md +22 -0
- data/kinde_api/docs/CreateApplicationResponseApplication.md +22 -0
- data/kinde_api/docs/CreateFeatureFlagRequest.md +28 -0
- data/kinde_api/docs/CreateOrganizationRequest.md +3 -1
- data/kinde_api/docs/CreateOrganizationUserPermissionRequest.md +18 -0
- data/kinde_api/docs/EnvironmentsApi.md +23 -23
- data/kinde_api/docs/FeatureFlagsApi.md +19 -29
- data/kinde_api/docs/GetApplicationResponse.md +22 -0
- data/kinde_api/docs/GetApplicationResponseApplication.md +26 -0
- data/kinde_api/docs/GetApplicationsResponse.md +2 -2
- data/kinde_api/docs/{GetOrganizationsUsersResponse.md → GetOrganizationUsersResponse.md} +2 -2
- data/kinde_api/docs/GetOrganizationsUserPermissionsResponse.md +22 -0
- data/kinde_api/docs/GetPermissionsResponse.md +24 -0
- data/kinde_api/docs/GetRolesResponse.md +24 -0
- data/kinde_api/docs/GetSubscriberResponse.md +22 -0
- data/kinde_api/docs/GetSubscribersResponse.md +24 -0
- data/kinde_api/docs/IndustriesApi.md +81 -0
- data/kinde_api/docs/LogoutRedirectUrls.md +18 -0
- data/kinde_api/docs/OAuthApi.md +153 -4
- data/kinde_api/docs/Organization.md +3 -1
- data/kinde_api/docs/OrganizationUserPermission.md +26 -0
- data/kinde_api/docs/OrganizationUserPermissionRolesInner.md +20 -0
- data/kinde_api/docs/OrganizationUserRolePermissions.md +22 -0
- data/kinde_api/docs/OrganizationUserRolePermissionsPermissions.md +18 -0
- data/kinde_api/docs/OrganizationsApi.md +328 -32
- data/kinde_api/docs/PermissionsApi.md +84 -14
- data/kinde_api/docs/ReplaceLogoutRedirectURLsRequest.md +18 -0
- data/kinde_api/docs/ReplaceRedirectCallbackURLsRequest.md +18 -0
- data/kinde_api/docs/Role.md +24 -0
- data/kinde_api/docs/Roles.md +2 -0
- data/kinde_api/docs/RolesApi.md +309 -17
- data/kinde_api/docs/RolesPermissionResponseInner.md +24 -0
- data/kinde_api/docs/Subscriber.md +24 -0
- data/kinde_api/docs/SubscribersApi.md +12 -14
- data/kinde_api/docs/SubscribersSubscriber.md +26 -0
- data/kinde_api/docs/TimezonesApi.md +81 -0
- data/kinde_api/docs/TokenErrorResponse.md +20 -0
- data/kinde_api/docs/TokenIntrospect.md +26 -0
- data/kinde_api/docs/UpdateAPIApplicationsRequest.md +18 -0
- data/kinde_api/docs/UpdateAPIApplicationsRequestApplicationsInner.md +20 -0
- data/kinde_api/docs/UpdateApplicationRequest.md +24 -0
- data/kinde_api/docs/UpdateEnvironementFeatureFlagOverrideRequest.md +18 -0
- data/kinde_api/docs/UpdateOrganizationRequest.md +3 -1
- data/kinde_api/docs/UpdateOrganizationUsersRequest.md +1 -1
- data/kinde_api/docs/UpdateRolePermissionsRequest.md +18 -0
- data/kinde_api/docs/UpdateRolePermissionsRequestPermissionsInner.md +20 -0
- data/kinde_api/docs/UpdateRolePermissionsResponse.md +24 -0
- data/kinde_api/docs/UpdateRolesRequest.md +24 -0
- data/kinde_api/docs/UpdateUserResponse.md +30 -0
- data/kinde_api/docs/User.md +7 -7
- data/kinde_api/docs/UserIdentitiesInner.md +20 -0
- data/kinde_api/docs/UsersApi.md +93 -15
- data/kinde_api/docs/UsersResponse.md +1 -1
- data/kinde_api/docs/UsersResponseUsersInner.md +42 -0
- data/kinde_api/lib/kinde_api/api/apis_api.rb +347 -0
- data/kinde_api/lib/kinde_api/api/applications_api.rb +352 -0
- data/kinde_api/lib/kinde_api/api/business_api.rb +210 -0
- data/kinde_api/lib/kinde_api/api/callbacks_api.rb +394 -31
- data/kinde_api/lib/kinde_api/api/environments_api.rb +22 -18
- data/kinde_api/lib/kinde_api/api/feature_flags_api.rb +20 -61
- data/kinde_api/lib/kinde_api/api/industries_api.rb +85 -0
- data/kinde_api/lib/kinde_api/api/o_auth_api.rb +141 -2
- data/kinde_api/lib/kinde_api/api/organizations_api.rb +318 -25
- data/kinde_api/lib/kinde_api/api/permissions_api.rb +75 -12
- data/kinde_api/lib/kinde_api/api/roles_api.rb +297 -15
- data/kinde_api/lib/kinde_api/api/subscribers_api.rb +8 -11
- data/kinde_api/lib/kinde_api/api/timezones_api.rb +85 -0
- data/kinde_api/lib/kinde_api/api/users_api.rb +87 -11
- data/kinde_api/lib/kinde_api/api_client.rb +14 -7
- data/kinde_api/lib/kinde_api/configuration.rb +81 -5
- data/kinde_api/lib/kinde_api/models/add_apis_request.rb +238 -0
- data/kinde_api/lib/kinde_api/models/add_organization_users_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/add_organization_users_request_users_inner.rb +2 -0
- data/kinde_api/lib/kinde_api/models/add_organization_users_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/api.rb +271 -0
- data/kinde_api/lib/kinde_api/models/api_applications_inner.rb +246 -0
- data/kinde_api/lib/kinde_api/models/api_result.rb +2 -0
- data/kinde_api/lib/kinde_api/models/apis.rb +250 -0
- data/kinde_api/lib/kinde_api/models/applications.rb +237 -0
- data/kinde_api/lib/kinde_api/models/connected_apps_access_token.rb +2 -0
- data/kinde_api/lib/kinde_api/models/connected_apps_auth_url.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_application_request.rb +264 -0
- data/kinde_api/lib/kinde_api/models/create_application_response.rb +239 -0
- data/kinde_api/lib/kinde_api/models/create_application_response_application.rb +240 -0
- data/kinde_api/lib/kinde_api/models/create_feature_flag_request.rb +336 -0
- data/kinde_api/lib/kinde_api/models/create_organization_request.rb +16 -4
- data/kinde_api/lib/kinde_api/models/create_organization_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_organization_response_organization.rb +2 -0
- data/kinde_api/lib/kinde_api/models/{application.rb → create_organization_user_permission_request.rb} +13 -19
- data/kinde_api/lib/kinde_api/models/create_organization_user_role_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_permission_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_role_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_subscriber_success_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_subscriber_success_response_subscriber.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request_identities_inner.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request_identities_inner_details.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request_profile.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/error.rb +2 -0
- data/kinde_api/lib/kinde_api/models/error_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_application_response.rb +239 -0
- data/kinde_api/lib/kinde_api/models/get_application_response_application.rb +260 -0
- data/kinde_api/lib/kinde_api/models/get_applications_response.rb +10 -8
- data/kinde_api/lib/kinde_api/models/get_environment_feature_flags_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_organization_feature_flags_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_organization_feature_flags_response_feature_flags_value.rb +2 -0
- data/kinde_api/lib/kinde_api/models/{get_organizations_users_response.rb → get_organization_users_response.rb} +5 -3
- data/kinde_api/lib/kinde_api/models/get_organizations_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_organizations_user_permissions_response.rb +241 -0
- data/kinde_api/lib/kinde_api/models/get_organizations_user_roles_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_permissions_response.rb +251 -0
- data/kinde_api/lib/kinde_api/models/get_redirect_callback_urls_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_roles_response.rb +251 -0
- data/kinde_api/lib/kinde_api/models/get_subscriber_response.rb +241 -0
- data/kinde_api/lib/kinde_api/models/get_subscribers_response.rb +251 -0
- data/kinde_api/lib/kinde_api/models/logout_redirect_urls.rb +222 -0
- data/kinde_api/lib/kinde_api/models/organization.rb +15 -4
- data/kinde_api/lib/kinde_api/models/organization_user.rb +2 -0
- data/kinde_api/lib/kinde_api/models/organization_user_permission.rb +257 -0
- data/kinde_api/lib/kinde_api/models/organization_user_permission_roles_inner.rb +228 -0
- data/kinde_api/lib/kinde_api/models/organization_user_role.rb +2 -0
- data/kinde_api/lib/kinde_api/models/organization_user_role_permissions.rb +237 -0
- data/kinde_api/lib/kinde_api/models/organization_user_role_permissions_permissions.rb +219 -0
- data/kinde_api/lib/kinde_api/models/permissions.rb +2 -0
- data/kinde_api/lib/kinde_api/models/redirect_callback_urls.rb +2 -0
- data/kinde_api/lib/kinde_api/models/replace_logout_redirect_urls_request.rb +222 -0
- data/kinde_api/lib/kinde_api/models/replace_redirect_callback_urls_request.rb +222 -0
- data/kinde_api/lib/kinde_api/models/role.rb +246 -0
- data/kinde_api/lib/kinde_api/models/roles.rb +13 -1
- data/kinde_api/lib/kinde_api/models/roles_permission_response_inner.rb +246 -0
- data/kinde_api/lib/kinde_api/models/subscriber.rb +246 -0
- data/kinde_api/lib/kinde_api/models/subscribers_subscriber.rb +255 -0
- data/kinde_api/lib/kinde_api/models/success_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/token_error_response.rb +230 -0
- data/kinde_api/lib/kinde_api/models/token_introspect.rb +262 -0
- data/kinde_api/lib/kinde_api/models/update_api_applications_request.rb +226 -0
- data/kinde_api/lib/kinde_api/models/update_api_applications_request_applications_inner.rb +235 -0
- data/kinde_api/lib/kinde_api/models/update_application_request.rb +254 -0
- data/kinde_api/lib/kinde_api/models/update_environement_feature_flag_override_request.rb +225 -0
- data/kinde_api/lib/kinde_api/models/update_organization_request.rb +16 -4
- data/kinde_api/lib/kinde_api/models/update_organization_users_request.rb +3 -1
- data/kinde_api/lib/kinde_api/models/update_organization_users_request_users_inner.rb +2 -0
- data/kinde_api/lib/kinde_api/models/update_organization_users_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/update_role_permissions_request.rb +222 -0
- data/kinde_api/lib/kinde_api/models/update_role_permissions_request_permissions_inner.rb +230 -0
- data/kinde_api/lib/kinde_api/models/update_role_permissions_response.rb +250 -0
- data/kinde_api/lib/kinde_api/models/update_roles_request.rb +260 -0
- data/kinde_api/lib/kinde_api/models/update_user_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/update_user_response.rb +280 -0
- data/kinde_api/lib/kinde_api/models/user.rb +37 -32
- data/kinde_api/lib/kinde_api/models/user_identities_inner.rb +228 -0
- data/kinde_api/lib/kinde_api/models/user_identity.rb +2 -0
- data/kinde_api/lib/kinde_api/models/user_identity_result.rb +2 -0
- data/kinde_api/lib/kinde_api/models/user_profile.rb +2 -0
- data/kinde_api/lib/kinde_api/models/user_profile_v2.rb +2 -0
- data/kinde_api/lib/kinde_api/models/users_response.rb +3 -1
- data/kinde_api/lib/kinde_api/models/users_response_users_inner.rb +348 -0
- data/kinde_api/lib/kinde_api.rb +47 -2
- data/kinde_api/spec/api/apis_api_spec.rb +95 -0
- data/kinde_api/spec/api/applications_api_spec.rb +98 -0
- data/kinde_api/spec/api/business_api_spec.rb +75 -0
- data/kinde_api/spec/api/callbacks_api_spec.rb +69 -5
- data/kinde_api/spec/api/environments_api_spec.rb +5 -5
- data/kinde_api/spec/api/feature_flags_api_spec.rb +4 -9
- data/kinde_api/spec/api/industries_api_spec.rb +48 -0
- data/kinde_api/spec/api/o_auth_api_spec.rb +28 -1
- data/kinde_api/spec/api/organizations_api_spec.rb +63 -8
- data/kinde_api/spec/api/permissions_api_spec.rb +16 -4
- data/kinde_api/spec/api/roles_api_spec.rb +57 -4
- data/kinde_api/spec/api/subscribers_api_spec.rb +3 -4
- data/kinde_api/spec/api/timezones_api_spec.rb +48 -0
- data/kinde_api/spec/api/users_api_spec.rb +17 -2
- data/kinde_api/spec/api_client_spec.rb +13 -2
- data/kinde_api/spec/models/{application_spec.rb → add_apis_request_spec.rb} +8 -8
- data/kinde_api/spec/models/api_applications_inner_spec.rb +52 -0
- data/kinde_api/spec/models/api_spec.rb +64 -0
- data/kinde_api/spec/models/apis_spec.rb +52 -0
- data/kinde_api/spec/models/applications_spec.rb +46 -0
- data/kinde_api/spec/models/create_application_request_spec.rb +44 -0
- data/kinde_api/spec/models/create_application_response_application_spec.rb +46 -0
- data/kinde_api/spec/models/create_application_response_spec.rb +46 -0
- data/kinde_api/spec/models/create_feature_flag_request_spec.rb +72 -0
- data/kinde_api/spec/models/create_organization_request_spec.rb +6 -0
- data/kinde_api/spec/models/create_organization_user_permission_request_spec.rb +34 -0
- data/kinde_api/spec/models/get_application_response_application_spec.rb +58 -0
- data/kinde_api/spec/models/get_application_response_spec.rb +46 -0
- data/kinde_api/spec/models/get_applications_response_spec.rb +1 -1
- data/kinde_api/spec/models/{get_organizations_users_response_spec.rb → get_organization_users_response_spec.rb} +6 -6
- data/kinde_api/spec/models/get_organizations_user_permissions_response_spec.rb +46 -0
- data/kinde_api/spec/models/get_permissions_response_spec.rb +52 -0
- data/kinde_api/spec/models/get_roles_response_spec.rb +52 -0
- data/kinde_api/spec/models/get_subscriber_response_spec.rb +46 -0
- data/kinde_api/spec/models/get_subscribers_response_spec.rb +52 -0
- data/kinde_api/spec/models/logout_redirect_urls_spec.rb +34 -0
- data/kinde_api/spec/models/organization_spec.rb +6 -0
- data/kinde_api/spec/models/organization_user_permission_roles_inner_spec.rb +40 -0
- data/kinde_api/spec/models/organization_user_permission_spec.rb +58 -0
- data/kinde_api/spec/models/organization_user_role_permissions_permissions_spec.rb +34 -0
- data/kinde_api/spec/models/organization_user_role_permissions_spec.rb +46 -0
- data/kinde_api/spec/models/replace_logout_redirect_urls_request_spec.rb +34 -0
- data/kinde_api/spec/models/replace_redirect_callback_urls_request_spec.rb +34 -0
- data/kinde_api/spec/models/role_spec.rb +52 -0
- data/kinde_api/spec/models/roles_permission_response_inner_spec.rb +52 -0
- data/kinde_api/spec/models/roles_spec.rb +6 -0
- data/kinde_api/spec/models/subscriber_spec.rb +52 -0
- data/kinde_api/spec/models/subscribers_subscriber_spec.rb +58 -0
- data/kinde_api/spec/models/token_error_response_spec.rb +40 -0
- data/kinde_api/spec/models/token_introspect_spec.rb +58 -0
- data/kinde_api/spec/models/update_api_applications_request_applications_inner_spec.rb +40 -0
- data/kinde_api/spec/models/update_api_applications_request_spec.rb +34 -0
- data/kinde_api/spec/models/update_application_request_spec.rb +52 -0
- data/kinde_api/spec/models/update_environement_feature_flag_override_request_spec.rb +34 -0
- data/kinde_api/spec/models/update_organization_request_spec.rb +6 -0
- data/kinde_api/spec/models/update_role_permissions_request_permissions_inner_spec.rb +40 -0
- data/kinde_api/spec/models/update_role_permissions_request_spec.rb +34 -0
- data/kinde_api/spec/models/update_role_permissions_response_spec.rb +52 -0
- data/kinde_api/spec/models/update_roles_request_spec.rb +52 -0
- data/kinde_api/spec/models/update_user_response_spec.rb +70 -0
- data/kinde_api/spec/models/user_identities_inner_spec.rb +40 -0
- data/kinde_api/spec/models/user_spec.rb +9 -9
- data/kinde_api/spec/models/users_response_users_inner_spec.rb +106 -0
- data/kinde_sdk.gemspec +1 -1
- data/lib/kinde_sdk/version.rb +1 -1
- data/spec/kinde_sdk_spec.rb +0 -46
- metadata +193 -12
- data/kinde_api/docs/Application.md +0 -20
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# KindeApi::Apis
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **id** | **String** | Unique id of the API. | [optional] |
|
|
8
|
+
| **name** | **String** | The API's name. | [optional] |
|
|
9
|
+
| **audience** | **String** | The logical identifier for the API. | [optional] |
|
|
10
|
+
| **is_management_api** | **Boolean** | Whether it is the management API or not. | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'kinde_api'
|
|
16
|
+
|
|
17
|
+
instance = KindeApi::Apis.new(
|
|
18
|
+
id: null,
|
|
19
|
+
name: null,
|
|
20
|
+
audience: null,
|
|
21
|
+
is_management_api: null
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# KindeApi::Applications
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **id** | **String** | | [optional] |
|
|
8
|
+
| **name** | **String** | | [optional] |
|
|
9
|
+
| **type** | **String** | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'kinde_api'
|
|
15
|
+
|
|
16
|
+
instance = KindeApi::Applications.new(
|
|
17
|
+
id: null,
|
|
18
|
+
name: null,
|
|
19
|
+
type: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
# KindeApi::ApplicationsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://app.kinde.com*
|
|
4
|
+
|
|
5
|
+
| Method | HTTP request | Description |
|
|
6
|
+
| ------ | ------------ | ----------- |
|
|
7
|
+
| [**create_application**](ApplicationsApi.md#create_application) | **POST** /api/v1/applications | Create Application |
|
|
8
|
+
| [**delete_application**](ApplicationsApi.md#delete_application) | **DELETE** /api/v1/applications/{application_id} | Delete Application |
|
|
9
|
+
| [**get_application**](ApplicationsApi.md#get_application) | **GET** /api/v1/applications/{application_id} | Get Application |
|
|
10
|
+
| [**get_applications**](ApplicationsApi.md#get_applications) | **GET** /api/v1/applications | List Applications |
|
|
11
|
+
| [**update_application**](ApplicationsApi.md#update_application) | **PATCH** /api/v1/applications/{application_id} | Update Application |
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## create_application
|
|
15
|
+
|
|
16
|
+
> <CreateApplicationResponse> create_application(opts)
|
|
17
|
+
|
|
18
|
+
Create Application
|
|
19
|
+
|
|
20
|
+
Create an application.
|
|
21
|
+
|
|
22
|
+
### Examples
|
|
23
|
+
|
|
24
|
+
```ruby
|
|
25
|
+
require 'time'
|
|
26
|
+
require 'kinde_api'
|
|
27
|
+
# setup authorization
|
|
28
|
+
KindeApi.configure do |config|
|
|
29
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
30
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
api_instance = KindeApi::ApplicationsApi.new
|
|
34
|
+
opts = {
|
|
35
|
+
create_application_request: KindeApi::CreateApplicationRequest.new # CreateApplicationRequest | Application details.
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
begin
|
|
39
|
+
# Create Application
|
|
40
|
+
result = api_instance.create_application(opts)
|
|
41
|
+
p result
|
|
42
|
+
rescue KindeApi::ApiError => e
|
|
43
|
+
puts "Error when calling ApplicationsApi->create_application: #{e}"
|
|
44
|
+
end
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
#### Using the create_application_with_http_info variant
|
|
48
|
+
|
|
49
|
+
This returns an Array which contains the response data, status code and headers.
|
|
50
|
+
|
|
51
|
+
> <Array(<CreateApplicationResponse>, Integer, Hash)> create_application_with_http_info(opts)
|
|
52
|
+
|
|
53
|
+
```ruby
|
|
54
|
+
begin
|
|
55
|
+
# Create Application
|
|
56
|
+
data, status_code, headers = api_instance.create_application_with_http_info(opts)
|
|
57
|
+
p status_code # => 2xx
|
|
58
|
+
p headers # => { ... }
|
|
59
|
+
p data # => <CreateApplicationResponse>
|
|
60
|
+
rescue KindeApi::ApiError => e
|
|
61
|
+
puts "Error when calling ApplicationsApi->create_application_with_http_info: #{e}"
|
|
62
|
+
end
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Parameters
|
|
66
|
+
|
|
67
|
+
| Name | Type | Description | Notes |
|
|
68
|
+
| ---- | ---- | ----------- | ----- |
|
|
69
|
+
| **create_application_request** | [**CreateApplicationRequest**](CreateApplicationRequest.md) | Application details. | [optional] |
|
|
70
|
+
|
|
71
|
+
### Return type
|
|
72
|
+
|
|
73
|
+
[**CreateApplicationResponse**](CreateApplicationResponse.md)
|
|
74
|
+
|
|
75
|
+
### Authorization
|
|
76
|
+
|
|
77
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
78
|
+
|
|
79
|
+
### HTTP request headers
|
|
80
|
+
|
|
81
|
+
- **Content-Type**: application/json
|
|
82
|
+
- **Accept**: application/json, application/json; charset=utf-8
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
## delete_application
|
|
86
|
+
|
|
87
|
+
> <SuccessResponse> delete_application(application_id)
|
|
88
|
+
|
|
89
|
+
Delete Application
|
|
90
|
+
|
|
91
|
+
Delete application.
|
|
92
|
+
|
|
93
|
+
### Examples
|
|
94
|
+
|
|
95
|
+
```ruby
|
|
96
|
+
require 'time'
|
|
97
|
+
require 'kinde_api'
|
|
98
|
+
# setup authorization
|
|
99
|
+
KindeApi.configure do |config|
|
|
100
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
101
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
api_instance = KindeApi::ApplicationsApi.new
|
|
105
|
+
application_id = 'application_id_example' # String | The identifier for the application.
|
|
106
|
+
|
|
107
|
+
begin
|
|
108
|
+
# Delete Application
|
|
109
|
+
result = api_instance.delete_application(application_id)
|
|
110
|
+
p result
|
|
111
|
+
rescue KindeApi::ApiError => e
|
|
112
|
+
puts "Error when calling ApplicationsApi->delete_application: #{e}"
|
|
113
|
+
end
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
#### Using the delete_application_with_http_info variant
|
|
117
|
+
|
|
118
|
+
This returns an Array which contains the response data, status code and headers.
|
|
119
|
+
|
|
120
|
+
> <Array(<SuccessResponse>, Integer, Hash)> delete_application_with_http_info(application_id)
|
|
121
|
+
|
|
122
|
+
```ruby
|
|
123
|
+
begin
|
|
124
|
+
# Delete Application
|
|
125
|
+
data, status_code, headers = api_instance.delete_application_with_http_info(application_id)
|
|
126
|
+
p status_code # => 2xx
|
|
127
|
+
p headers # => { ... }
|
|
128
|
+
p data # => <SuccessResponse>
|
|
129
|
+
rescue KindeApi::ApiError => e
|
|
130
|
+
puts "Error when calling ApplicationsApi->delete_application_with_http_info: #{e}"
|
|
131
|
+
end
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Parameters
|
|
135
|
+
|
|
136
|
+
| Name | Type | Description | Notes |
|
|
137
|
+
| ---- | ---- | ----------- | ----- |
|
|
138
|
+
| **application_id** | **String** | The identifier for the application. | |
|
|
139
|
+
|
|
140
|
+
### Return type
|
|
141
|
+
|
|
142
|
+
[**SuccessResponse**](SuccessResponse.md)
|
|
143
|
+
|
|
144
|
+
### Authorization
|
|
145
|
+
|
|
146
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
147
|
+
|
|
148
|
+
### HTTP request headers
|
|
149
|
+
|
|
150
|
+
- **Content-Type**: Not defined
|
|
151
|
+
- **Accept**: application/json, application/json; charset=utf-8
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
## get_application
|
|
155
|
+
|
|
156
|
+
> <GetApplicationResponse> get_application(application_id)
|
|
157
|
+
|
|
158
|
+
Get Application
|
|
159
|
+
|
|
160
|
+
Gets an application given the application's id.
|
|
161
|
+
|
|
162
|
+
### Examples
|
|
163
|
+
|
|
164
|
+
```ruby
|
|
165
|
+
require 'time'
|
|
166
|
+
require 'kinde_api'
|
|
167
|
+
# setup authorization
|
|
168
|
+
KindeApi.configure do |config|
|
|
169
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
170
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
api_instance = KindeApi::ApplicationsApi.new
|
|
174
|
+
application_id = 'application_id_example' # String | The identifier for the application.
|
|
175
|
+
|
|
176
|
+
begin
|
|
177
|
+
# Get Application
|
|
178
|
+
result = api_instance.get_application(application_id)
|
|
179
|
+
p result
|
|
180
|
+
rescue KindeApi::ApiError => e
|
|
181
|
+
puts "Error when calling ApplicationsApi->get_application: #{e}"
|
|
182
|
+
end
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
#### Using the get_application_with_http_info variant
|
|
186
|
+
|
|
187
|
+
This returns an Array which contains the response data, status code and headers.
|
|
188
|
+
|
|
189
|
+
> <Array(<GetApplicationResponse>, Integer, Hash)> get_application_with_http_info(application_id)
|
|
190
|
+
|
|
191
|
+
```ruby
|
|
192
|
+
begin
|
|
193
|
+
# Get Application
|
|
194
|
+
data, status_code, headers = api_instance.get_application_with_http_info(application_id)
|
|
195
|
+
p status_code # => 2xx
|
|
196
|
+
p headers # => { ... }
|
|
197
|
+
p data # => <GetApplicationResponse>
|
|
198
|
+
rescue KindeApi::ApiError => e
|
|
199
|
+
puts "Error when calling ApplicationsApi->get_application_with_http_info: #{e}"
|
|
200
|
+
end
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
### Parameters
|
|
204
|
+
|
|
205
|
+
| Name | Type | Description | Notes |
|
|
206
|
+
| ---- | ---- | ----------- | ----- |
|
|
207
|
+
| **application_id** | **String** | The identifier for the application. | |
|
|
208
|
+
|
|
209
|
+
### Return type
|
|
210
|
+
|
|
211
|
+
[**GetApplicationResponse**](GetApplicationResponse.md)
|
|
212
|
+
|
|
213
|
+
### Authorization
|
|
214
|
+
|
|
215
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
216
|
+
|
|
217
|
+
### HTTP request headers
|
|
218
|
+
|
|
219
|
+
- **Content-Type**: Not defined
|
|
220
|
+
- **Accept**: application/json, application/json; charset=utf-8
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
## get_applications
|
|
224
|
+
|
|
225
|
+
> <GetApplicationsResponse> get_applications(opts)
|
|
226
|
+
|
|
227
|
+
List Applications
|
|
228
|
+
|
|
229
|
+
Get a list of applications.
|
|
230
|
+
|
|
231
|
+
### Examples
|
|
232
|
+
|
|
233
|
+
```ruby
|
|
234
|
+
require 'time'
|
|
235
|
+
require 'kinde_api'
|
|
236
|
+
# setup authorization
|
|
237
|
+
KindeApi.configure do |config|
|
|
238
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
239
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
api_instance = KindeApi::ApplicationsApi.new
|
|
243
|
+
opts = {
|
|
244
|
+
sort: 'name_asc', # String | Field and order to sort the result by.
|
|
245
|
+
page_size: 56, # Integer | Number of results per page. Defaults to 10 if parameter not sent.
|
|
246
|
+
next_token: 'next_token_example' # String | A string to get the next page of results if there are more results.
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
begin
|
|
250
|
+
# List Applications
|
|
251
|
+
result = api_instance.get_applications(opts)
|
|
252
|
+
p result
|
|
253
|
+
rescue KindeApi::ApiError => e
|
|
254
|
+
puts "Error when calling ApplicationsApi->get_applications: #{e}"
|
|
255
|
+
end
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
#### Using the get_applications_with_http_info variant
|
|
259
|
+
|
|
260
|
+
This returns an Array which contains the response data, status code and headers.
|
|
261
|
+
|
|
262
|
+
> <Array(<GetApplicationsResponse>, Integer, Hash)> get_applications_with_http_info(opts)
|
|
263
|
+
|
|
264
|
+
```ruby
|
|
265
|
+
begin
|
|
266
|
+
# List Applications
|
|
267
|
+
data, status_code, headers = api_instance.get_applications_with_http_info(opts)
|
|
268
|
+
p status_code # => 2xx
|
|
269
|
+
p headers # => { ... }
|
|
270
|
+
p data # => <GetApplicationsResponse>
|
|
271
|
+
rescue KindeApi::ApiError => e
|
|
272
|
+
puts "Error when calling ApplicationsApi->get_applications_with_http_info: #{e}"
|
|
273
|
+
end
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
### Parameters
|
|
277
|
+
|
|
278
|
+
| Name | Type | Description | Notes |
|
|
279
|
+
| ---- | ---- | ----------- | ----- |
|
|
280
|
+
| **sort** | **String** | Field and order to sort the result by. | [optional] |
|
|
281
|
+
| **page_size** | **Integer** | Number of results per page. Defaults to 10 if parameter not sent. | [optional] |
|
|
282
|
+
| **next_token** | **String** | A string to get the next page of results if there are more results. | [optional] |
|
|
283
|
+
|
|
284
|
+
### Return type
|
|
285
|
+
|
|
286
|
+
[**GetApplicationsResponse**](GetApplicationsResponse.md)
|
|
287
|
+
|
|
288
|
+
### Authorization
|
|
289
|
+
|
|
290
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
291
|
+
|
|
292
|
+
### HTTP request headers
|
|
293
|
+
|
|
294
|
+
- **Content-Type**: Not defined
|
|
295
|
+
- **Accept**: application/json, application/json; charset=utf-8
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
## update_application
|
|
299
|
+
|
|
300
|
+
> update_application(application_id, opts)
|
|
301
|
+
|
|
302
|
+
Update Application
|
|
303
|
+
|
|
304
|
+
Update an application.
|
|
305
|
+
|
|
306
|
+
### Examples
|
|
307
|
+
|
|
308
|
+
```ruby
|
|
309
|
+
require 'time'
|
|
310
|
+
require 'kinde_api'
|
|
311
|
+
# setup authorization
|
|
312
|
+
KindeApi.configure do |config|
|
|
313
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
314
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
api_instance = KindeApi::ApplicationsApi.new
|
|
318
|
+
application_id = 'application_id_example' # String | The identifier for the application.
|
|
319
|
+
opts = {
|
|
320
|
+
update_application_request: KindeApi::UpdateApplicationRequest.new # UpdateApplicationRequest | Application details.
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
begin
|
|
324
|
+
# Update Application
|
|
325
|
+
api_instance.update_application(application_id, opts)
|
|
326
|
+
rescue KindeApi::ApiError => e
|
|
327
|
+
puts "Error when calling ApplicationsApi->update_application: #{e}"
|
|
328
|
+
end
|
|
329
|
+
```
|
|
330
|
+
|
|
331
|
+
#### Using the update_application_with_http_info variant
|
|
332
|
+
|
|
333
|
+
This returns an Array which contains the response data (`nil` in this case), status code and headers.
|
|
334
|
+
|
|
335
|
+
> <Array(nil, Integer, Hash)> update_application_with_http_info(application_id, opts)
|
|
336
|
+
|
|
337
|
+
```ruby
|
|
338
|
+
begin
|
|
339
|
+
# Update Application
|
|
340
|
+
data, status_code, headers = api_instance.update_application_with_http_info(application_id, opts)
|
|
341
|
+
p status_code # => 2xx
|
|
342
|
+
p headers # => { ... }
|
|
343
|
+
p data # => nil
|
|
344
|
+
rescue KindeApi::ApiError => e
|
|
345
|
+
puts "Error when calling ApplicationsApi->update_application_with_http_info: #{e}"
|
|
346
|
+
end
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
### Parameters
|
|
350
|
+
|
|
351
|
+
| Name | Type | Description | Notes |
|
|
352
|
+
| ---- | ---- | ----------- | ----- |
|
|
353
|
+
| **application_id** | **String** | The identifier for the application. | |
|
|
354
|
+
| **update_application_request** | [**UpdateApplicationRequest**](UpdateApplicationRequest.md) | Application details. | [optional] |
|
|
355
|
+
|
|
356
|
+
### Return type
|
|
357
|
+
|
|
358
|
+
nil (empty response body)
|
|
359
|
+
|
|
360
|
+
### Authorization
|
|
361
|
+
|
|
362
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
363
|
+
|
|
364
|
+
### HTTP request headers
|
|
365
|
+
|
|
366
|
+
- **Content-Type**: application/json
|
|
367
|
+
- **Accept**: application/json, application/json; charset=utf-8
|
|
368
|
+
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
# KindeApi::BusinessApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://app.kinde.com*
|
|
4
|
+
|
|
5
|
+
| Method | HTTP request | Description |
|
|
6
|
+
| ------ | ------------ | ----------- |
|
|
7
|
+
| [**get_business**](BusinessApi.md#get_business) | **GET** /api/v1/business | List business details |
|
|
8
|
+
| [**update_business**](BusinessApi.md#update_business) | **PATCH** /api/v1/business | Update business details |
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## get_business
|
|
12
|
+
|
|
13
|
+
> <SuccessResponse> get_business(code, name, email, opts)
|
|
14
|
+
|
|
15
|
+
List business details
|
|
16
|
+
|
|
17
|
+
Get your business details.
|
|
18
|
+
|
|
19
|
+
### Examples
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
require 'time'
|
|
23
|
+
require 'kinde_api'
|
|
24
|
+
# setup authorization
|
|
25
|
+
KindeApi.configure do |config|
|
|
26
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
27
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
api_instance = KindeApi::BusinessApi.new
|
|
31
|
+
code = 'code_example' # String | Business code.
|
|
32
|
+
name = 'name_example' # String | Business name.
|
|
33
|
+
email = 'email_example' # String | Email associated with business.
|
|
34
|
+
opts = {
|
|
35
|
+
phone: 'phone_example', # String | Phone number associated with business.
|
|
36
|
+
industry: 'industry_example', # String | The industry your business is in.
|
|
37
|
+
timezone: 'timezone_example', # String | The timezone your business is in.
|
|
38
|
+
privacy_url: 'privacy_url_example', # String | Your Privacy policy URL.
|
|
39
|
+
terms_url: 'terms_url_example' # String | Your Terms and Conditions URL.
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
begin
|
|
43
|
+
# List business details
|
|
44
|
+
result = api_instance.get_business(code, name, email, opts)
|
|
45
|
+
p result
|
|
46
|
+
rescue KindeApi::ApiError => e
|
|
47
|
+
puts "Error when calling BusinessApi->get_business: #{e}"
|
|
48
|
+
end
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
#### Using the get_business_with_http_info variant
|
|
52
|
+
|
|
53
|
+
This returns an Array which contains the response data, status code and headers.
|
|
54
|
+
|
|
55
|
+
> <Array(<SuccessResponse>, Integer, Hash)> get_business_with_http_info(code, name, email, opts)
|
|
56
|
+
|
|
57
|
+
```ruby
|
|
58
|
+
begin
|
|
59
|
+
# List business details
|
|
60
|
+
data, status_code, headers = api_instance.get_business_with_http_info(code, name, email, opts)
|
|
61
|
+
p status_code # => 2xx
|
|
62
|
+
p headers # => { ... }
|
|
63
|
+
p data # => <SuccessResponse>
|
|
64
|
+
rescue KindeApi::ApiError => e
|
|
65
|
+
puts "Error when calling BusinessApi->get_business_with_http_info: #{e}"
|
|
66
|
+
end
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Parameters
|
|
70
|
+
|
|
71
|
+
| Name | Type | Description | Notes |
|
|
72
|
+
| ---- | ---- | ----------- | ----- |
|
|
73
|
+
| **code** | **String** | Business code. | |
|
|
74
|
+
| **name** | **String** | Business name. | |
|
|
75
|
+
| **email** | **String** | Email associated with business. | |
|
|
76
|
+
| **phone** | **String** | Phone number associated with business. | [optional] |
|
|
77
|
+
| **industry** | **String** | The industry your business is in. | [optional] |
|
|
78
|
+
| **timezone** | **String** | The timezone your business is in. | [optional] |
|
|
79
|
+
| **privacy_url** | **String** | Your Privacy policy URL. | [optional] |
|
|
80
|
+
| **terms_url** | **String** | Your Terms and Conditions URL. | [optional] |
|
|
81
|
+
|
|
82
|
+
### Return type
|
|
83
|
+
|
|
84
|
+
[**SuccessResponse**](SuccessResponse.md)
|
|
85
|
+
|
|
86
|
+
### Authorization
|
|
87
|
+
|
|
88
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
89
|
+
|
|
90
|
+
### HTTP request headers
|
|
91
|
+
|
|
92
|
+
- **Content-Type**: Not defined
|
|
93
|
+
- **Accept**: application/json; charset=utf-8
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## update_business
|
|
97
|
+
|
|
98
|
+
> <SuccessResponse> update_business(business_name, primary_email, opts)
|
|
99
|
+
|
|
100
|
+
Update business details
|
|
101
|
+
|
|
102
|
+
Update business details.
|
|
103
|
+
|
|
104
|
+
### Examples
|
|
105
|
+
|
|
106
|
+
```ruby
|
|
107
|
+
require 'time'
|
|
108
|
+
require 'kinde_api'
|
|
109
|
+
# setup authorization
|
|
110
|
+
KindeApi.configure do |config|
|
|
111
|
+
# Configure Bearer authorization (JWT): kindeBearerAuth
|
|
112
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
api_instance = KindeApi::BusinessApi.new
|
|
116
|
+
business_name = 'business_name_example' # String | Business name.
|
|
117
|
+
primary_email = 'primary_email_example' # String | Email associated with business.
|
|
118
|
+
opts = {
|
|
119
|
+
primary_phone: 'primary_phone_example', # String | Phone number associated with business.
|
|
120
|
+
industry_key: 'industry_key_example', # String | The key of the industry your business is in.
|
|
121
|
+
timezone_id: 'timezone_id_example', # String | The ID of the timezone your business is in.
|
|
122
|
+
privacy_url: 'privacy_url_example', # String | Your Privacy policy URL.
|
|
123
|
+
terms_url: 'terms_url_example', # String | Your Terms and Conditions URL.
|
|
124
|
+
is_show_kinde_branding: 'is_show_kinde_branding_example', # String | Display \"Powered by Kinde\" on your sign up, sign in, and subscription pages.
|
|
125
|
+
is_click_wrap: true, # Boolean | Show a policy acceptance checkbox on sign up.
|
|
126
|
+
partner_code: 'partner_code_example' # String | Your Kinde Perk code.
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
begin
|
|
130
|
+
# Update business details
|
|
131
|
+
result = api_instance.update_business(business_name, primary_email, opts)
|
|
132
|
+
p result
|
|
133
|
+
rescue KindeApi::ApiError => e
|
|
134
|
+
puts "Error when calling BusinessApi->update_business: #{e}"
|
|
135
|
+
end
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
#### Using the update_business_with_http_info variant
|
|
139
|
+
|
|
140
|
+
This returns an Array which contains the response data, status code and headers.
|
|
141
|
+
|
|
142
|
+
> <Array(<SuccessResponse>, Integer, Hash)> update_business_with_http_info(business_name, primary_email, opts)
|
|
143
|
+
|
|
144
|
+
```ruby
|
|
145
|
+
begin
|
|
146
|
+
# Update business details
|
|
147
|
+
data, status_code, headers = api_instance.update_business_with_http_info(business_name, primary_email, opts)
|
|
148
|
+
p status_code # => 2xx
|
|
149
|
+
p headers # => { ... }
|
|
150
|
+
p data # => <SuccessResponse>
|
|
151
|
+
rescue KindeApi::ApiError => e
|
|
152
|
+
puts "Error when calling BusinessApi->update_business_with_http_info: #{e}"
|
|
153
|
+
end
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Parameters
|
|
157
|
+
|
|
158
|
+
| Name | Type | Description | Notes |
|
|
159
|
+
| ---- | ---- | ----------- | ----- |
|
|
160
|
+
| **business_name** | **String** | Business name. | |
|
|
161
|
+
| **primary_email** | **String** | Email associated with business. | |
|
|
162
|
+
| **primary_phone** | **String** | Phone number associated with business. | [optional] |
|
|
163
|
+
| **industry_key** | **String** | The key of the industry your business is in. | [optional] |
|
|
164
|
+
| **timezone_id** | **String** | The ID of the timezone your business is in. | [optional] |
|
|
165
|
+
| **privacy_url** | **String** | Your Privacy policy URL. | [optional] |
|
|
166
|
+
| **terms_url** | **String** | Your Terms and Conditions URL. | [optional] |
|
|
167
|
+
| **is_show_kinde_branding** | **String** | Display \"Powered by Kinde\" on your sign up, sign in, and subscription pages. | [optional] |
|
|
168
|
+
| **is_click_wrap** | **Boolean** | Show a policy acceptance checkbox on sign up. | [optional] |
|
|
169
|
+
| **partner_code** | **String** | Your Kinde Perk code. | [optional] |
|
|
170
|
+
|
|
171
|
+
### Return type
|
|
172
|
+
|
|
173
|
+
[**SuccessResponse**](SuccessResponse.md)
|
|
174
|
+
|
|
175
|
+
### Authorization
|
|
176
|
+
|
|
177
|
+
[kindeBearerAuth](../README.md#kindeBearerAuth)
|
|
178
|
+
|
|
179
|
+
### HTTP request headers
|
|
180
|
+
|
|
181
|
+
- **Content-Type**: Not defined
|
|
182
|
+
- **Accept**: application/json; charset=utf-8
|
|
183
|
+
|