All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| jumpboxServiceAuthorize | POST /api/v3/authorization | Summary: Authorize Description: Authenticate a user and return a JWT. |
| jumpboxServiceDeleteAccount | DELETE /api/v3/accounts/{account_id} | Summary: Delete account Description: Delete an account. |
| jumpboxServiceDeleteTenant | DELETE /api/v3/tenants/{tenant_id} | Summary: Delete tenant Description: Delete a tenant. |
| jumpboxServiceDeleteUser | DELETE /api/v3/users/{user_id} | Summary: Delete user Description: Delete the user. |
| jumpboxServiceGetAccount | GET /api/v3/accounts/{account_id} | Summary: Get account Description: Get an account. |
| jumpboxServiceGetAccounts | GET /api/v3/accounts | Summary: Get accounts Description: Get all accounts based on UID. |
| jumpboxServiceGetTenant | GET /api/v3/tenants/{tenant_id} | Summary: Get tenant Description: Get a tenant. |
| jumpboxServiceGetTenants | GET /api/v3/tenants | Summary: Get tenants Description: Get all tenant base on UID. |
| jumpboxServiceGetUsers | GET /api/v3/users | Summary: Get users Description: Get all users base on a tenantID. |
| jumpboxServicePostAccount | POST /api/v3/accounts | Summary: Post account Description: Create an Account. |
| jumpboxServicePostTenants | POST /api/v3/tenants | Summary: Post tenants Description: Create a tenant. |
| jumpboxServicePostUsers | POST /api/v3/users | Summary: Post users Description: Create users. |
| jumpboxServiceResumeAccount | PATCH /api/v3/accounts/{account_id}/resume | Summary: Resume account Description: Resume an account. |
| jumpboxServiceSearchUsers | POST /api/v3/users/search | Summary: Search users Description: Search for all users matching the provided string. |
| jumpboxServiceSuspendAccount | PATCH /api/v3/accounts/{account_id}/suspend | Summary: Suspend Account Description: Suspend an account |
| jumpboxServiceTestUser | POST /api/v3/users/test | Summary: Test user Description: Test a user lookup to a given LDAP. |
| jumpboxServiceUpdateAccount | PATCH /api/v3/accounts/{account_id} | Summary: Update Account Description: Updates an account. |
| jumpboxServiceUpdateTenant | PATCH /api/v3/tenants/{tenant_id} | Summary: Update tenant Description: Update a tenant. |
| jumpboxServiceUpdateUsers | PATCH /api/v3/users | Summary: Update users Description: Update an array of users. |
Jumpboxv3AuthorizeResponse jumpboxServiceAuthorize(jumpboxv3AuthorizeRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceAuthorizeRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceAuthorizeRequest = {
jumpboxv3AuthorizeRequest: {
displayName: "displayName_example",
email: "email_example",
externalId: "externalId_example",
firstName: "firstName_example",
isRenew: true,
isUpdateUserInfo: true,
lastName: "lastName_example",
loginId: "loginId_example",
tenantId: "tenantId_example",
},
};
const data = await apiInstance.jumpboxServiceAuthorize(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3AuthorizeRequest | Jumpboxv3AuthorizeRequest |
Jumpboxv3AuthorizeResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3DeleteAccountResponse jumpboxServiceDeleteAccount()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceDeleteAccountRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceDeleteAccountRequest = {
// Account id.
accountId: "account_id_example",
};
const data = await apiInstance.jumpboxServiceDeleteAccount(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | [string] | Account id. | defaults to undefined |
Jumpboxv3DeleteAccountResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
any jumpboxServiceDeleteTenant()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceDeleteTenantRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceDeleteTenantRequest = {
// Tenant id.
tenantId: "tenant_id_example",
// Delete tenant permanently if true. (optional)
isPermanentDelete: true,
// Async. (optional)
async: true,
};
const data = await apiInstance.jumpboxServiceDeleteTenant(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| tenantId | [string] | Tenant id. | defaults to undefined |
| isPermanentDelete | [boolean] | Delete tenant permanently if true. | (optional) defaults to undefined |
| async | [boolean] | Async. | (optional) defaults to undefined |
any
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
any jumpboxServiceDeleteUser()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceDeleteUserRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceDeleteUserRequest = {
// The user id.
userId: "user_id_example",
};
const data = await apiInstance.jumpboxServiceDeleteUser(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| userId | [string] | The user id. | defaults to undefined |
any
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3GetAccountResponse jumpboxServiceGetAccount()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceGetAccountRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceGetAccountRequest = {
// Account id.
accountId: "account_id_example",
// Include inactive. (optional)
includeInactive: true,
// Include tenants that are not ready(are in state of being created or deleted). (optional)
includeNotReady: true,
};
const data = await apiInstance.jumpboxServiceGetAccount(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | [string] | Account id. | defaults to undefined |
| includeInactive | [boolean] | Include inactive. | (optional) defaults to undefined |
| includeNotReady | [boolean] | Include tenants that are not ready(are in state of being created or deleted). | (optional) defaults to undefined |
Jumpboxv3GetAccountResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3GetAccountsResponse jumpboxServiceGetAccounts()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceGetAccountsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceGetAccountsRequest = {
// Email. (optional)
uid: "uid_example",
// External id. (optional)
externalId: "external_id_example",
// Include inactive. (optional)
includeInactive: true,
// Include tenants that are not ready(are in state of being created or deleted). (optional)
includeNotReady: true,
};
const data = await apiInstance.jumpboxServiceGetAccounts(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| uid | [string] | Email. | (optional) defaults to undefined |
| externalId | [string] | External id. | (optional) defaults to undefined |
| includeInactive | [boolean] | Include inactive. | (optional) defaults to undefined |
| includeNotReady | [boolean] | Include tenants that are not ready(are in state of being created or deleted). | (optional) defaults to undefined |
Jumpboxv3GetAccountsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3GetTenantResponse jumpboxServiceGetTenant()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceGetTenantRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceGetTenantRequest = {
// Tenant id.
tenantId: "tenant_id_example",
// Include inactive. (optional)
includeInactive: true,
// Include tenants that are not ready(are in state of being created or deleted). (optional)
includeNotReady: true,
};
const data = await apiInstance.jumpboxServiceGetTenant(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| tenantId | [string] | Tenant id. | defaults to undefined |
| includeInactive | [boolean] | Include inactive. | (optional) defaults to undefined |
| includeNotReady | [boolean] | Include tenants that are not ready(are in state of being created or deleted). | (optional) defaults to undefined |
Jumpboxv3GetTenantResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3GetTenantsResponse jumpboxServiceGetTenants()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceGetTenantsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceGetTenantsRequest = {
// Email. (optional)
uid: "uid_example",
// External id. (optional)
externalId: "external_id_example",
// Include inactive. (optional)
includeInactive: true,
// Include tenants that are not ready(are in state of being created or deleted). (optional)
includeNotReady: true,
};
const data = await apiInstance.jumpboxServiceGetTenants(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| uid | [string] | Email. | (optional) defaults to undefined |
| externalId | [string] | External id. | (optional) defaults to undefined |
| includeInactive | [boolean] | Include inactive. | (optional) defaults to undefined |
| includeNotReady | [boolean] | Include tenants that are not ready(are in state of being created or deleted). | (optional) defaults to undefined |
Jumpboxv3GetTenantsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Tenantuserv3GetUsersResponse jumpboxServiceGetUsers()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceGetUsersRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceGetUsersRequest = {
// Email. (optional)
uid: "uid_example",
};
const data = await apiInstance.jumpboxServiceGetUsers(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| uid | [string] | Email. | (optional) defaults to undefined |
Tenantuserv3GetUsersResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3PostAccountResponse jumpboxServicePostAccount(jumpboxv3PostAccountRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServicePostAccountRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServicePostAccountRequest = {
jumpboxv3PostAccountRequest: {
externalId: "externalId_example",
externalMetadata: {
"key": {
addOns: {
"key": {
unit: "unit_example",
value: "value_example",
},
},
crn: "crn_example",
expirationDate: new Date('1970-01-01T00:00:00.00Z'),
instanceId: "instanceId_example",
partNumber: "partNumber_example",
planId: "planId_example",
serviceId: "serviceId_example",
subscriptionId: "subscriptionId_example",
},
},
name: "name_example",
partNumber: "partNumber_example",
uid: "uid_example",
},
};
const data = await apiInstance.jumpboxServicePostAccount(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3PostAccountRequest | Jumpboxv3PostAccountRequest |
Jumpboxv3PostAccountResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3PostTenantsResponse jumpboxServicePostTenants(jumpboxv3PostTenantsRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServicePostTenantsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServicePostTenantsRequest = {
jumpboxv3PostTenantsRequest: {
async: true,
externalId: "externalId_example",
externalMetadata: {
"key": {
addOns: {
"key": {
unit: "unit_example",
value: "value_example",
},
},
crn: "crn_example",
expirationDate: new Date('1970-01-01T00:00:00.00Z'),
instanceId: "instanceId_example",
partNumber: "partNumber_example",
planId: "planId_example",
serviceId: "serviceId_example",
subscriptionId: "subscriptionId_example",
},
},
name: "name_example",
partNumber: "partNumber_example",
uid: "uid_example",
},
};
const data = await apiInstance.jumpboxServicePostTenants(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3PostTenantsRequest | Jumpboxv3PostTenantsRequest |
Jumpboxv3PostTenantsResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3PostUsersBulkResponse jumpboxServicePostUsers(jumpboxv3PostUsersBulkRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServicePostUsersRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServicePostUsersRequest = {
jumpboxv3PostUsersBulkRequest: {
users: [
{
activationDate: new Date('1970-01-01T00:00:00.00Z'),
directoryId: "directoryId_example",
disabled: true,
displayName: "displayName_example",
distinguishedName: "distinguishedName_example",
email: "email_example",
externalId: "externalId_example",
metadata: {
"key": "key_example",
},
roles: [
"roles_example",
],
state: "ACTIVE",
uid: "uid_example",
userId: "userId_example",
},
],
},
};
const data = await apiInstance.jumpboxServicePostUsers(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3PostUsersBulkRequest | Jumpboxv3PostUsersBulkRequest |
Jumpboxv3PostUsersBulkResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3ResumeAccountResponse jumpboxServiceResumeAccount()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceResumeAccountRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceResumeAccountRequest = {
// account_id represents the user\'s account ID
accountId: "account_id_example",
};
const data = await apiInstance.jumpboxServiceResumeAccount(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | [string] | account_id represents the user's account ID | defaults to undefined |
Jumpboxv3ResumeAccountResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3SearchUsersResponse jumpboxServiceSearchUsers(jumpboxv3SearchUsersRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceSearchUsersRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceSearchUsersRequest = {
jumpboxv3SearchUsersRequest: {
searchString: "searchString_example",
},
};
const data = await apiInstance.jumpboxServiceSearchUsers(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3SearchUsersRequest | Jumpboxv3SearchUsersRequest |
Jumpboxv3SearchUsersResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3SuspendAccountResponse jumpboxServiceSuspendAccount()
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceSuspendAccountRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceSuspendAccountRequest = {
// account_id represents the user\'s account ID
accountId: "account_id_example",
};
const data = await apiInstance.jumpboxServiceSuspendAccount(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | [string] | account_id represents the user's account ID | defaults to undefined |
Jumpboxv3SuspendAccountResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3TestUserResponse jumpboxServiceTestUser(jumpboxv3TestUserRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceTestUserRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceTestUserRequest = {
jumpboxv3TestUserRequest: {
ldapId: "ldapId_example",
uid: "uid_example",
},
};
const data = await apiInstance.jumpboxServiceTestUser(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3TestUserRequest | Jumpboxv3TestUserRequest |
Jumpboxv3TestUserResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3UpdateAccountResponse jumpboxServiceUpdateAccount(jumpboxv3UpdateAccountRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceUpdateAccountRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceUpdateAccountRequest = {
// Account id.
accountId: "account_id_example",
jumpboxv3UpdateAccountRequest: {
accountId: "accountId_example",
externalMetadata: {
"key": {
addOns: {
"key": {
unit: "unit_example",
value: "value_example",
},
},
crn: "crn_example",
expirationDate: new Date('1970-01-01T00:00:00.00Z'),
instanceId: "instanceId_example",
partNumber: "partNumber_example",
planId: "planId_example",
serviceId: "serviceId_example",
subscriptionId: "subscriptionId_example",
},
},
isInactive: true,
isReady: true,
name: "name_example",
partNumber: "partNumber_example",
uid: "uid_example",
},
};
const data = await apiInstance.jumpboxServiceUpdateAccount(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3UpdateAccountRequest | Jumpboxv3UpdateAccountRequest | ||
| accountId | [string] | Account id. | defaults to undefined |
Jumpboxv3UpdateAccountResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3UpdateTenantResponse jumpboxServiceUpdateTenant(jumpboxv3UpdateTenantRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceUpdateTenantRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceUpdateTenantRequest = {
// Tenant id.
tenantId: "tenant_id_example",
jumpboxv3UpdateTenantRequest: {
externalMetadata: {
"key": {
addOns: {
"key": {
unit: "unit_example",
value: "value_example",
},
},
crn: "crn_example",
expirationDate: new Date('1970-01-01T00:00:00.00Z'),
instanceId: "instanceId_example",
partNumber: "partNumber_example",
planId: "planId_example",
serviceId: "serviceId_example",
subscriptionId: "subscriptionId_example",
},
},
isInactive: true,
isReady: true,
name: "name_example",
partNumber: "partNumber_example",
tenantId: "tenantId_example",
uid: "uid_example",
},
};
const data = await apiInstance.jumpboxServiceUpdateTenant(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3UpdateTenantRequest | Jumpboxv3UpdateTenantRequest | ||
| tenantId | [string] | Tenant id. | defaults to undefined |
Jumpboxv3UpdateTenantResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Jumpboxv3UpdateUsersBulkResponse jumpboxServiceUpdateUsers(jumpboxv3UpdateUsersBulkRequest)
import { createConfiguration, JumpboxServiceApi } from '';
import type { JumpboxServiceApiJumpboxServiceUpdateUsersRequest } from '';
const configuration = createConfiguration();
const apiInstance = new JumpboxServiceApi(configuration);
const request: JumpboxServiceApiJumpboxServiceUpdateUsersRequest = {
jumpboxv3UpdateUsersBulkRequest: {
action: "action_example",
metadataOnly: true,
users: [
{
activationDate: new Date('1970-01-01T00:00:00.00Z'),
directoryId: "directoryId_example",
disabled: true,
displayName: "displayName_example",
distinguishedName: "distinguishedName_example",
email: "email_example",
externalId: "externalId_example",
metadata: {
"key": "key_example",
},
roles: [
"roles_example",
],
state: "ACTIVE",
uid: "uid_example",
userId: "userId_example",
},
],
},
};
const data = await apiInstance.jumpboxServiceUpdateUsers(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| jumpboxv3UpdateUsersBulkRequest | Jumpboxv3UpdateUsersBulkRequest |
Jumpboxv3UpdateUsersBulkResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]