From f539bbba250a070e8808b8128fbf8e23502631d7 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 2 Feb 2026 14:06:48 -0700 Subject: [PATCH 01/29] ApiTransform changes --- ApiTransform.ps1 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index f2bc6cad0..0076e3d6d 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -454,6 +454,11 @@ $TransformConfig = [Ordered]@{ 'workdays_post' = 'Workday_Create'; 'workdays_put' = 'Workday_Set'; 'workdays_workers' = 'WorkdayWorker_Get'; + 'AccessRequestApi_CreateAccessRequest' = 'AccessRequest_Create'; + 'AccessRequestApi_GetAccessRequest' = 'AccessRequest_Get'; + 'AccessRequestApi_UpdateAccessRequest' = 'AccessRequest_Set'; + 'AccessRequestApi_RevokeAccessRequest' = 'AccessRequest_Delete'; + 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'AccessRequestWorkflow_Get'; }; ExcludedList = @( # Excluded items are listed by Path and do not include opperation type (put, post, get, etc.) @@ -507,10 +512,7 @@ $TransformConfig = [Ordered]@{ '/integrations/autotask/{UUID}/mappings', '/integrations/{integration_type}/{UUID}/errors', '/providers/{provider_id}/integrations/autotask', - '/softwareapps/{software_app_id}/retry-installation', - '/accessrequests/', - '/accessrequests/{accessId}', - '/accessrequests/{accessId}/revoke' + '/softwareapps/{software_app_id}/retry-installation' ) } } From b4d696a6b6b2484dc675e0fdf98a3bc7eadee69d Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 10 Feb 2026 14:53:31 -0700 Subject: [PATCH 02/29] apiTransform changes for workflows --- ApiTransform.ps1 | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index 0076e3d6d..fc672f9bd 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -454,11 +454,24 @@ $TransformConfig = [Ordered]@{ 'workdays_post' = 'Workday_Create'; 'workdays_put' = 'Workday_Set'; 'workdays_workers' = 'WorkdayWorker_Get'; - 'AccessRequestApi_CreateAccessRequest' = 'AccessRequest_Create'; - 'AccessRequestApi_GetAccessRequest' = 'AccessRequest_Get'; - 'AccessRequestApi_UpdateAccessRequest' = 'AccessRequest_Set'; - 'AccessRequestApi_RevokeAccessRequest' = 'AccessRequest_Delete'; - 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'AccessRequestWorkflow_Get'; + # 'AccessRequestApi_CreateAccessRequest' = 'WorkflowUserRequest_Create'; + # 'AccessRequestApi_GetAccessRequest' = 'WorkflowUserRequest_Get'; + # 'AccessRequestApi_UpdateAccessRequest' = 'WorkflowUserRequest_Set'; + # 'AccessRequestApi_RevokeAccessRequest' = 'WorkflowUserRequest_Delete'; + 'WorkflowAccessRequestApi_UserApprovalRequest' = 'WorkflowRequest_Create' + 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'WorkflowRequest_Get' + 'WorkflowAccessRequestApi_GetWorkflowAccessRequests' = 'WorkflowApproval_Get'; + 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'WorkflowApproval_Create' + 'WorkflowAccessRequestApi_UpdateWorkflowAccessRequests' = 'WorkflowApproval_Set' + 'WorkflowAccessRequestApi_GetAccessRequestApprovalProgressAdminPortal' = 'WorkflowApprovalProgress_Get' + 'AccessWorkflowApi_GetAllAccessWorkFlows' = 'Workflow_List' + 'AccessWorkflowApi_CreateAccessWorkflow' = 'Workflow_Create' + 'AccessWorkflowApi_DeleteAccessWorkflow' = 'Workflow_Delete' + 'AccessWorkflowApi_GetAccessWorkflow' = 'Workflow_Get' + 'AccessWorkflowApi_UpdateAccessWorkflow' = 'Workflow_Set' + 'AccessWorkflowSettingsApi_GetAccessWorkflowSettings' = 'WorkflowSettings_Get' + 'AccessWorkflowSettingsApi_CreateAccessWorkflowSettings' = 'WorkflowSettings_Create' + 'AccessWorkflowSettingsApi_UpdateAccessWorkflowSettings' = 'WorkflowSettings_Set' }; ExcludedList = @( # Excluded items are listed by Path and do not include opperation type (put, post, get, etc.) From 15675a8b08b1c1f0ada187a26d769ba1468fa336 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 10 Feb 2026 15:44:16 -0700 Subject: [PATCH 03/29] v2 sdk generated v0.2.0 --- ApiTransform.ps1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index fc672f9bd..1d44ceb0e 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -458,12 +458,12 @@ $TransformConfig = [Ordered]@{ # 'AccessRequestApi_GetAccessRequest' = 'WorkflowUserRequest_Get'; # 'AccessRequestApi_UpdateAccessRequest' = 'WorkflowUserRequest_Set'; # 'AccessRequestApi_RevokeAccessRequest' = 'WorkflowUserRequest_Delete'; - 'WorkflowAccessRequestApi_UserApprovalRequest' = 'WorkflowRequest_Create' - 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'WorkflowRequest_Get' - 'WorkflowAccessRequestApi_GetWorkflowAccessRequests' = 'WorkflowApproval_Get'; - 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'WorkflowApproval_Create' - 'WorkflowAccessRequestApi_UpdateWorkflowAccessRequests' = 'WorkflowApproval_Set' - 'WorkflowAccessRequestApi_GetAccessRequestApprovalProgressAdminPortal' = 'WorkflowApprovalProgress_Get' + 'WorkflowAccessRequestApi_UserApprovalRequest' = 'WorkflowUserApprovalRequest_Create' + 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'WorkflowAccessRequest_List' + 'WorkflowAccessRequestApi_GetWorkflowAccessRequests' = 'WorkflowAccessRequest_Get'; + 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'WorkflowAccessRequest_Create' + 'WorkflowAccessRequestApi_UpdateWorkflowAccessRequests' = 'WorkflowAccessRequest_Set' + 'WorkflowAccessRequestApi_GetAccessRequestApprovalProgressAdminPortal' = 'WorkflowAccessRequestProgress_Get' 'AccessWorkflowApi_GetAllAccessWorkFlows' = 'Workflow_List' 'AccessWorkflowApi_CreateAccessWorkflow' = 'Workflow_Create' 'AccessWorkflowApi_DeleteAccessWorkflow' = 'Workflow_Delete' From 930e8e93bd94a14ace9087c01064f33588b4173e Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 10 Feb 2026 15:46:40 -0700 Subject: [PATCH 04/29] v2 sdk generated --- Configs/JumpCloud.SDK.V2.yaml | 57 +- JumpCloud.SDK.V2.md | 37 + .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj | 2 +- .../JumpCloud.SDK.V2.format.ps1xml | 1620 ++++- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec | 2 +- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 30 +- .../JumpCloud.SDK.V2/create-model-cmdlets.ps1 | 2 +- .../custom/JumpCloud.SDK.V2.json | 5574 +++++++++++------ .../JumpCloud.SDK.V2/custom/Module.cs | 4 +- .../generated/Clear-JcSdkAppleMdmDevice.ps1 | 3 +- ...lear-JcSdkAppleMdmDeviceActivationLock.ps1 | 3 +- .../generated/Get-JcSdkActiveDirectory.ps1 | 3 +- .../Get-JcSdkActiveDirectoryAgent.ps1 | 3 +- .../Get-JcSdkActiveDirectoryAssociation.ps1 | 3 +- .../Get-JcSdkActiveDirectoryTraverseUser.ps1 | 3 +- ...-JcSdkActiveDirectoryTraverseUserGroup.ps1 | 3 +- .../Get-JcSdkAdministratorOrganization.ps1 | 2 +- ...Get-JcSdkAdministratorOrganizationLink.ps1 | 2 +- .../custom/generated/Get-JcSdkAppleMdm.ps1 | 2 +- .../generated/Get-JcSdkAppleMdmDevice.ps1 | 3 +- .../Get-JcSdkAppleMdmEnrollmentProfile.ps1 | 2 +- .../Get-JcSdkApplicationAssociation.ps1 | 3 +- .../Get-JcSdkApplicationTraverseUser.ps1 | 3 +- .../Get-JcSdkApplicationTraverseUserGroup.ps1 | 3 +- .../Get-JcSdkAuthenticationPolicy.ps1 | 3 +- .../generated/Get-JcSdkBulkUserState.ps1 | 2 +- .../generated/Get-JcSdkBulkUsersResult.ps1 | 3 +- .../generated/Get-JcSdkCommandAssociation.ps1 | 3 +- .../Get-JcSdkCommandTraverseSystem.ps1 | 3 +- .../Get-JcSdkCommandTraverseSystemGroup.ps1 | 3 +- .../Get-JcSdkCustomEmailConfiguration.ps1 | 3 +- .../Get-JcSdkCustomEmailTemplate.ps1 | 2 +- .../custom/generated/Get-JcSdkDirectory.ps1 | 2 +- .../custom/generated/Get-JcSdkDuoAccount.ps1 | 3 +- .../generated/Get-JcSdkDuoApplication.ps1 | 3 +- .../custom/generated/Get-JcSdkGSuite.ps1 | 3 +- .../generated/Get-JcSdkGSuiteAssociation.ps1 | 3 +- .../Get-JcSdkGSuiteTranslationRule.ps1 | 3 +- .../generated/Get-JcSdkGSuiteTraverseUser.ps1 | 3 +- .../Get-JcSdkGSuiteTraverseUserGroup.ps1 | 3 +- .../Get-JcSdkGSuiteUsersToImport.ps1 | 2 +- .../custom/generated/Get-JcSdkGroup.ps1 | 4 +- .../Get-JcSdkGsuiteUsersToImportFormatted.ps1 | 2 +- .../custom/generated/Get-JcSdkIPList.ps1 | 3 +- .../custom/generated/Get-JcSdkLdapServer.ps1 | 3 +- .../Get-JcSdkLdapServerAssociation.ps1 | 3 +- .../Get-JcSdkLdapServerSambaDomain.ps1 | 3 +- .../Get-JcSdkLdapServerTraverseUser.ps1 | 3 +- .../Get-JcSdkLdapServerTraverseUserGroup.ps1 | 3 +- .../Get-JcSdkNextScheduledBulkUserState.ps1 | 2 +- .../custom/generated/Get-JcSdkOffice365.ps1 | 3 +- .../Get-JcSdkOffice365Association.ps1 | 3 +- .../Get-JcSdkOffice365TranslationRule.ps1 | 3 +- .../Get-JcSdkOffice365TraverseUser.ps1 | 9 +- .../Get-JcSdkOffice365TraverseUserGroup.ps1 | 3 +- .../Get-JcSdkOffice365UsersToImport.ps1 | 2 +- .../Get-JcSdkOrganizationPolicyResult.ps1 | 2 +- .../custom/generated/Get-JcSdkPolicy.ps1 | 3 +- .../generated/Get-JcSdkPolicyAssociation.ps1 | 3 +- .../custom/generated/Get-JcSdkPolicyGroup.ps1 | 3 +- .../Get-JcSdkPolicyGroupAssociation.ps1 | 2 +- .../generated/Get-JcSdkPolicyGroupMember.ps1 | 3 +- .../Get-JcSdkPolicyGroupMembership.ps1 | 3 +- .../Get-JcSdkPolicyGroupTraverseSystem.ps1 | 3 +- ...et-JcSdkPolicyGroupTraverseSystemGroup.ps1 | 3 +- .../generated/Get-JcSdkPolicyResult.ps1 | 3 +- .../generated/Get-JcSdkPolicyStatus.ps1 | 2 +- .../generated/Get-JcSdkPolicyTemplate.ps1 | 3 +- .../Get-JcSdkPolicyTraverseSystem.ps1 | 3 +- .../Get-JcSdkPolicyTraverseSystemGroup.ps1 | 3 +- .../Get-JcSdkProviderAdministrator.ps1 | 2 +- .../Get-JcSdkProviderOrganization.ps1 | 2 +- .../generated/Get-JcSdkProvidersInvoice.ps1 | 3 +- .../Get-JcSdkRadiusServerAssociation.ps1 | 3 +- .../Get-JcSdkRadiusServerTraverseUser.ps1 | 3 +- ...Get-JcSdkRadiusServerTraverseUserGroup.ps1 | 3 +- .../custom/generated/Get-JcSdkSoftwareApp.ps1 | 3 +- .../Get-JcSdkSoftwareAppAssociation.ps1 | 3 +- .../generated/Get-JcSdkSoftwareAppStatus.ps1 | 3 +- .../Get-JcSdkSoftwareAppTraverseSystem.ps1 | 3 +- ...et-JcSdkSoftwareAppTraverseSystemGroup.ps1 | 3 +- .../generated/Get-JcSdkSubscription.ps1 | 2 +- .../generated/Get-JcSdkSystemAssociation.ps1 | 3 +- .../generated/Get-JcSdkSystemFdeKey.ps1 | 3 +- .../custom/generated/Get-JcSdkSystemGroup.ps1 | 3 +- .../Get-JcSdkSystemGroupAssociation.ps1 | 3 +- .../generated/Get-JcSdkSystemGroupMember.ps1 | 3 +- .../Get-JcSdkSystemGroupMembership.ps1 | 3 +- .../Get-JcSdkSystemGroupTraverseCommand.ps1 | 3 +- .../Get-JcSdkSystemGroupTraversePolicy.ps1 | 3 +- ...et-JcSdkSystemGroupTraversePolicyGroup.ps1 | 3 +- .../Get-JcSdkSystemGroupTraverseUser.ps1 | 3 +- .../Get-JcSdkSystemGroupTraverseUserGroup.ps1 | 3 +- .../generated/Get-JcSdkSystemInsightAlf.ps1 | 2 +- .../Get-JcSdkSystemInsightAlfException.ps1 | 2 +- .../Get-JcSdkSystemInsightAlfExplicitAuth.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightApp.ps1 | 2 +- .../Get-JcSdkSystemInsightAppCompatShim.ps1 | 2 +- .../Get-JcSdkSystemInsightAuthorizedKey.ps1 | 2 +- ...cSdkSystemInsightAzureInstanceMetadata.ps1 | 2 +- ...Get-JcSdkSystemInsightAzureInstanceTag.ps1 | 2 +- .../Get-JcSdkSystemInsightBattery.ps1 | 2 +- .../Get-JcSdkSystemInsightBitlockerInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightBrowserPlugin.ps1 | 2 +- .../Get-JcSdkSystemInsightCertificate.ps1 | 2 +- .../Get-JcSdkSystemInsightChassisInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightChromeExtension.ps1 | 2 +- .../Get-JcSdkSystemInsightConnectivity.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightCrash.ps1 | 2 +- .../Get-JcSdkSystemInsightCupDestination.ps1 | 2 +- .../Get-JcSdkSystemInsightDiskEncryption.ps1 | 2 +- .../Get-JcSdkSystemInsightDiskInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightDnsResolver.ps1 | 2 +- .../Get-JcSdkSystemInsightEtcHost.ps1 | 2 +- .../Get-JcSdkSystemInsightFirefoxAddon.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightGroup.ps1 | 2 +- .../Get-JcSdkSystemInsightIeExtension.ps1 | 2 +- ...Get-JcSdkSystemInsightInterfaceAddress.ps1 | 2 +- .../Get-JcSdkSystemInsightInterfaceDetail.ps1 | 2 +- .../Get-JcSdkSystemInsightKernelInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightLaunchd.ps1 | 2 +- .../Get-JcSdkSystemInsightLinuxPackage.ps1 | 2 +- .../Get-JcSdkSystemInsightLoggedinUser.ps1 | 2 +- .../Get-JcSdkSystemInsightLogicalDrive.ps1 | 2 +- .../Get-JcSdkSystemInsightManagedPolicy.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightMount.ps1 | 2 +- .../Get-JcSdkSystemInsightOSVersion.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightPatch.ps1 | 2 +- .../Get-JcSdkSystemInsightProgram.ps1 | 2 +- .../Get-JcSdkSystemInsightPythonPackage.ps1 | 2 +- .../Get-JcSdkSystemInsightSafariExtension.ps1 | 2 +- .../Get-JcSdkSystemInsightScheduledTask.ps1 | 2 +- .../Get-JcSdkSystemInsightSecureboot.ps1 | 2 +- .../Get-JcSdkSystemInsightService.ps1 | 2 +- .../Get-JcSdkSystemInsightShadow.ps1 | 2 +- .../Get-JcSdkSystemInsightSharedFolder.ps1 | 2 +- .../Get-JcSdkSystemInsightSharedResource.ps1 | 2 +- ...et-JcSdkSystemInsightSharingPreference.ps1 | 2 +- .../Get-JcSdkSystemInsightSipConfig.ps1 | 2 +- .../Get-JcSdkSystemInsightStartupItem.ps1 | 2 +- .../Get-JcSdkSystemInsightSystemControl.ps1 | 2 +- .../Get-JcSdkSystemInsightSystemInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightTpmInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightUptime.ps1 | 2 +- .../Get-JcSdkSystemInsightUsbDevice.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUser.ps1 | 2 +- .../Get-JcSdkSystemInsightUserAssist.ps1 | 2 +- .../Get-JcSdkSystemInsightUserGroup.ps1 | 2 +- .../Get-JcSdkSystemInsightUserSshKey.ps1 | 2 +- .../Get-JcSdkSystemInsightWifiNetwork.ps1 | 2 +- .../Get-JcSdkSystemInsightWifiStatus.ps1 | 2 +- ...cSdkSystemInsightWindowsSecurityCenter.ps1 | 2 +- ...SdkSystemInsightWindowsSecurityProduct.ps1 | 2 +- .../generated/Get-JcSdkSystemMember.ps1 | 3 +- .../generated/Get-JcSdkSystemPolicyStatus.ps1 | 2 +- .../Get-JcSdkSystemTraverseCommand.ps1 | 3 +- .../Get-JcSdkSystemTraversePolicy.ps1 | 3 +- .../Get-JcSdkSystemTraversePolicyGroup.ps1 | 3 +- .../generated/Get-JcSdkSystemTraverseUser.ps1 | 3 +- .../Get-JcSdkSystemTraverseUserGroup.ps1 | 3 +- .../generated/Get-JcSdkUserAssociation.ps1 | 3 +- .../custom/generated/Get-JcSdkUserGroup.ps1 | 3 +- .../Get-JcSdkUserGroupAssociation.ps1 | 3 +- .../generated/Get-JcSdkUserGroupMember.ps1 | 3 +- .../Get-JcSdkUserGroupMembership.ps1 | 3 +- ...-JcSdkUserGroupTraverseActiveDirectory.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseApplication.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseDirectory.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseGSuite.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseLdapServer.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseOffice365.ps1 | 3 +- ...Get-JcSdkUserGroupTraverseRadiusServer.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseSystem.ps1 | 3 +- .../Get-JcSdkUserGroupTraverseSystemGroup.ps1 | 3 +- .../custom/generated/Get-JcSdkUserMember.ps1 | 3 +- .../generated/Get-JcSdkUserPushEndpoint.ps1 | 3 +- .../Get-JcSdkUserTraverseActiveDirectory.ps1 | 3 +- .../Get-JcSdkUserTraverseApplication.ps1 | 3 +- .../Get-JcSdkUserTraverseDirectory.ps1 | 3 +- .../generated/Get-JcSdkUserTraverseGSuite.ps1 | 3 +- .../Get-JcSdkUserTraverseLdapServer.ps1 | 3 +- .../Get-JcSdkUserTraverseOffice365.ps1 | 3 +- .../Get-JcSdkUserTraverseRadiusServer.ps1 | 3 +- .../generated/Get-JcSdkUserTraverseSystem.ps1 | 3 +- .../Get-JcSdkUserTraverseSystemGroup.ps1 | 3 +- .../custom/generated/Get-JcSdkWorkday.ps1 | 3 +- .../generated/Get-JcSdkWorkdayWorker.ps1 | 3 +- .../custom/generated/Get-JcSdkWorkflow.ps1 | 257 + .../Get-JcSdkWorkflowAccessRequest.ps1 | 257 + ...Get-JcSdkWorkflowAccessRequestProgress.ps1 | 178 + .../generated/Get-JcSdkWorkflowSetting.ps1 | 134 + .../custom/generated/Grant-JcSdkWorkday.ps1 | 3 +- .../custom/generated/Import-JcSdkScim.ps1 | 3 +- .../custom/generated/Import-JcSdkWorkday.ps1 | 3 +- .../generated/Import-JcSdkWorkdayResult.ps1 | 3 +- .../Invoke-JcSdkReclaimSoftwareAppLicense.ps1 | 3 +- .../generated/Lock-JcSdkAppleMdmDevice.ps1 | 3 +- .../generated/New-JcSdkActiveDirectory.ps1 | 2 +- .../New-JcSdkActiveDirectoryAgent.ps1 | 3 +- .../New-JcSdkAdministratorOrganization.ps1 | 3 +- .../New-JcSdkAuthenticationPolicy.ps1 | 2 +- .../custom/generated/New-JcSdkBulkUser.ps1 | 2 +- .../generated/New-JcSdkBulkUserState.ps1 | 2 +- .../New-JcSdkCustomEmailConfiguration.ps1 | 2 +- .../custom/generated/New-JcSdkDuoAccount.ps1 | 2 +- .../generated/New-JcSdkDuoApplication.ps1 | 3 +- .../New-JcSdkGSuiteTranslationRule.ps1 | 3 +- .../custom/generated/New-JcSdkIPList.ps1 | 2 +- .../New-JcSdkLdapServerSambaDomain.ps1 | 3 +- .../New-JcSdkOffice365TranslationRule.ps1 | 3 +- .../custom/generated/New-JcSdkPolicy.ps1 | 2 +- .../custom/generated/New-JcSdkPolicyGroup.ps1 | 2 +- .../New-JcSdkProviderAdministrator.ps1 | 3 +- .../custom/generated/New-JcSdkSoftwareApp.ps1 | 2 +- .../custom/generated/New-JcSdkSystemGroup.ps1 | 2 +- .../custom/generated/New-JcSdkUserGroup.ps1 | 2 +- .../custom/generated/New-JcSdkWorkday.ps1 | 2 +- .../custom/generated/New-JcSdkWorkflow.ps1 | 295 + .../New-JcSdkWorkflowAccessRequest.ps1 | 163 + .../generated/New-JcSdkWorkflowSetting.ps1 | 191 + .../New-JcSdkWorkflowUserApprovalRequest.ps1 | 170 + .../generated/Remove-JcSdkActiveDirectory.ps1 | 3 +- .../Remove-JcSdkActiveDirectoryAgent.ps1 | 3 +- .../Remove-JcSdkAdministratorOrganization.ps1 | 3 +- .../custom/generated/Remove-JcSdkAppleMdm.ps1 | 3 +- .../generated/Remove-JcSdkAppleMdmDevice.ps1 | 3 +- .../generated/Remove-JcSdkApplicationLogo.ps1 | 3 +- .../Remove-JcSdkAuthenticationPolicy.ps1 | 3 +- .../generated/Remove-JcSdkBulkUserState.ps1 | 3 +- .../Remove-JcSdkCustomEmailConfiguration.ps1 | 3 +- .../generated/Remove-JcSdkDuoAccount.ps1 | 3 +- .../generated/Remove-JcSdkDuoApplication.ps1 | 3 +- .../Remove-JcSdkGSuiteTranslationRule.ps1 | 3 +- .../custom/generated/Remove-JcSdkIPList.ps1 | 3 +- .../Remove-JcSdkLdapServerSambaDomain.ps1 | 3 +- .../Remove-JcSdkOffice365TranslationRule.ps1 | 3 +- .../custom/generated/Remove-JcSdkPolicy.ps1 | 3 +- .../generated/Remove-JcSdkPolicyGroup.ps1 | 3 +- .../Remove-JcSdkProviderAdministrator.ps1 | 3 +- .../generated/Remove-JcSdkSoftwareApp.ps1 | 3 +- .../generated/Remove-JcSdkSystemGroup.ps1 | 3 +- .../generated/Remove-JcSdkUserGroup.ps1 | 3 +- .../Remove-JcSdkUserPushEndpoint.ps1 | 3 +- .../Remove-JcSdkWorkdayAuthorization.ps1 | 3 +- .../custom/generated/Remove-JcSdkWorkflow.ps1 | 172 + .../generated/Restart-JcSdkAppleMdmDevice.ps1 | 3 +- .../Set-JcSdkActiveDirectoryAssociation.ps1 | 3 +- .../custom/generated/Set-JcSdkAppleMdm.ps1 | 3 +- .../Set-JcSdkApplicationAssociation.ps1 | 3 +- .../generated/Set-JcSdkCommandAssociation.ps1 | 5 +- .../Set-JcSdkCustomEmailConfiguration.ps1 | 3 +- .../generated/Set-JcSdkDuoApplication.ps1 | 3 +- .../generated/Set-JcSdkGSuiteAssociation.ps1 | 3 +- .../custom/generated/Set-JcSdkIPList.ps1 | 3 +- .../Set-JcSdkLdapServerAssociation.ps1 | 3 +- .../Set-JcSdkLdapServerSambaDomain.ps1 | 3 +- .../Set-JcSdkOffice365Association.ps1 | 3 +- .../custom/generated/Set-JcSdkPolicy.ps1 | 3 +- .../generated/Set-JcSdkPolicyAssociation.ps1 | 3 +- .../custom/generated/Set-JcSdkPolicyGroup.ps1 | 3 +- .../Set-JcSdkPolicyGroupAssociation.ps1 | 3 +- .../generated/Set-JcSdkPolicyGroupMember.ps1 | 3 +- .../Set-JcSdkRadiusServerAssociation.ps1 | 3 +- .../custom/generated/Set-JcSdkSoftwareApp.ps1 | 3 +- .../Set-JcSdkSoftwareAppAssociation.ps1 | 3 +- .../generated/Set-JcSdkSystemAssociation.ps1 | 3 +- .../custom/generated/Set-JcSdkSystemGroup.ps1 | 3 +- .../Set-JcSdkSystemGroupAssociation.ps1 | 3 +- .../generated/Set-JcSdkSystemGroupMember.ps1 | 3 +- .../generated/Set-JcSdkUserAssociation.ps1 | 3 +- .../custom/generated/Set-JcSdkUserGroup.ps1 | 3 +- .../Set-JcSdkUserGroupAssociation.ps1 | 3 +- .../generated/Set-JcSdkUserGroupMember.ps1 | 3 +- .../custom/generated/Set-JcSdkWorkday.ps1 | 3 +- .../custom/generated/Set-JcSdkWorkflow.ps1 | 342 + .../Set-JcSdkWorkflowAccessRequest.ps1 | 226 + .../generated/Set-JcSdkWorkflowSetting.ps1 | 191 + .../generated/Stop-JcSdkAppleMdmDevice.ps1 | 3 +- .../generated/Sync-JcSdkAppleMdmDevice.ps1 | 3 +- ...ate-JcSdkAppleMdmDeviceLockInformation.ps1 | 3 +- .../Update-JcSdkAuthenticationPolicy.ps1 | 3 +- .../custom/generated/Update-JcSdkBulkUser.ps1 | 2 +- .../custom/generated/Update-JcSdkGSuite.ps1 | 3 +- .../custom/generated/Update-JcSdkIPList.ps1 | 3 +- .../generated/Update-JcSdkLdapServer.ps1 | 3 +- .../generated/Update-JcSdkOffice365.ps1 | 3 +- .../Update-JcSdkUserPushEndpoint.ps1 | 3 +- .../docs/exports/Clear-JcSdkAppleMdmDevice.md | 3 +- ...Clear-JcSdkAppleMdmDeviceActivationLock.md | 3 +- .../docs/exports/Get-JcSdkActiveDirectory.md | 3 +- .../exports/Get-JcSdkActiveDirectoryAgent.md | 3 +- .../Get-JcSdkActiveDirectoryAssociation.md | 3 +- .../Get-JcSdkActiveDirectoryTraverseUser.md | 3 +- ...t-JcSdkActiveDirectoryTraverseUserGroup.md | 3 +- .../Get-JcSdkAdministratorOrganization.md | 2 +- .../Get-JcSdkAdministratorOrganizationLink.md | 2 +- .../docs/exports/Get-JcSdkAppleMdm.md | 2 +- .../docs/exports/Get-JcSdkAppleMdmDevice.md | 3 +- .../Get-JcSdkAppleMdmEnrollmentProfile.md | 2 +- .../Get-JcSdkApplicationAssociation.md | 3 +- .../Get-JcSdkApplicationTraverseUser.md | 3 +- .../Get-JcSdkApplicationTraverseUserGroup.md | 3 +- .../exports/Get-JcSdkAuthenticationPolicy.md | 3 +- .../docs/exports/Get-JcSdkBulkUserState.md | 2 +- .../docs/exports/Get-JcSdkBulkUsersResult.md | 3 +- .../exports/Get-JcSdkCommandAssociation.md | 3 +- .../exports/Get-JcSdkCommandTraverseSystem.md | 3 +- .../Get-JcSdkCommandTraverseSystemGroup.md | 3 +- .../Get-JcSdkCustomEmailConfiguration.md | 3 +- .../exports/Get-JcSdkCustomEmailTemplate.md | 2 +- .../docs/exports/Get-JcSdkDirectory.md | 2 +- .../docs/exports/Get-JcSdkDuoAccount.md | 3 +- .../docs/exports/Get-JcSdkDuoApplication.md | 3 +- .../docs/exports/Get-JcSdkGSuite.md | 3 +- .../exports/Get-JcSdkGSuiteAssociation.md | 3 +- .../exports/Get-JcSdkGSuiteTranslationRule.md | 3 +- .../exports/Get-JcSdkGSuiteTraverseUser.md | 3 +- .../Get-JcSdkGSuiteTraverseUserGroup.md | 3 +- .../exports/Get-JcSdkGSuiteUsersToImport.md | 2 +- .../docs/exports/Get-JcSdkGroup.md | 4 +- .../Get-JcSdkGsuiteUsersToImportFormatted.md | 2 +- .../docs/exports/Get-JcSdkIPList.md | 3 +- .../docs/exports/Get-JcSdkLdapServer.md | 3 +- .../exports/Get-JcSdkLdapServerAssociation.md | 3 +- .../exports/Get-JcSdkLdapServerSambaDomain.md | 3 +- .../Get-JcSdkLdapServerTraverseUser.md | 3 +- .../Get-JcSdkLdapServerTraverseUserGroup.md | 3 +- .../Get-JcSdkNextScheduledBulkUserState.md | 2 +- .../docs/exports/Get-JcSdkOffice365.md | 3 +- .../exports/Get-JcSdkOffice365Association.md | 3 +- .../Get-JcSdkOffice365TranslationRule.md | 3 +- .../exports/Get-JcSdkOffice365TraverseUser.md | 22 +- .../Get-JcSdkOffice365TraverseUserGroup.md | 3 +- .../Get-JcSdkOffice365UsersToImport.md | 2 +- .../Get-JcSdkOrganizationPolicyResult.md | 2 +- .../docs/exports/Get-JcSdkPolicy.md | 3 +- .../exports/Get-JcSdkPolicyAssociation.md | 3 +- .../docs/exports/Get-JcSdkPolicyGroup.md | 3 +- .../Get-JcSdkPolicyGroupAssociation.md | 2 +- .../exports/Get-JcSdkPolicyGroupMember.md | 3 +- .../exports/Get-JcSdkPolicyGroupMembership.md | 3 +- .../Get-JcSdkPolicyGroupTraverseSystem.md | 3 +- ...Get-JcSdkPolicyGroupTraverseSystemGroup.md | 3 +- .../docs/exports/Get-JcSdkPolicyResult.md | 3 +- .../docs/exports/Get-JcSdkPolicyStatus.md | 2 +- .../docs/exports/Get-JcSdkPolicyTemplate.md | 3 +- .../exports/Get-JcSdkPolicyTraverseSystem.md | 3 +- .../Get-JcSdkPolicyTraverseSystemGroup.md | 3 +- .../exports/Get-JcSdkProviderAdministrator.md | 2 +- .../exports/Get-JcSdkProviderOrganization.md | 2 +- .../docs/exports/Get-JcSdkProvidersInvoice.md | 3 +- .../Get-JcSdkRadiusServerAssociation.md | 3 +- .../Get-JcSdkRadiusServerTraverseUser.md | 3 +- .../Get-JcSdkRadiusServerTraverseUserGroup.md | 3 +- .../docs/exports/Get-JcSdkSoftwareApp.md | 3 +- .../Get-JcSdkSoftwareAppAssociation.md | 3 +- .../exports/Get-JcSdkSoftwareAppStatus.md | 3 +- .../Get-JcSdkSoftwareAppTraverseSystem.md | 3 +- ...Get-JcSdkSoftwareAppTraverseSystemGroup.md | 3 +- .../docs/exports/Get-JcSdkSubscription.md | 2 +- .../exports/Get-JcSdkSystemAssociation.md | 3 +- .../docs/exports/Get-JcSdkSystemFdeKey.md | 3 +- .../docs/exports/Get-JcSdkSystemGroup.md | 3 +- .../Get-JcSdkSystemGroupAssociation.md | 3 +- .../exports/Get-JcSdkSystemGroupMember.md | 3 +- .../exports/Get-JcSdkSystemGroupMembership.md | 3 +- .../Get-JcSdkSystemGroupTraverseCommand.md | 3 +- .../Get-JcSdkSystemGroupTraversePolicy.md | 3 +- ...Get-JcSdkSystemGroupTraversePolicyGroup.md | 3 +- .../Get-JcSdkSystemGroupTraverseUser.md | 3 +- .../Get-JcSdkSystemGroupTraverseUserGroup.md | 3 +- .../docs/exports/Get-JcSdkSystemInsightAlf.md | 2 +- .../Get-JcSdkSystemInsightAlfException.md | 2 +- .../Get-JcSdkSystemInsightAlfExplicitAuth.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightApp.md | 2 +- .../Get-JcSdkSystemInsightAppCompatShim.md | 2 +- .../Get-JcSdkSystemInsightAuthorizedKey.md | 2 +- ...JcSdkSystemInsightAzureInstanceMetadata.md | 2 +- .../Get-JcSdkSystemInsightAzureInstanceTag.md | 2 +- .../exports/Get-JcSdkSystemInsightBattery.md | 2 +- .../Get-JcSdkSystemInsightBitlockerInfo.md | 2 +- .../Get-JcSdkSystemInsightBrowserPlugin.md | 2 +- .../Get-JcSdkSystemInsightCertificate.md | 2 +- .../Get-JcSdkSystemInsightChassisInfo.md | 2 +- .../Get-JcSdkSystemInsightChromeExtension.md | 2 +- .../Get-JcSdkSystemInsightConnectivity.md | 2 +- .../exports/Get-JcSdkSystemInsightCrash.md | 2 +- .../Get-JcSdkSystemInsightCupDestination.md | 2 +- .../Get-JcSdkSystemInsightDiskEncryption.md | 2 +- .../exports/Get-JcSdkSystemInsightDiskInfo.md | 2 +- .../Get-JcSdkSystemInsightDnsResolver.md | 2 +- .../exports/Get-JcSdkSystemInsightEtcHost.md | 2 +- .../Get-JcSdkSystemInsightFirefoxAddon.md | 2 +- .../exports/Get-JcSdkSystemInsightGroup.md | 2 +- .../Get-JcSdkSystemInsightIeExtension.md | 2 +- .../Get-JcSdkSystemInsightInterfaceAddress.md | 2 +- .../Get-JcSdkSystemInsightInterfaceDetail.md | 2 +- .../Get-JcSdkSystemInsightKernelInfo.md | 2 +- .../exports/Get-JcSdkSystemInsightLaunchd.md | 2 +- .../Get-JcSdkSystemInsightLinuxPackage.md | 2 +- .../Get-JcSdkSystemInsightLoggedinUser.md | 2 +- .../Get-JcSdkSystemInsightLogicalDrive.md | 2 +- .../Get-JcSdkSystemInsightManagedPolicy.md | 2 +- .../exports/Get-JcSdkSystemInsightMount.md | 2 +- .../Get-JcSdkSystemInsightOSVersion.md | 2 +- .../exports/Get-JcSdkSystemInsightPatch.md | 2 +- .../exports/Get-JcSdkSystemInsightProgram.md | 2 +- .../Get-JcSdkSystemInsightPythonPackage.md | 2 +- .../Get-JcSdkSystemInsightSafariExtension.md | 2 +- .../Get-JcSdkSystemInsightScheduledTask.md | 2 +- .../Get-JcSdkSystemInsightSecureboot.md | 2 +- .../exports/Get-JcSdkSystemInsightService.md | 2 +- .../exports/Get-JcSdkSystemInsightShadow.md | 2 +- .../Get-JcSdkSystemInsightSharedFolder.md | 2 +- .../Get-JcSdkSystemInsightSharedResource.md | 2 +- ...Get-JcSdkSystemInsightSharingPreference.md | 2 +- .../Get-JcSdkSystemInsightSipConfig.md | 2 +- .../Get-JcSdkSystemInsightStartupItem.md | 2 +- .../Get-JcSdkSystemInsightSystemControl.md | 2 +- .../Get-JcSdkSystemInsightSystemInfo.md | 2 +- .../exports/Get-JcSdkSystemInsightTpmInfo.md | 2 +- .../exports/Get-JcSdkSystemInsightUptime.md | 2 +- .../Get-JcSdkSystemInsightUsbDevice.md | 2 +- .../exports/Get-JcSdkSystemInsightUser.md | 2 +- .../Get-JcSdkSystemInsightUserAssist.md | 2 +- .../Get-JcSdkSystemInsightUserGroup.md | 2 +- .../Get-JcSdkSystemInsightUserSshKey.md | 2 +- .../Get-JcSdkSystemInsightWifiNetwork.md | 2 +- .../Get-JcSdkSystemInsightWifiStatus.md | 2 +- ...JcSdkSystemInsightWindowsSecurityCenter.md | 2 +- ...cSdkSystemInsightWindowsSecurityProduct.md | 2 +- .../docs/exports/Get-JcSdkSystemMember.md | 3 +- .../exports/Get-JcSdkSystemPolicyStatus.md | 2 +- .../exports/Get-JcSdkSystemTraverseCommand.md | 3 +- .../exports/Get-JcSdkSystemTraversePolicy.md | 3 +- .../Get-JcSdkSystemTraversePolicyGroup.md | 3 +- .../exports/Get-JcSdkSystemTraverseUser.md | 3 +- .../Get-JcSdkSystemTraverseUserGroup.md | 3 +- .../docs/exports/Get-JcSdkUserAssociation.md | 3 +- .../docs/exports/Get-JcSdkUserGroup.md | 3 +- .../exports/Get-JcSdkUserGroupAssociation.md | 3 +- .../docs/exports/Get-JcSdkUserGroupMember.md | 3 +- .../exports/Get-JcSdkUserGroupMembership.md | 3 +- ...t-JcSdkUserGroupTraverseActiveDirectory.md | 3 +- .../Get-JcSdkUserGroupTraverseApplication.md | 3 +- .../Get-JcSdkUserGroupTraverseDirectory.md | 3 +- .../Get-JcSdkUserGroupTraverseGSuite.md | 3 +- .../Get-JcSdkUserGroupTraverseLdapServer.md | 3 +- .../Get-JcSdkUserGroupTraverseOffice365.md | 3 +- .../Get-JcSdkUserGroupTraverseRadiusServer.md | 3 +- .../Get-JcSdkUserGroupTraverseSystem.md | 3 +- .../Get-JcSdkUserGroupTraverseSystemGroup.md | 3 +- .../docs/exports/Get-JcSdkUserMember.md | 3 +- .../docs/exports/Get-JcSdkUserPushEndpoint.md | 3 +- .../Get-JcSdkUserTraverseActiveDirectory.md | 3 +- .../Get-JcSdkUserTraverseApplication.md | 3 +- .../exports/Get-JcSdkUserTraverseDirectory.md | 3 +- .../exports/Get-JcSdkUserTraverseGSuite.md | 3 +- .../Get-JcSdkUserTraverseLdapServer.md | 3 +- .../exports/Get-JcSdkUserTraverseOffice365.md | 3 +- .../Get-JcSdkUserTraverseRadiusServer.md | 3 +- .../exports/Get-JcSdkUserTraverseSystem.md | 3 +- .../Get-JcSdkUserTraverseSystemGroup.md | 3 +- .../docs/exports/Get-JcSdkWorkday.md | 3 +- .../docs/exports/Get-JcSdkWorkdayWorker.md | 3 +- .../docs/exports/Get-JcSdkWorkflow.md | 207 + .../exports/Get-JcSdkWorkflowAccessRequest.md | 207 + .../Get-JcSdkWorkflowAccessRequestProgress.md | 154 + .../docs/exports/Get-JcSdkWorkflowSetting.md | 83 + .../docs/exports/Grant-JcSdkWorkday.md | 3 +- .../docs/exports/Import-JcSdkScim.md | 3 +- .../docs/exports/Import-JcSdkWorkday.md | 3 +- .../docs/exports/Import-JcSdkWorkdayResult.md | 3 +- .../Invoke-JcSdkReclaimSoftwareAppLicense.md | 3 +- .../docs/exports/JumpCloud.SDK.V2.md | 39 +- .../docs/exports/Lock-JcSdkAppleMdmDevice.md | 3 +- .../docs/exports/New-JcSdkActiveDirectory.md | 2 +- .../exports/New-JcSdkActiveDirectoryAgent.md | 3 +- .../New-JcSdkAdministratorOrganization.md | 3 +- .../exports/New-JcSdkAuthenticationPolicy.md | 2 +- .../docs/exports/New-JcSdkBulkUser.md | 2 +- .../docs/exports/New-JcSdkBulkUserState.md | 2 +- .../New-JcSdkCustomEmailConfiguration.md | 2 +- .../docs/exports/New-JcSdkDuoAccount.md | 2 +- .../docs/exports/New-JcSdkDuoApplication.md | 3 +- .../exports/New-JcSdkGSuiteTranslationRule.md | 3 +- .../docs/exports/New-JcSdkIPList.md | 2 +- .../exports/New-JcSdkLdapServerSambaDomain.md | 3 +- .../New-JcSdkOffice365TranslationRule.md | 3 +- .../docs/exports/New-JcSdkPolicy.md | 2 +- .../docs/exports/New-JcSdkPolicyGroup.md | 2 +- .../exports/New-JcSdkProviderAdministrator.md | 3 +- .../docs/exports/New-JcSdkSoftwareApp.md | 2 +- .../docs/exports/New-JcSdkSystemGroup.md | 2 +- .../docs/exports/New-JcSdkUserGroup.md | 2 +- .../docs/exports/New-JcSdkWorkday.md | 2 +- .../docs/exports/New-JcSdkWorkflow.md | 471 ++ .../exports/New-JcSdkWorkflowAccessRequest.md | 195 + .../docs/exports/New-JcSdkWorkflowSetting.md | 251 + .../New-JcSdkWorkflowUserApprovalRequest.md | 212 + .../exports/Remove-JcSdkActiveDirectory.md | 3 +- .../Remove-JcSdkActiveDirectoryAgent.md | 3 +- .../Remove-JcSdkAdministratorOrganization.md | 3 +- .../docs/exports/Remove-JcSdkAppleMdm.md | 3 +- .../exports/Remove-JcSdkAppleMdmDevice.md | 3 +- .../exports/Remove-JcSdkApplicationLogo.md | 3 +- .../Remove-JcSdkAuthenticationPolicy.md | 3 +- .../docs/exports/Remove-JcSdkBulkUserState.md | 3 +- .../Remove-JcSdkCustomEmailConfiguration.md | 3 +- .../docs/exports/Remove-JcSdkDuoAccount.md | 3 +- .../exports/Remove-JcSdkDuoApplication.md | 3 +- .../Remove-JcSdkGSuiteTranslationRule.md | 3 +- .../docs/exports/Remove-JcSdkIPList.md | 3 +- .../Remove-JcSdkLdapServerSambaDomain.md | 3 +- .../Remove-JcSdkOffice365TranslationRule.md | 3 +- .../docs/exports/Remove-JcSdkPolicy.md | 3 +- .../docs/exports/Remove-JcSdkPolicyGroup.md | 3 +- .../Remove-JcSdkProviderAdministrator.md | 3 +- .../docs/exports/Remove-JcSdkSoftwareApp.md | 3 +- .../docs/exports/Remove-JcSdkSystemGroup.md | 3 +- .../docs/exports/Remove-JcSdkUserGroup.md | 3 +- .../exports/Remove-JcSdkUserPushEndpoint.md | 3 +- .../Remove-JcSdkWorkdayAuthorization.md | 3 +- .../docs/exports/Remove-JcSdkWorkflow.md | 185 + .../exports/Restart-JcSdkAppleMdmDevice.md | 3 +- .../Set-JcSdkActiveDirectoryAssociation.md | 3 +- .../docs/exports/Set-JcSdkAppleMdm.md | 3 +- .../Set-JcSdkApplicationAssociation.md | 3 +- .../exports/Set-JcSdkCommandAssociation.md | 3 +- .../Set-JcSdkCustomEmailConfiguration.md | 3 +- .../docs/exports/Set-JcSdkDuoApplication.md | 3 +- .../exports/Set-JcSdkGSuiteAssociation.md | 3 +- .../docs/exports/Set-JcSdkIPList.md | 3 +- .../exports/Set-JcSdkLdapServerAssociation.md | 3 +- .../exports/Set-JcSdkLdapServerSambaDomain.md | 3 +- .../exports/Set-JcSdkOffice365Association.md | 3 +- .../docs/exports/Set-JcSdkPolicy.md | 3 +- .../exports/Set-JcSdkPolicyAssociation.md | 3 +- .../docs/exports/Set-JcSdkPolicyGroup.md | 3 +- .../Set-JcSdkPolicyGroupAssociation.md | 3 +- .../exports/Set-JcSdkPolicyGroupMember.md | 3 +- .../Set-JcSdkRadiusServerAssociation.md | 3 +- .../docs/exports/Set-JcSdkSoftwareApp.md | 3 +- .../Set-JcSdkSoftwareAppAssociation.md | 3 +- .../exports/Set-JcSdkSystemAssociation.md | 3 +- .../docs/exports/Set-JcSdkSystemGroup.md | 3 +- .../Set-JcSdkSystemGroupAssociation.md | 3 +- .../exports/Set-JcSdkSystemGroupMember.md | 3 +- .../docs/exports/Set-JcSdkUserAssociation.md | 3 +- .../docs/exports/Set-JcSdkUserGroup.md | 3 +- .../exports/Set-JcSdkUserGroupAssociation.md | 3 +- .../docs/exports/Set-JcSdkUserGroupMember.md | 3 +- .../docs/exports/Set-JcSdkWorkday.md | 3 +- .../docs/exports/Set-JcSdkWorkflow.md | 517 ++ .../exports/Set-JcSdkWorkflowAccessRequest.md | 301 + .../docs/exports/Set-JcSdkWorkflowSetting.md | 251 + .../docs/exports/Stop-JcSdkAppleMdmDevice.md | 3 +- .../docs/exports/Sync-JcSdkAppleMdmDevice.md | 3 +- ...date-JcSdkAppleMdmDeviceLockInformation.md | 3 +- .../Update-JcSdkAuthenticationPolicy.md | 3 +- .../docs/exports/Update-JcSdkBulkUser.md | 2 +- .../docs/exports/Update-JcSdkGSuite.md | 3 +- .../docs/exports/Update-JcSdkIPList.md | 3 +- .../docs/exports/Update-JcSdkLdapServer.md | 3 +- .../docs/exports/Update-JcSdkOffice365.md | 3 +- .../exports/Update-JcSdkUserPushEndpoint.md | 3 +- .../examples/Get-JcSdkWorkflow.md | 22 + .../Get-JcSdkWorkflowAccessRequest.md | 22 + .../Get-JcSdkWorkflowAccessRequestProgress.md | 22 + .../examples/Get-JcSdkWorkflowSetting.md | 22 + .../examples/New-JcSdkWorkflow.md | 22 + .../New-JcSdkWorkflowAccessRequest.md | 22 + .../examples/New-JcSdkWorkflowSetting.md | 22 + .../New-JcSdkWorkflowUserApprovalRequest.md | 22 + .../examples/Remove-JcSdkWorkflow.md | 22 + .../examples/Set-JcSdkWorkflow.md | 22 + .../Set-JcSdkWorkflowAccessRequest.md | 22 + .../examples/Set-JcSdkWorkflowSetting.md | 22 + .../test/Get-JcSdkWorkflow.Tests.ps1 | 29 + .../Get-JcSdkWorkflowAccessRequest.Tests.ps1 | 29 + ...SdkWorkflowAccessRequestProgress.Tests.ps1 | 25 + .../test/Get-JcSdkWorkflowSetting.Tests.ps1 | 21 + .../test/New-JcSdkWorkflow.Tests.ps1 | 25 + .../New-JcSdkWorkflowAccessRequest.Tests.ps1 | 25 + .../test/New-JcSdkWorkflowSetting.Tests.ps1 | 25 + ...JcSdkWorkflowUserApprovalRequest.Tests.ps1 | 25 + .../test/Remove-JcSdkWorkflow.Tests.ps1 | 25 + .../test/Set-JcSdkWorkflow.Tests.ps1 | 33 + .../Set-JcSdkWorkflowAccessRequest.Tests.ps1 | 33 + .../test/Set-JcSdkWorkflowSetting.Tests.ps1 | 25 + SwaggerSpecs/JumpCloud.SDK.V2.json | 5574 +++++++++++------ 591 files changed, 16064 insertions(+), 4512 deletions(-) create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 diff --git a/Configs/JumpCloud.SDK.V2.yaml b/Configs/JumpCloud.SDK.V2.yaml index 1c618b99a..2abc66047 100644 --- a/Configs/JumpCloud.SDK.V2.yaml +++ b/Configs/JumpCloud.SDK.V2.yaml @@ -1,44 +1,33 @@ +customFunctionPrefix: JcSdk +prefix: JcSdkInternal debug: true -verbose: true -# Values -# azure: false -powershell: true -branch: master +help-link-prefix: https://github.com/TheJumpCloud/jcapi-powershell/tree/$(branch)/SDKs/PowerShell/ +sample-generation: true +clear-output-folder: true +input-file: +- SwaggerSpecs/JumpCloud.SDK.V2.json +directive: +- hide: true + where: + prefix: JcSdk +branch: CUT-4022_AccessRequests +namespace: JumpCloud.SDK.V2 metadata: - authors: JumpCloud - owners: JumpCloud description: The JumpCloud V2 PowerShell SDK copyright: (c) JumpCloud. All rights reserved. companyName: JumpCloud + formatsToProcess: [] + tags: JumpCloud, DaaS, Jump, Cloud, Directory requireLicenseAcceptance: false licenseUri: https://github.com/TheJumpCloud/jcapi-powershell/tree/$(branch)/LICENSE - projectUri: https://github.com/TheJumpCloud/jcapi-powershell/tree/$(branch)/SDKs/PowerShell/JumpCloud.SDK.V2/ + owners: JumpCloud iconUri: https://console.jumpcloud.com/img/login-viewport-logo.png - tags: JumpCloud, DaaS, Jump, Cloud, Directory - formatsToProcess: [] - -# Names -prefix: JcSdkInternal -customFunctionPrefix: JcSdk -help-link-prefix: https://github.com/TheJumpCloud/jcapi-powershell/tree/$(branch)/SDKs/PowerShell/ - -# Folders -clear-output-folder: true -output-folder: SDKs/PowerShell/JumpCloud.SDK.V2 -base-folder: '..' - -input-file: - - SwaggerSpecs/JumpCloud.SDK.V2.json -# title: JumpCloud.SDK.V2 + authors: JumpCloud + projectUri: https://github.com/TheJumpCloud/jcapi-powershell/tree/$(branch)/SDKs/PowerShell/JumpCloud.SDK.V2/ +verbose: true module-name: JumpCloud.SDK.V2 -namespace: JumpCloud.SDK.V2 -sample-generation: true -module-version: 0.1.2 +output-folder: SDKs/PowerShell/JumpCloud.SDK.V2 dll-name: JumpCloud.SDK.V2.private - -directive: - - where: - prefix: JcSdk - hide: true -# Prevent response flattening: https://github.com/Azure/autorest.powershell/issues/743 -# inlining-threshold: 0 +module-version: 0.2.0 +powershell: true +base-folder: .. diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index bd9d89d0e..16fa175c2 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,3 +1,40 @@ +## JumpCloud.SDK.V2-0.2.0 +Release Date: Feb 10, 2026 +#### RELEASE NOTES +``` +Add accessRequest workflow functions/ general SDK updates from source +``` + +#### Generated Changes: + +
+Functions Added +Get-JcSdkWorkflow +Get-JcSdkWorkflowAccessRequest +Get-JcSdkWorkflowAccessRequestProgress +Get-JcSdkWorkflowSetting +New-JcSdkWorkflow +New-JcSdkWorkflowAccessRequest +New-JcSdkWorkflowSetting +Remove-JcSdkWorkflow +Set-JcSdkWorkflow +Set-JcSdkWorkflowAccessRequest +Set-JcSdkWorkflowSetting + +
+ +
+Functions Modified + +No changes +
+ +
+Functions Removed + +No changes +
+ ## JumpCloud.SDK.V2-0.1.2 Release Date: December 16, 2025 #### RELEASE NOTES diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj index 8866d4d9c..69d8eacd3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.csproj @@ -1,7 +1,7 @@ - 0.1.2 + 0.2.0 7.1 netstandard2.0 Library diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml index c79bb6188..2d6f6c270 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml @@ -674,6 +674,9 @@ + + + @@ -738,6 +741,9 @@ Imei + + IsAppleSilicon + IsSupervised @@ -810,6 +816,9 @@ + + + @@ -835,6 +844,9 @@ PasscodePresent + + RecoveryLockEnabled + UserApprovedEnrollment @@ -3134,6 +3146,9 @@ + + + @@ -3144,6 +3159,9 @@ + + ExternalId + Id @@ -3836,6 +3854,9 @@ + + + @@ -3855,6 +3876,9 @@ Name + + OrganizationObjectId + Type @@ -4334,39 +4358,1297 @@ - - - + + + + + + + + + + + + + + + + + + + + + CreatedAt + + + Id + + + Status + + + StatusMsg + + + UpdatedAt + + + + + + + + JumpCloud.SDK.V2.Models.JumpCloudApiIdentity + + JumpCloud.SDK.V2.Models.JumpCloudApiIdentity#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AccountId + + + ActivedirectoryId + + + AdministratorId + + + AgentId + + + AppleMdmId + + + ApplicationId + + + ApprovalFlowId + + + CommandId + + + CustomEmailType + + + DeviceId + + + GroupId + + + GsuiteId + + + Id + + + JobId + + + LdapserverId + + + Office365Id + + + PolicyId + + + ProviderId + + + PushEndpointId + + + RadiusserverId + + + SoftwareAppId + + + SystemId + + + UserId + + + WorkdayId + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoAccessWorkflow + + JumpCloud.SDK.V2.Models.JumpcloudIngressoAccessWorkflow#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ApprovalType + + + ApproverRequirement + + + Category + + + CreatedBy + + + Description + + + FixedDuration + + + IconColor + + + IconUrl + + + Id + + + Name + + + NonAdminApproval + + + OrganizationId + + + SlackEnabled + + + Status + + + TimeBasedAccess + + + TtlConfig + + + UpdatedBy + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoAccessWorkflowResources + + JumpCloud.SDK.V2.Models.JumpcloudIngressoAccessWorkflowResources#Multiple + + + + + + + + + + + + + + + + + + ResourceId + + + ResourceName + + + ResourceType + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoAccessWorkflowSettings + + JumpCloud.SDK.V2.Models.JumpcloudIngressoAccessWorkflowSettings#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AdminApprovalEmail + + + CreatedBy + + + ExposeApprovalProgress + + + Id + + + ResourceRequest + + + UpdatedBy + + + UserApprovalEmail + + + UserRequestEmail + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoApproverResource + + JumpCloud.SDK.V2.Models.JumpcloudIngressoApproverResource#Multiple + + + + + + + + + + + + + + + + + + + + + + + + RequireAll + + + ResourceId + + + ResourceName + + + ResourceOrder + + + ResourceType + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoApprovers + + JumpCloud.SDK.V2.Models.JumpcloudIngressoApprovers#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ApprovalSequence + + + ApprovalStatus + + + ApproverId + + + ApproverType + + + CreatedAt + + + RequireAll + + + ResourceId + + + ResourceName + + + ResourceType + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoApproversProgress + + JumpCloud.SDK.V2.Models.JumpcloudIngressoApproversProgress#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ApprovalSequence + + + ApprovalStatus + + + ApprovedCount + + + ApproverId + + + ApproverType + + + CreatedAt + + + OverridenApproval + + + RequireAll + + + ResourceId + + + ResourceName + + + ResourceType + + + TotalCount + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoChannelEvent + + JumpCloud.SDK.V2.Models.JumpcloudIngressoChannelEvent#Multiple + + + + + + + + + + + + ChannelObjectId + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowRequest + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowRequest#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ApprovalType + + + ApproverRequirement + + + Category + + + Description + + + FixedDuration + + + IconColor + + + IconUrl + + + Name + + + NonAdminApproval + + + OrganizationObjectId + + + ResourceId + + + ResourceType + + + SlackEnabled + + + Status + + + TimeBasedAccess + + + TtlConfig + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowResponse#Multiple + + + + + + + + + + + + Id + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsRequest + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsRequest#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + AdminApprovalEmail + + + ExposeApprovalProgress + + + OrganizationObjectId + + + ResourceRequest + + + UserApprovalEmail + + + UserRequestEmail + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsResponse#Multiple + + + + + + + + + + + + Id + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequest + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequest#Multiple + + + + + + + + + + + + + + + + + + + + + Id + + + OrganizationObjectId + + + Reason + + + RequestedDuration + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequestResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequestResponse#Multiple + + + + + + + + + + + + Id + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAccessRequestApprovalProgressResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAccessRequestApprovalProgressResponse#Multiple + + + + + + + + + + + + ApproversRequirement + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAllAccessWorkFlowsResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAllAccessWorkFlowsResponse#Multiple + + + + + + + + + + + + TotalCount + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAllWorkflowAccessRequestResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAllWorkflowAccessRequestResponse#Multiple + + + + + + + + + + + + TotalCount + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetWorkflowAccessRequestResponse + + JumpCloud.SDK.V2.Models.JumpcloudIngressoGetWorkflowAccessRequestResponse#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ApprovalFlowDescription + + + ApprovalFlowId + + + ApprovalFlowName + + + ApprovalType + + + ApprovedDuration + + + ApproversRequirement + + + CreatedAt + + + Department + + + FixedDuration + + + Group + + + IconColor + + + IconUrl + + + Id + + + Manager + + + Metadata + + + NonAdminApproval + + + Remarks + + + RequestedDuration + + + Requestor + + + RunId + + + Status + + + TimeBasedAccess + + + TtlConfig + + + UpdatedAt + + + UpdatedBy + + + UserName + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoSlackConfig + + JumpCloud.SDK.V2.Models.JumpcloudIngressoSlackConfig#Multiple + + + + + + + + + + + + SlackResourceId + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoUpdateAccessWorkflowSettingsRequest + + JumpCloud.SDK.V2.Models.JumpcloudIngressoUpdateAccessWorkflowSettingsRequest#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + AdminApprovalEmail + + + ExposeApprovalProgress + + + OrganizationObjectId + + + ResourceRequest + + + UserApprovalEmail + + + UserRequestEmail + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoUserApprovalRequest + + JumpCloud.SDK.V2.Models.JumpcloudIngressoUserApprovalRequest#Multiple + + + + + + + + + + + + + + + + + + + + + + + + ApprovedDuration + + + Id + + + OrganizationObjectId + + + Remarks + + + Status + + + + + + + + JumpCloud.SDK.V2.Models.JumpcloudIngressoVisibleTo + + JumpCloud.SDK.V2.Models.JumpcloudIngressoVisibleTo#Multiple + + + - - - - - - - + - - CreatedAt - Id - Status - - - StatusMsg - - - UpdatedAt + Name @@ -4374,153 +5656,147 @@ - JumpCloud.SDK.V2.Models.JumpCloudApiIdentity + JumpCloud.SDK.V2.Models.JumpcloudIngressoWorkflowAccessRequest - JumpCloud.SDK.V2.Models.JumpCloudApiIdentity#Multiple + JumpCloud.SDK.V2.Models.JumpcloudIngressoWorkflowAccessRequest#Multiple - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - AccountId - - - ActivedirectoryId + ApprovalFlowDescription - AdministratorId + ApprovalFlowId - AgentId + ApprovalFlowName - AppleMdmId + ApprovalType - ApplicationId + ApprovedDuration - CommandId + CreatedAt - CustomEmailType + Department - DeviceId + Group - GroupId + IconColor - GsuiteId + IconUrl Id - JobId + Manager - LdapserverId + NonAdminApproval - Office365Id + Remarks - PolicyId + RequestedDuration - ProviderId + Requestor - PushEndpointId + RunId - RadiusserverId + Status - SoftwareAppId + UpdatedAt - SystemId + UpdatedBy - UserId + UserName - WorkdayId + WfMetadata @@ -5047,6 +6323,158 @@ + + JumpCloud.SDK.V2.Models.Paths14Hfh8UApprovalflowsApprovalflowidPutRequestbodyContentApplicationJsonSchema + + JumpCloud.SDK.V2.Models.Paths14Hfh8UApprovalflowsApprovalflowidPutRequestbodyContentApplicationJsonSchema#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ApprovalType + + + ApproverRequirement + + + Description + + + FixedDuration + + + IconColor + + + IconUrl + + + Name + + + NonAdminApproval + + + OrganizationObjectId + + + ResourceId + + + SlackEnabled + + + Status + + + TimeBasedAccess + + + TtlConfig + + + + + + + + JumpCloud.SDK.V2.Models.Paths17F25RsApprovalflowrequestIdPutRequestbodyContentApplicationJsonSchema + + JumpCloud.SDK.V2.Models.Paths17F25RsApprovalflowrequestIdPutRequestbodyContentApplicationJsonSchema#Multiple + + + + + + + + + + + + + + + + + + + + + + + + + + + Admin + + + ApprovedDuration + + + InternalNote + + + OrganizationObjectId + + + Remarks + + + Status + + + + + + JumpCloud.SDK.V2.Models.Paths1Dvt4UsLdapserversIdPatchResponses200ContentApplicationJsonSchema @@ -5502,6 +6930,9 @@ + + + @@ -5521,6 +6952,9 @@ Name + + OrganizationObjectId + Type @@ -7049,6 +8483,40 @@ + + JumpCloud.SDK.V2.Models.SyncStatus + + JumpCloud.SDK.V2.Models.SyncStatus#Multiple + + + + + + + + + + + + + + + + + + Code + + + Message + + + SyncedAt + + + + + + JumpCloud.SDK.V2.Models.Systemfdekey @@ -7096,6 +8564,9 @@ + + + @@ -7121,6 +8592,9 @@ Name + + OrganizationObjectId + Type @@ -12200,6 +13674,9 @@ + + + @@ -12225,6 +13702,9 @@ Name + + OrganizationObjectId + Type diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec index d933f3756..aa8dcc8d0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.nuspec @@ -2,7 +2,7 @@ JumpCloud.SDK.V2 - 0.1.2 + 0.2.0 JumpCloud JumpCloud false diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index dc0733e83..463b3ba16 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 12/16/2025 +# Generated on: 2/10/2026 # @{ @@ -12,7 +12,7 @@ RootModule = './JumpCloud.SDK.V2.psm1' # Version number of this module. -ModuleVersion = '0.1.2' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -195,7 +195,8 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Get-JcSdkUserTraverseLdapServer', 'Get-JcSdkUserTraverseOffice365', 'Get-JcSdkUserTraverseRadiusServer', 'Get-JcSdkUserTraverseSystem', 'Get-JcSdkUserTraverseSystemGroup', 'Get-JcSdkWorkday', - 'Get-JcSdkWorkdayWorker', 'Grant-JcSdkWorkday', 'Import-JcSdkScim', + 'Get-JcSdkWorkdayWorker', 'Get-JcSdkWorkflow', + 'Get-JcSdkWorkflowSetting', 'Grant-JcSdkWorkday', 'Import-JcSdkScim', 'Import-JcSdkWorkday', 'Import-JcSdkWorkdayResult', 'Invoke-JcSdkReclaimSoftwareAppLicense', 'Lock-JcSdkAppleMdmDevice', 'New-JcSdkActiveDirectory', 'New-JcSdkActiveDirectoryAgent', @@ -208,8 +209,8 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'New-JcSdkOffice365TranslationRule', 'New-JcSdkPolicy', 'New-JcSdkPolicyGroup', 'New-JcSdkProviderAdministrator', 'New-JcSdkSoftwareApp', 'New-JcSdkSystemGroup', 'New-JcSdkUserGroup', - 'New-JcSdkWorkday', 'Remove-JcSdkActiveDirectory', - 'Remove-JcSdkActiveDirectoryAgent', + 'New-JcSdkWorkday', 'New-JcSdkWorkflow', 'New-JcSdkWorkflowSetting', + 'Remove-JcSdkActiveDirectory', 'Remove-JcSdkActiveDirectoryAgent', 'Remove-JcSdkAdministratorOrganization', 'Remove-JcSdkAppleMdm', 'Remove-JcSdkAppleMdmDevice', 'Remove-JcSdkApplicationLogo', 'Remove-JcSdkAuthenticationPolicy', 'Remove-JcSdkBulkUserState', @@ -220,7 +221,8 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Remove-JcSdkPolicyGroup', 'Remove-JcSdkProviderAdministrator', 'Remove-JcSdkSoftwareApp', 'Remove-JcSdkSystemGroup', 'Remove-JcSdkUserGroup', 'Remove-JcSdkUserPushEndpoint', - 'Remove-JcSdkWorkdayAuthorization', 'Restart-JcSdkAppleMdmDevice', + 'Remove-JcSdkWorkdayAuthorization', 'Remove-JcSdkWorkflow', + 'Restart-JcSdkAppleMdmDevice', 'Set-JcSdkActiveDirectoryAssociation', 'Set-JcSdkAppleMdm', 'Set-JcSdkApplicationAssociation', 'Set-JcSdkCommandAssociation', 'Set-JcSdkCustomEmailConfiguration', 'Set-JcSdkDuoApplication', @@ -234,12 +236,18 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Set-JcSdkSystemGroup', 'Set-JcSdkSystemGroupAssociation', 'Set-JcSdkSystemGroupMember', 'Set-JcSdkUserAssociation', 'Set-JcSdkUserGroup', 'Set-JcSdkUserGroupAssociation', - 'Set-JcSdkUserGroupMember', 'Set-JcSdkWorkday', - 'Stop-JcSdkAppleMdmDevice', 'Sync-JcSdkAppleMdmDevice', + 'Set-JcSdkUserGroupMember', 'Set-JcSdkWorkday', 'Set-JcSdkWorkflow', + 'Set-JcSdkWorkflowSetting', 'Stop-JcSdkAppleMdmDevice', + 'Sync-JcSdkAppleMdmDevice', 'Update-JcSdkAppleMdmDeviceLockInformation', 'Update-JcSdkAuthenticationPolicy', 'Update-JcSdkBulkUser', 'Update-JcSdkGSuite', 'Update-JcSdkIPList', 'Update-JcSdkLdapServer', - 'Update-JcSdkOffice365', 'Update-JcSdkUserPushEndpoint' + 'Update-JcSdkOffice365', 'Update-JcSdkUserPushEndpoint', + 'Get-JcSdkWorkflowAccessRequest', + 'Get-JcSdkWorkflowAccessRequestProgress', + 'New-JcSdkWorkflowAccessRequest', + 'New-JcSdkWorkflowUserApprovalRequest', + 'Set-JcSdkWorkflowAccessRequest' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() @@ -268,10 +276,10 @@ PrivateData = @{ Tags = 'JumpCloud,','DaaS,','Jump,','Cloud,','Directory' # A URL to the license for this module. - LicenseUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/master/LICENSE' + LicenseUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/LICENSE' # A URL to the main website for this project. - ProjectUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/' + ProjectUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/' # A URL to an icon representing this module. # IconUri = '' diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 index 8c17d6335..c005532e9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 @@ -191,7 +191,7 @@ Create an in-memory object for ${ObjectType}. .Outputs ${ObjectTypeWithNamespace} .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/${ModuleName}/${cmdletNameInLowerCase} +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/${ModuleName}/${cmdletNameInLowerCase} #> function ${cmdletName} { [JumpCloud.SDK.V2.ModelCmdletAttribute()] diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json index 646fe86e8..f720a604e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json @@ -1099,6 +1099,10 @@ "compiledAttributes": { "$ref": "#/definitions/GraphAttributes" }, + "externalId": { + "description": "The external resource ID that is being synced. Only present when syncStatus query parameter is true.", + "type": "string" + }, "id": { "description": "Object ID of this graph object.", "type": "string" @@ -1113,6 +1117,9 @@ }, "type": "array" }, + "syncStatus": { + "$ref": "#/definitions/SyncStatus" + }, "type": { "$ref": "#/definitions/GraphType" } @@ -1222,7 +1229,8 @@ "description": "Targets which a \"command\" can be associated to.", "enum": [ "system", - "system_group" + "system_group", + "password_manager_item" ], "type": "string", "x-ms-enum": { @@ -1235,6 +1243,10 @@ { "name": "systems_group", "value": "system_group" + }, + { + "name": "password_manager_item", + "value": "password_manager_item" } ] } @@ -1356,7 +1368,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-Policy1", + "name": "GraphOperation-Policy3", "values": [ { "name": "systems", @@ -1396,7 +1408,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-PolicyGroup1", + "name": "GraphOperation-PolicyGroup3", "values": [ { "name": "systems", @@ -1435,7 +1447,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-PolicyGroup-Member2" + "name": "GraphOperation-PolicyGroup-Member4" } } }, @@ -1495,7 +1507,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-SoftwareApp1", + "name": "GraphOperation-SoftwareApp3", "values": [ { "name": "systems", @@ -1545,7 +1557,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-System3" + "name": "GraphOperation-System5" } } }, @@ -1578,7 +1590,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-SystemGroup3" + "name": "GraphOperation-SystemGroup5" } } }, @@ -1607,7 +1619,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-SystemGroup-Member4", + "name": "GraphOperation-SystemGroup-Member6", "values": [ { "name": "systems", @@ -1658,7 +1670,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-User5", + "name": "GraphOperation-User7", "values": [ { "name": "active_directory", @@ -1738,7 +1750,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-UserGroup5", + "name": "GraphOperation-UserGroup7", "values": [ { "name": "active_directory", @@ -1809,7 +1821,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-UserGroup-Member6" + "name": "GraphOperation-UserGroup-Member8" } } }, @@ -1860,10 +1872,17 @@ "description": "ObjectId uniquely identifying a Group.", "type": "string" }, + "memberQueryErrorFlags": { + "$ref": "#/definitions/MemberQueryErrorFlags" + }, "name": { "description": "Display name of a Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "type": { "$ref": "#/definitions/GroupType" } @@ -1999,6 +2018,13 @@ }, "description": "Query object for group membership. Both 'filters' and 'searchFilters' accept stringified JSON that will be parsed and validated by the API." }, + "MemberQueryErrorFlags": { + "description": "Group error flags indicating errors encountered during member query evaluation.\n\nPossible flag values:\n- CYCLE: A cyclic dependency was detected in group membership\n- INVALID_GROUP_REFERENCE: The group reference is invalid or does not exist\n\nThe `member_query_error_flags` as a field supports array-based filtering:\n- `CO`: Contains Overlap - check if array overlaps with the specified array (use `[\"VALUE\"]` for single value)\n- `NCO`: Not Contains Overlap - check if array does not overlap\n- `EQ`: Exact array match\n- `NE`: Not equal to array\n- `IN`: Array contains any of the specified values\n**Note:** Single `value` is converted to array `[\"value\"]``.", + "items": { + "type": "string" + }, + "type": "array" + }, "OSRestriction": { "description": "Contains OS properties to restrict the application of policies to devices based on the device's OS", "example": { @@ -2244,6 +2270,10 @@ "description": "Display name of a Policy Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "type": { "description": "The type of the group; always 'policy' for a Policy Group.", "enum": [ @@ -2717,7 +2747,7 @@ "amountPaid": "10.9", "amountRemaining": "189.1", "currency": "USD", - "dueDate": "2021-08-07T00:00:00", + "dueDate": "2021-08-07", "id": "234324", "status": "Partially Paid" }, @@ -2875,6 +2905,33 @@ "readOnly": true, "type": "object" }, + "SyncStatus": { + "description": "Sync status information for this object. Only present when syncStatus query parameter is true.", + "properties": { + "code": { + "description": "Status code of the sync operation.", + "type": "integer" + }, + "details": { + "description": "Additional details about the sync status.", + "items": { + "type": "object", + "additionalProperties": true + }, + "type": "array" + }, + "message": { + "description": "Status message of the sync operation.", + "type": "string" + }, + "syncedAt": { + "description": "The last time the object was synced.", + "format": "date-time", + "type": "string" + } + }, + "type": "object" + }, "SystemGroup": { "properties": { "attributes": { @@ -2895,6 +2952,9 @@ "memberQuery": { "$ref": "#/definitions/MemberQuery" }, + "memberQueryErrorFlags": { + "$ref": "#/definitions/MemberQueryErrorFlags" + }, "memberQueryExemptions": { "description": "Array of GraphObjects exempted from the query", "items": { @@ -2913,6 +2973,10 @@ "description": "Display name of a System Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "type": { "description": "The type of the group; always 'system' for a System Group.", "enum": [ @@ -3088,6 +3152,9 @@ "memberQuery": { "$ref": "#/definitions/MemberQuery" }, + "memberQueryErrorFlags": { + "$ref": "#/definitions/MemberQueryErrorFlags" + }, "memberQueryExemptions": { "description": "Array of GraphObjects exempted from the query", "items": { @@ -3106,6 +3173,10 @@ "description": "Display name of a User Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "suggestionCounts": { "$ref": "#/definitions/SuggestionCounts" }, @@ -3416,6 +3487,9 @@ "imei": { "type": "string" }, + "isAppleSilicon": { + "type": "boolean" + }, "isSupervised": { "type": "boolean" }, @@ -3483,6 +3557,9 @@ "passcodePresent": { "type": "boolean" }, + "recoveryLockEnabled": { + "type": "boolean" + }, "userApprovedEnrollment": { "type": "boolean" } @@ -4609,205 +4686,931 @@ "title": "Job WorkResult", "type": "object" }, - "jumpcloud.search.Function": { - "default": "function_unknown", - "enum": [ - "function_unknown", - "count", - "avg", - "max", - "min", - "sum", - "count_unique" - ], - "type": "string" - }, - "jumpcloud.search.PaginationParams": { - "description": "Parameters for controlling pagination of search results.", + "jumpcloud.ingresso.AccessWorkflow": { "properties": { - "offset": { - "description": "Zero-based index of the first result to return.\nFor example: 0 returns the first page, 100 returns the second page when page_size=100.", - "format": "int32", - "type": "integer" + "approvalType": { + "type": "string" }, - "pageSize": { - "description": "Number of results to return per page.\nIf not specified, uses server default (typically 50-100 items).", - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, - "jumpcloud.search.SearchRequest": { - "properties": { - "aggregations": { + "approverRequirement": { + "type": "string" + }, + "approverResources": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestAggregation" + "$ref": "#/definitions/jumpcloud.ingresso.ApproverResource" }, "type": "array" }, - "cacheToken": { - "title": "Optional: Token for retrieving data from a previously cached result set", - "type": "string", - "x-nullable": true + "category": { + "type": "string" }, - "fields": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFields" + "createdBy": { + "type": "string" }, - "filters": { + "description": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "multiSelectDuration": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + "type": "string" }, "type": "array" }, - "limit": { - "description": "Maximum number of rows (inclusive) to return in the objects. Note that there is an implicit limit enforced always\nin the external API.", - "format": "int32", - "type": "integer" - }, - "pagination": { - "$ref": "#/definitions/jumpcloud.search.PaginationParams" + "name": { + "type": "string" }, - "requestCache": { - "title": "Optional: If true, cache the full result set of this query", + "nonAdminApproval": { "type": "boolean" }, - "sort": { + "organizationId": { + "format": "byte", + "type": "string" + }, + "resources": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestSort" + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflowResources" }, "type": "array" - } - }, - "type": "object" - }, - "jumpcloud.search.SearchRequestAggregation": { - "properties": { - "field": { - "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", + }, + "slackConfig": { "items": { - "type": "string" + "$ref": "#/definitions/jumpcloud.ingresso.SlackConfig" }, "type": "array" }, - "function": { - "$ref": "#/definitions/jumpcloud.search.Function" + "slackEnabled": { + "type": "boolean" }, - "name": { + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "$ref": "#/definitions/jumpcloud.ingresso.TtlConfig" + }, + "updatedBy": { "type": "string" + }, + "visibleTo": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.VisibleTo" + }, + "type": "array" } }, "type": "object" }, - "jumpcloud.search.SearchRequestFields": { + "jumpcloud.ingresso.AccessWorkflowResources": { "properties": { - "exclude": { - "items": { - "type": "string" - }, - "type": "array" + "resourceId": { + "type": "string" }, - "include": { - "items": { - "type": "string" - }, - "type": "array" + "resourceName": { + "type": "string" + }, + "resourceType": { + "type": "string" } }, "type": "object" }, - "jumpcloud.search.SearchRequestFilter": { - "description": "A filter for a search query.", + "jumpcloud.ingresso.AccessWorkflowSettings": { "properties": { - "field": { - "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", - "type": "string", - "x-nullable": true + "adminApprovalEmail": { + "type": "boolean" }, - "filters": { - "description": "Only allowed when operation is 'and'/'or'. This allows for logical groupings of sub-filters provided in this\nfield's array.", + "channelEvents": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" }, "type": "array" }, - "operation": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter.Operation" + "createdBy": { + "type": "string" }, - "query": { - "$ref": "#/definitions/jumpcloud.search.SearchRequest" + "exposeApprovalProgress": { + "type": "boolean" }, - "unit": { - "type": "string", - "x-nullable": true + "id": { + "format": "int32", + "type": "integer" }, - "value": { - "description": "Static value to be compared against. For values that will need to be compared as a datetime object, this should be\nprovided as an ISO8601 format string with no offset (UTC). This is made optional so that\nthe client can omit this field on AND/OR filters." + "resourceRequest": { + "type": "boolean" + }, + "updatedBy": { + "type": "string" + }, + "userApprovalEmail": { + "type": "boolean" + }, + "userRequestEmail": { + "type": "boolean" } }, "type": "object" }, - "jumpcloud.search.SearchRequestFilter.Operation": { - "default": "operation_unknown", - "description": "Filter operation to be applied:\nand - Provides logical 'and' groupings of all elements provided in the `filters` array (all sub-filter criteria\n must be satisfied).\nor - Provides logical 'or' groupings of all elements provided in the `filters` array (any sub-filter criteria can\n be satisfied).\nequals - Compares `field` with `value` for a // match. Case insensitive.\nnot_equals - Compares `field` with `value` for an exact non-match. Case insensitive.\ngreater_than - Checks if `field` is greater numerically than static `value` (non-inclusive). Works for numbers and\n datetime types.\nless_than - Checks if `field` is less than static `value` (non-inclusive). Works for numbers and datetime types.\nstarts_with - Checks if `field` starts with static `value`. Case insensitive. Only works for string types.\nends_with - Checks if `field` ends with static `value`. Case insensitive. Only works for string types.\ncontains - Checks if `field` has the static `value` as its substring. Case insensitive. Only works for string types.\nnot_contains - Checks if `field` does not have the static `value` as its substring. Case insensitive. Only works for string types.\nin - Checks if `field` is in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\nnot_in - Checks if `field` is not in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\ngreater_than_or_equals - Checks if `field` is greater than or equal to static `value`. Works for numbers and datetime types.\nless_than_or_equals - Checks if `field` is less than or equal to static `value`. Works for numbers and datetime types.\nis_null - Checks if `field` is null. Works for all field types. Requires boolean value (true for null, false for not null).\nis_empty - Checks if `field` is null or empty string. Works only for string field types. Requires boolean value (true for empty, false for not empty).\nequals_case_sensitive - Compares `field` with `value` for an exact match. Case sensitive. Only works for string types.\nnot_equals_case_sensitive - Compares `field` with `value` for an exact non-match. Case sensitive. Only works for string types.\nstarts_with_case_sensitive - Checks if `field` starts with static `value`. Case sensitive. Only works for string types.\nends_with_case_sensitive - Checks if `field` ends with static `value`. Case sensitive. Only works for string types.\ncontains_case_sensitive - Checks if `field` has the static `value` as its substring. Case sensitive. Only works for string types.\nnot_contains_case_sensitive - Checks if `field` does not have the static `value` as its substring. Case sensitive. Only works for string types.\nin_case_sensitive - Checks if `field` is in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.\nnot_in_case_sensitive - Checks if `field` is not in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.", - "enum": [ - "operation_unknown", - "and", - "or", - "equals", - "not_equals", - "greater_than", - "less_than", - "starts_with", - "ends_with", - "contains", - "not_contains", - "in", - "not_in", - "greater_than_or_equals", - "less_than_or_equals", - "is_null", - "is_empty", - "equals_case_sensitive", - "not_equals_case_sensitive", - "starts_with_case_sensitive", - "ends_with_case_sensitive", - "contains_case_sensitive", - "not_contains_case_sensitive", - "in_case_sensitive", - "not_in_case_sensitive" - ], - "type": "string" - }, - "jumpcloud.search.SearchRequestSort": { + "jumpcloud.ingresso.ApproverResource": { "properties": { - "field": { - "description": "This is a field on an object. It should always be in the form of\n. This will be case insensitive, and will be cast to\nlowercase always.", + "requireAll": { + "type": "boolean" + }, + "resourceId": { "type": "string" }, - "order": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestSort.Order" + "resourceName": { + "type": "string" + }, + "resourceOrder": { + "format": "int32", + "type": "integer" + }, + "resourceType": { + "type": "string" } }, "type": "object" }, - "jumpcloud.search.SearchRequestSort.Order": { - "default": "asc", - "enum": [ - "asc", - "desc" - ], - "title": "Sort order. Defaults to ascending", - "type": "string" - }, - "ldap-server": { + "jumpcloud.ingresso.Approvers": { "properties": { - "id": { - "description": "Unique identifier of this LDAP server", - "readOnly": true, + "approvalSequence": { + "format": "int64", "type": "string" }, - "name": { + "approvalStatus": { + "type": "string" + }, + "approverId": { + "type": "string" + }, + "approverType": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "requireAll": { + "type": "boolean" + }, + "resourceId": { + "type": "string" + }, + "resourceName": { + "type": "string" + }, + "resourceType": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.ApproversProgress": { + "properties": { + "approvalSequence": { + "format": "int32", + "type": "integer" + }, + "approvalStatus": { + "type": "string" + }, + "approvedCount": { + "format": "int32", + "type": "integer" + }, + "approverId": { + "type": "string" + }, + "approverType": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "overridenApproval": { + "type": "boolean" + }, + "requireAll": { + "type": "boolean" + }, + "resourceId": { + "type": "string" + }, + "resourceName": { + "type": "string" + }, + "resourceType": { + "type": "string" + }, + "totalCount": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.ChannelEvent": { + "properties": { + "channelObjectId": { + "format": "byte", + "type": "string" + }, + "eventTypes": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.EventType" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowRequest": { + "properties": { + "approvalType": { + "type": "string" + }, + "approverRequirement": { + "type": "string" + }, + "approverResources": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ApproverResource" + }, + "type": "array" + }, + "category": { + "type": "string" + }, + "description": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "multiSelectDuration": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceId": { + "type": "string" + }, + "resourceType": { + "type": "string" + }, + "slackConfig": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.SlackConfig" + }, + "type": "array" + }, + "slackEnabled": { + "type": "boolean" + }, + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "$ref": "#/definitions/jumpcloud.ingresso.TtlConfig" + }, + "visibleTo": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowResponse": { + "properties": { + "id": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest": { + "properties": { + "adminApprovalEmail": { + "type": "boolean" + }, + "channelEvents": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" + }, + "type": "array" + }, + "exposeApprovalProgress": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceRequest": { + "type": "boolean" + }, + "userApprovalEmail": { + "type": "boolean" + }, + "userRequestEmail": { + "type": "boolean" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse": { + "properties": { + "id": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateWorkflowAccessRequestRequest": { + "properties": { + "id": { + "type": "string" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "reason": { + "type": "string" + }, + "requestedDuration": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateWorkflowAccessRequestResponse": { + "properties": { + "id": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.DeleteAccessWorkflowResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.EventType": { + "default": "ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED", + "enum": [ + "ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED", + "ACCESS_MANAGEMENT_ACCESS_REQUEST", + "ACCESS_MANAGEMENT_ACCESS_REQUEST_APPROVAL", + "ACCESS_MANAGEMENT_ASSOCIATION_CHANGE", + "ACCESS_MANAGEMENT_APPROVAL_FLOW_CREATE", + "ACCESS_MANAGEMENT_APPROVAL_FLOW_UPDATE", + "ACCESS_MANAGEMENT_APPROVAL_FLOW_DELETE", + "ACCESS_MANAGEMENT_ACCESS_REQUEST_SETTINGS_UPDATE" + ], + "type": "string" + }, + "jumpcloud.ingresso.GetAccessRequestApprovalProgressResponse": { + "properties": { + "approvers": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ApproversProgress" + }, + "type": "array" + }, + "approversRequirement": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.GetAllAccessWorkFlowsResponse": { + "properties": { + "results": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflow" + }, + "type": "array" + }, + "totalCount": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.GetAllWorkflowAccessRequestResponse": { + "properties": { + "results": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.WorkflowAccessRequest" + }, + "type": "array" + }, + "totalCount": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.GetWorkflowAccessRequestResponse": { + "properties": { + "approvalFlowDescription": { + "type": "string" + }, + "approvalFlowId": { + "type": "string" + }, + "approvalFlowName": { + "type": "string" + }, + "approvalType": { + "type": "string" + }, + "approvedDuration": { + "type": "string" + }, + "approvers": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.Approvers" + }, + "type": "array" + }, + "approversRequirement": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "department": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "group": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "manager": { + "type": "string" + }, + "metadata": { + "format": "byte", + "type": "string" + }, + "multiSelectDuration": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "remarks": { + "type": "string" + }, + "requestedDuration": { + "type": "string" + }, + "requestor": { + "type": "string" + }, + "runId": { + "type": "string" + }, + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "type": "string" + }, + "updatedAt": { + "type": "string" + }, + "updatedBy": { + "type": "string" + }, + "userName": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.SlackConfig": { + "properties": { + "slackResourceId": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.TtlConfig": { + "default": "TTL_CONFIG_UNSPECIFIED", + "enum": [ + "TTL_CONFIG_UNSPECIFIED", + "TTL_CONFIG_MULTI_SELECT_DURATIONS", + "TTL_CONFIG_FIXED_DURATION" + ], + "type": "string" + }, + "jumpcloud.ingresso.UpdateAccessWorkflowResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.UpdateAccessWorkflowSettingsRequest": { + "properties": { + "adminApprovalEmail": { + "type": "boolean" + }, + "channelEvents": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" + }, + "type": "array" + }, + "exposeApprovalProgress": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceRequest": { + "type": "boolean" + }, + "userApprovalEmail": { + "type": "boolean" + }, + "userRequestEmail": { + "type": "boolean" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.UpdateAccessWorkflowSettingsResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.UpdateWorkflowAccessRequestResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.UserApprovalRequestRequest": { + "properties": { + "approvedDuration": { + "type": "string" + }, + "id": { + "type": "string" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "remarks": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.UserApprovalRequestResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.VisibleTo": { + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.WorkflowAccessRequest": { + "properties": { + "approvalFlowDescription": { + "type": "string" + }, + "approvalFlowId": { + "type": "string" + }, + "approvalFlowName": { + "type": "string" + }, + "approvalType": { + "type": "string" + }, + "approvedDuration": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "department": { + "type": "string" + }, + "group": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "manager": { + "type": "string" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "remarks": { + "type": "string" + }, + "requestedDuration": { + "type": "string" + }, + "requestor": { + "type": "string" + }, + "runId": { + "type": "string" + }, + "status": { + "type": "string" + }, + "updatedAt": { + "type": "string" + }, + "updatedBy": { + "type": "string" + }, + "userName": { + "type": "string" + }, + "wfMetadata": { + "format": "byte", + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.search.Function": { + "default": "function_unknown", + "enum": [ + "function_unknown", + "count", + "avg", + "max", + "min", + "sum", + "count_unique" + ], + "type": "string" + }, + "jumpcloud.search.PaginationParams": { + "description": "Parameters for controlling pagination of search results.", + "properties": { + "offset": { + "description": "Zero-based index of the first result to return.\nFor example: 0 returns the first page, 100 returns the second page when page_size=100.", + "format": "int32", + "type": "integer" + }, + "pageSize": { + "description": "Number of results to return per page.\nIf not specified, uses server default (typically 50-100 items).", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequest": { + "properties": { + "aggregations": { + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestAggregation" + }, + "type": "array" + }, + "cacheToken": { + "title": "Optional: Token for retrieving data from a previously cached result set", + "type": "string", + "x-nullable": true + }, + "fields": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFields" + }, + "filters": { + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + }, + "type": "array" + }, + "limit": { + "description": "Maximum number of rows (inclusive) to return in the objects. Note that there is an implicit limit enforced always\nin the external API.", + "format": "int32", + "type": "integer" + }, + "pagination": { + "$ref": "#/definitions/jumpcloud.search.PaginationParams" + }, + "requestCache": { + "title": "Optional: If true, cache the full result set of this query", + "type": "boolean" + }, + "sort": { + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestSort" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestAggregation": { + "properties": { + "field": { + "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", + "items": { + "type": "string" + }, + "type": "array" + }, + "function": { + "$ref": "#/definitions/jumpcloud.search.Function" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestFields": { + "properties": { + "exclude": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestFilter": { + "description": "A filter for a search query.", + "properties": { + "field": { + "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", + "type": "string", + "x-nullable": true + }, + "filters": { + "description": "Only allowed when operation is 'and'/'or'. This allows for logical groupings of sub-filters provided in this\nfield's array.", + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + }, + "type": "array" + }, + "operation": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter.Operation" + }, + "query": { + "$ref": "#/definitions/jumpcloud.search.SearchRequest" + }, + "unit": { + "type": "string", + "x-nullable": true + }, + "value": { + "description": "Static value to be compared against. For values that will need to be compared as a datetime object, this should be\nprovided as an ISO8601 format string with no offset (UTC). This is made optional so that\nthe client can omit this field on AND/OR filters." + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestFilter.Operation": { + "default": "operation_unknown", + "description": "Filter operation to be applied:\nand - Provides logical 'and' groupings of all elements provided in the `filters` array (all sub-filter criteria\n must be satisfied).\nor - Provides logical 'or' groupings of all elements provided in the `filters` array (any sub-filter criteria can\n be satisfied).\nequals - Compares `field` with `value` for a // match. Case insensitive.\nnot_equals - Compares `field` with `value` for an exact non-match. Case insensitive.\ngreater_than - Checks if `field` is greater numerically than static `value` (non-inclusive). Works for numbers and\n datetime types.\nless_than - Checks if `field` is less than static `value` (non-inclusive). Works for numbers and datetime types.\nstarts_with - Checks if `field` starts with static `value`. Case insensitive. Only works for string types.\nends_with - Checks if `field` ends with static `value`. Case insensitive. Only works for string types.\ncontains - Checks if `field` has the static `value` as its substring. Case insensitive. Only works for string types.\nnot_contains - Checks if `field` does not have the static `value` as its substring. Case insensitive. Only works for string types.\nin - Checks if `field` is in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\nnot_in - Checks if `field` is not in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\ngreater_than_or_equals - Checks if `field` is greater than or equal to static `value`. Works for numbers and datetime types.\nless_than_or_equals - Checks if `field` is less than or equal to static `value`. Works for numbers and datetime types.\nis_null - Checks if `field` is null. Works for all field types. Requires boolean value (true for null, false for not null).\nis_empty - Checks if `field` is null or empty string. Works only for string field types. Requires boolean value (true for empty, false for not empty).\nequals_case_sensitive - Compares `field` with `value` for an exact match. Case sensitive. Only works for string types.\nnot_equals_case_sensitive - Compares `field` with `value` for an exact non-match. Case sensitive. Only works for string types.\nstarts_with_case_sensitive - Checks if `field` starts with static `value`. Case sensitive. Only works for string types.\nends_with_case_sensitive - Checks if `field` ends with static `value`. Case sensitive. Only works for string types.\ncontains_case_sensitive - Checks if `field` has the static `value` as its substring. Case sensitive. Only works for string types.\nnot_contains_case_sensitive - Checks if `field` does not have the static `value` as its substring. Case sensitive. Only works for string types.\nin_case_sensitive - Checks if `field` is in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.\nnot_in_case_sensitive - Checks if `field` is not in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.", + "enum": [ + "operation_unknown", + "and", + "or", + "equals", + "not_equals", + "greater_than", + "less_than", + "starts_with", + "ends_with", + "contains", + "not_contains", + "in", + "not_in", + "greater_than_or_equals", + "less_than_or_equals", + "is_null", + "is_empty", + "equals_case_sensitive", + "not_equals_case_sensitive", + "starts_with_case_sensitive", + "ends_with_case_sensitive", + "contains_case_sensitive", + "not_contains_case_sensitive", + "in_case_sensitive", + "not_in_case_sensitive" + ], + "type": "string" + }, + "jumpcloud.search.SearchRequestSort": { + "properties": { + "field": { + "description": "This is a field on an object. It should always be in the form of\n. This will be case insensitive, and will be cast to\nlowercase always.", + "type": "string" + }, + "order": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestSort.Order" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestSort.Order": { + "default": "asc", + "enum": [ + "asc", + "desc" + ], + "title": "Sort order. Defaults to ascending", + "type": "string" + }, + "ldap-server": { + "properties": { + "id": { + "description": "Unique identifier of this LDAP server", + "readOnly": true, + "type": "string" + }, + "name": { "description": "The name of this LDAP server", "type": "string" }, @@ -5565,7 +6368,7 @@ "bundle_short_version": "2.4", "bundle_version": "658.1", "category": "public.app-category.utilities", - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "compiler": "com.apple.compilers.llvm.clang.1_0", "copyright": "", "development_region": "English", @@ -5842,7 +6645,7 @@ }, "system-insights-bitlocker-info": { "example": { - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "conversion_status": 0, "device_id": "\\\\\\\\?\\\\Volume{3ba5cc52-e0fd-45fa-b8b8-5c88f44f8b17}\\", "drive_letter": "C:", @@ -5886,7 +6689,7 @@ }, "system-insights-browser-plugins": { "example": { - "collection_time": "2019-06-03T13:41:30.858-06:00", + "collection_time": "2019-06-03T19:41:30.858Z", "description": "LastPass Plugin", "development_region": "en-US", "disabled": 0, @@ -6064,7 +6867,7 @@ "system-insights-chrome-extensions": { "example": { "author": "", - "collection_time": "2019-06-03T13:41:31.125-06:00", + "collection_time": "2019-06-03t19:41:31.125z", "description": "provider for discovery and services for mirroring of chrome media router", "identifier": "pkedcjkdefgpdelpbcmbmeomcjbeemfm", "locale": "en", @@ -6238,7 +7041,7 @@ }, "system-insights-disk-encryption": { "example": { - "collection_time": "2019-06-03T13:41:31.557-06:00", + "collection_time": "2019-06-03T19:41:31.557Z", "encrypted": 0, "encryption_status": "undefined", "name": "/dev/disk8", @@ -6282,7 +7085,7 @@ }, "system-insights-disk-info": { "example": { - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "description": "Disk drive", "disk_index": 0, "disk_size": "64420392960", @@ -6370,7 +7173,7 @@ "system-insights-etc-hosts": { "example": { "address": "192.168.2.21", - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "hostnames": "hosty hosty.local", "system_id": "5c9e51a13c5146f89bae12d9" }, @@ -6395,7 +7198,7 @@ "example": { "active": 1, "autoupdate": 1, - "collection_time": "2019-06-03T13:41:31.204-06:00", + "collection_time": "2019-06-03T19:41:31.204Z", "creator": "null", "description": "", "disabled": 0, @@ -6465,7 +7268,7 @@ }, "system-insights-groups": { "example": { - "collection_time": "2019-06-03T13:41:31.673-06:00", + "collection_time": "2019-06-03T19:41:31.673Z", "comment": "", "gid": "701", "gid_signed": "701", @@ -6527,7 +7330,7 @@ "example": { "address": "::1", "broadcast": "", - "collection_time": "2019-06-03T13:41:31.008-06:00", + "collection_time": "2019-06-03T19:41:31.008Z", "friendly_name": "", "interface": "lo0", "mask": "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", @@ -6868,7 +7671,7 @@ "system-insights-logical-drives": { "example": { "boot_partition": 0, - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "device_id": "C:", "file_system": "NTFS", "free_space": "43194331136", @@ -6941,7 +7744,7 @@ "blocks_available": "95135", "blocks_free": "95135", "blocks_size": "4096", - "collection_time": "2019-06-03T13:41:31.746-06:00", + "collection_time": "2019-06-03T19:41:31.746Z", "device": "/dev/disk5s1", "device_alias": "/dev/disk5s1", "flags": "70292505", @@ -6999,7 +7802,7 @@ "example": { "build": "17G65", "codename": "", - "collection_time": "2019-06-03T13:41:30.933-06:00", + "collection_time": "2019-06-03T19:41:30.933Z", "install_date": "", "major": 10, "minor": 13, @@ -7054,7 +7857,7 @@ "system-insights-patches": { "example": { "caption": "http://support.microsoft.com/?kbid=4503308", - "collection_time": "2019-06-03T13:41:31.673-06:00", + "collection_time": "2019-06-03T19:41:31.673Z", "csname": "DESKTOP-B17DUKP", "description": "Security Update", "fix_comments": "", @@ -7101,7 +7904,7 @@ }, "system-insights-programs": { "example": { - "collection_time": "2019-06-03T13:41:31.673-06:00", + "collection_time": "2019-06-03T19:41:31.673Z", "identifying_number": "{2E8B8BDD-03DF-4C1C-8C99-E6A4BCBF43CE}", "install_date": "20190724", "install_location": "", @@ -7182,7 +7985,7 @@ "system-insights-safari-extensions": { "example": { "author": "Eyeo GmbH", - "collection_time": "2019-05-16T12:58:15.673-06:00", + "collection_time": "2019-05-16T18:58:15.673Z", "description": "Used by over 50 million people, a free ad blocker that blocks ALL annoying ads, malware and tracking.", "developer_id": "GRYYZR985A", "identifier": "org.adblockplus.adblockplussafari", @@ -7557,7 +8360,7 @@ }, "system-insights-system-info": { "example": { - "collection_time": "2019-06-03T13:41:30.771-06:00", + "collection_time": "2019-06-03T19:41:30.771Z", "computer_name": "Johnny's MacBook Pro (2)", "cpu_brand": "Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz", "cpu_logical_cores": 8, @@ -7810,7 +8613,7 @@ }, "system-insights-users": { "example": { - "collection_time": "2019-06-03T13:41:29.71-06:00", + "collection_time": "2019-06-03T19:41:29.71Z", "description": "AppleEvents Daemon", "directory": "/var/empty", "gid": "55", @@ -8220,6 +9023,26 @@ "name": "filter", "type": "array" }, + "trait:filter:filterUserGroupMembership": { + "default": [], + "description": "A filter to apply to the query.\n\n**Filter structure**: `::`.\n\n**field** = Populate with a valid field from an endpoint response.\n\n**operator** = Supported operators are: eq, ne, gt, ge, lt, le, between, search, in.\n_Note: v1 operators differ from v2 operators._\n\n**value** = Populate with the value you want to search for. Is case sensitive. Supports wild cards.\n\n**Valid filter fields**: `object_id` and `type`.\n\n**EX:** `GET /api/v2/usergroups/{GroupID}/membership?filter=type:eq:user_group`", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "type": "array" + }, + "trait:filter:filterUserMemberOf": { + "default": [], + "description": "A filter to apply to the query.\n\n**Filter structure**: `::`.\n\n**field** = Populate with a valid field from an endpoint response.\n\n**operator** = Supported operators are: eq, ne, gt, ge, lt, le, between, search, in.\n_Note: v1 operators differ from v2 operators._\n\n**value** = Populate with the value you want to search for. Is case sensitive. Supports wild cards.\n\n**Valid filter fields**: `object_id` and `type`.\n\n**EX:** `GET /api/v2/users/{UserID}/memberof?filter=type:eq:user_group`", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "type": "array" + }, "trait:graphTargetsActiveDirectory:targets": { "description": "Targets which a \"active_directory\" can be associated to.", "in": "query", @@ -8256,7 +9079,8 @@ "type": "string", "enum": [ "system", - "system_group" + "system_group", + "password_manager_item" ], "x-ms-enum": { "name": "graphTargetsCommand-Targets1", @@ -8268,6 +9092,10 @@ { "name": "systems_group", "value": "system_group" + }, + { + "name": "password_manager_item", + "value": "password_manager_item" } ] } @@ -8325,7 +9153,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsPolicy-Targets1", + "name": "graphTargetsPolicy-Targets3", "values": [ { "name": "systems", @@ -8349,7 +9177,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsPolicyGroup-Targets1", + "name": "graphTargetsPolicyGroup-Targets3", "values": [ { "name": "systems", @@ -8387,7 +9215,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsSoftwareApp-Targets1", + "name": "graphTargetsSoftwareApp-Targets3", "values": [ { "name": "systems", @@ -8414,7 +9242,7 @@ "user_group" ], "x-ms-enum": { - "name": "graphTargetsSystem-Targets2" + "name": "graphTargetsSystem-Targets4" } }, "trait:graphTargetsSystemGroup:targets": { @@ -8431,7 +9259,7 @@ "user_group" ], "x-ms-enum": { - "name": "graphTargetsSystemGroup-Targets2" + "name": "graphTargetsSystemGroup-Targets4" } }, "trait:graphTargetsUser:targets": { @@ -8453,7 +9281,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsUser-Targets3", + "name": "graphTargetsUser-Targets5", "values": [ { "name": "active_directory", @@ -8517,7 +9345,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsUserGroup-Targets3", + "name": "graphTargetsUserGroup-Targets5", "values": [ { "name": "active_directory", @@ -8699,72 +9527,350 @@ "items": { "type": "string" }, - "name": "filter", - "type": "array" + "name": "filter", + "type": "array" + }, + "trait:systemInsightsFilterUptime:filter": { + "default": [], + "description": "Supported operators are: eq, gte, in. e.g:\nFilter for single value:\n`filter=field:gte:value`\nFilter for any value in a list: (note \"pipe\" character: `|` separating values)\n`filter=field:in:value1|value2|value3`\n", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "type": "array" + }, + "trait:systemInsightsLimit:limit": { + "default": 10, + "in": "query", + "maximum": 10000, + "minimum": 0, + "name": "limit", + "type": "integer" + }, + "trait:systemInsightsSort:sort": { + "default": [], + "description": "The comma separated fields used to sort the collection.\nDefault sort is ascending, prefix with `-` to sort descending. e.g:\nSort by single field:\n`sort=field`\nSort descending by single field:\n`sort=-field`\nSort by multiple fields:\n`sort=field1,-field2,field3`\n", + "in": "query", + "items": { + "type": "string" + }, + "name": "sort", + "type": "array" + } + }, + "paths": { + "/accessrequests": {}, + "/accessrequests/{accessId}": {}, + "/accessrequests/{accessId}/revoke": {}, + "/accountManagerCalendar/{id}": { + "parameters": [ + { + "in": "path", + "name": "id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "accounts-page-upgrade" + ] + }, + "/activedirectories": { + "get": { + "description": "This endpoint allows you to list all your Active Directory Instances.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectory_List", + "parameters": [ + { + "$ref": "#/parameters/trait:fields:fields" + }, + { + "$ref": "#/parameters/trait:filter:filter" + }, + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:sort:sort" + } + ], + "responses": { + "200": { + "description": "", + "schema": { + "items": { + "$ref": "#/definitions/active-directory" + }, + "type": "array" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "List Active Directories", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories?limit=10&skip=0' -Method GET -Headers $headers" + } + ] + }, + "parameters": [], + "post": { + "description": "This endpoint allows you to create a new Active Directory.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"domain\": \"{DC=AD_domain_name;DC=com}\"\n }'\n```", + "operationId": "ActiveDirectory_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/active-directory" + } + } + ], + "responses": { + "201": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Create a new Active Directory", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\npayload = {\n \"delegationState\": \"ENABLED\",\n \"domain\": \"string\",\n \"groupsEnabled\": True,\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"useCase\": \"UNSET\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + } + ] + }, + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/translation-rules/preview": {}, + "/activedirectories/{activedirectory_id}/agents": { + "get": { + "description": "This endpoint allows you to list all your Active Directory Agents for a given Instance.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectoryAgent_List", + "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:sort:sort" + } + ], + "responses": { + "200": { + "description": "", + "schema": { + "items": { + "$ref": "#/definitions/active-directory-agent-list" + }, + "type": "array" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "List Active Directory Agents", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0' -Method GET -Headers $headers" + } + ] + }, + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "This endpoint allows you to create a new Active Directory Agent.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{ \"agent_type\":\"{SYNC}\" }'\n```", + "operationId": "ActiveDirectoryAgent_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/active-directory-agent" + } + } + ], + "responses": { + "201": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory-agent-get" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Create a new Active Directory Agent", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"agentType\":\"SYNC\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\npayload = {\"agentType\": \"SYNC\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"agentType\":\"SYNC\"}'" + } + ] + }, + "x-functionalities-tags": [ + "active-directory" + ] }, - "trait:systemInsightsFilterUptime:filter": { - "default": [], - "description": "Supported operators are: eq, gte, in. e.g:\nFilter for single value:\n`filter=field:gte:value`\nFilter for any value in a list: (note \"pipe\" character: `|` separating values)\n`filter=field:in:value1|value2|value3`\n", - "in": "query", - "items": { - "type": "string" + "/activedirectories/{activedirectory_id}/agents/{agent_id}": { + "delete": { + "description": "This endpoint deletes an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryAgent_Delete", + "parameters": [], + "responses": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Delete Active Directory Agent", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method DELETE -Headers $headers" + } + ] }, - "name": "filter", - "type": "array" - }, - "trait:systemInsightsLimit:limit": { - "default": 10, - "in": "query", - "maximum": 10000, - "minimum": 0, - "name": "limit", - "type": "integer" - }, - "trait:systemInsightsSort:sort": { - "default": [], - "description": "The comma separated fields used to sort the collection.\nDefault sort is ascending, prefix with `-` to sort descending. e.g:\nSort by single field:\n`sort=field`\nSort descending by single field:\n`sort=-field`\nSort by multiple fields:\n`sort=field1,-field2,field3`\n", - "in": "query", - "items": { - "type": "string" + "get": { + "description": "This endpoint returns an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryAgent_Get", + "parameters": [], + "responses": { + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory-agent-list" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Get Active Directory Agent", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method GET -Headers $headers" + } + ] }, - "name": "sort", - "type": "array" - } - }, - "paths": { - "/accessrequests": {}, - "/accountManagerCalendar/{id}": { "parameters": [ { "in": "path", - "name": "id", + "name": "activedirectory_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "agent_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "accounts-page-upgrade" + "active-directory" ] }, - "/activedirectories": { + "/activedirectories/{activedirectory_id}/associations": { "get": { - "description": "This endpoint allows you to list all your Active Directory Instances.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectory_List", + "description": "This endpoint returns the direct associations of this Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/associations?targets=user \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryAssociation_Get", "parameters": [ { - "$ref": "#/parameters/trait:fields:fields" - }, - { - "$ref": "#/parameters/trait:filter:filter" + "$ref": "#/parameters/trait:graphTargetsActiveDirectory:targets" }, { "$ref": "#/parameters/trait:limit:limit" }, { "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:sort:sort" } ], "responses": { @@ -8772,7 +9878,7 @@ "description": "", "schema": { "items": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/GraphConnection" }, "type": "array" } @@ -8783,40 +9889,132 @@ "x-api-key": [] } ], - "summary": "List Active Directories", + "summary": "List the associations of an Active Directory instance", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, - "parameters": [], + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ], "post": { - "description": "This endpoint allows you to create a new Active Directory.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"domain\": \"{DC=AD_domain_name;DC=com}\"\n }'\n```", - "operationId": "ActiveDirectory_Create", + "description": "This endpoint allows you to manage the _direct_ associations of an Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{AD_Instance_ID}/associations \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user\",\n \"id\": \"{User_ID}\"\n }'\n```", + "operationId": "ActiveDirectoryAssociation_Set", "parameters": [ { "in": "body", "name": "body", "schema": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/GraphOperation-ActiveDirectory" } } ], "responses": { - "201": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Manage the associations of an Active Directory instance", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + } + ] + }, + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/{activedirectory_id}/translation-rules": { + "parameters": [ + { + "description": "ObjectID of the Active Directory instance.", + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ] + }, + "/activedirectories/{activedirectory_id}/translation-rules/bulk": { + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ] + }, + "/activedirectories/{activedirectory_id}/translation-rules/{translation_rule_object_id}": { + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "translation_rule_object_id", + "required": true, + "type": "string" + } + ] + }, + "/activedirectories/{activedirectory_id}/usergroups": { + "get": { + "description": "This endpoint will return all Users Groups bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryTraverseUserGroup_Get", + "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:filter:filter" + } + ], + "responses": { + "200": { "description": "", "schema": { - "$ref": "#/definitions/active-directory" + "items": { + "$ref": "#/definitions/GraphObjectWithPaths" + }, + "type": "array" } } }, @@ -8825,40 +10023,48 @@ "x-api-key": [] } ], - "summary": "Create a new Active Directory", + "summary": "List the User Groups bound to an Active Directory instance", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\npayload = {\n \"delegationState\": \"ENABLED\",\n \"domain\": \"string\",\n \"groupsEnabled\": True,\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"useCase\": \"UNSET\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, + "parameters": [ + { + "description": "ObjectID of the Active Directory instance.", + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ], "x-functionalities-tags": [ "active-directory" ] }, - "/activedirectories/translation-rules/preview": {}, - "/activedirectories/{activedirectory_id}/agents": { + "/activedirectories/{activedirectory_id}/users": { "get": { - "description": "This endpoint allows you to list all your Active Directory Agents for a given Instance.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectoryAgent_List", + "description": "This endpoint will return all Users bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryTraverseUser_Get", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" + "$ref": "#/parameters/trait:filter:filter" }, { - "$ref": "#/parameters/trait:skip:skip" + "$ref": "#/parameters/trait:limit:limit" }, { - "$ref": "#/parameters/trait:sort:sort" + "$ref": "#/parameters/trait:skip:skip" } ], "responses": { @@ -8866,7 +10072,7 @@ "description": "", "schema": { "items": { - "$ref": "#/definitions/active-directory-agent-list" + "$ref": "#/definitions/GraphObjectWithPaths" }, "type": "array" } @@ -8877,47 +10083,45 @@ "x-api-key": [] } ], - "summary": "List Active Directory Agents", + "summary": "List the Users bound to an Active Directory instance", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, "parameters": [ { + "description": "ObjectID of the Active Directory instance.", "in": "path", "name": "activedirectory_id", "required": true, "type": "string" } ], - "post": { - "description": "This endpoint allows you to create a new Active Directory Agent.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{ \"agent_type\":\"{SYNC}\" }'\n```", - "operationId": "ActiveDirectoryAgent_Create", - "parameters": [ - { - "in": "body", - "name": "body", - "schema": { - "$ref": "#/definitions/active-directory-agent" - } - } - ], + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/{id}": { + "delete": { + "description": "This endpoint allows you to delete an Active Directory Instance.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectory_Delete", + "parameters": [], "responses": { - "201": { - "description": "", + "200": { + "description": "OK", "schema": { - "$ref": "#/definitions/active-directory-agent-get" + "$ref": "#/definitions/active-directory" } } }, @@ -8926,34 +10130,32 @@ "x-api-key": [] } ], - "summary": "Create a new Active Directory Agent", + "summary": "Delete an Active Directory", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"agentType\":\"SYNC\"}'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\npayload = {\"agentType\": \"SYNC\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"agentType\":\"SYNC\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method DELETE -Headers $headers" } ] }, - "x-functionalities-tags": [ - "active-directory" - ] - }, - "/activedirectories/{activedirectory_id}/agents/{agent_id}": { - "delete": { - "description": "This endpoint deletes an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryAgent_Delete", + "get": { + "description": "This endpoint returns a specific Active Directory.\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectory_Get", "parameters": [], "responses": { - "204": { - "description": "" + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory" + } } }, "security": [ @@ -8961,32 +10163,53 @@ "x-api-key": [] } ], - "summary": "Delete Active Directory Agent", + "summary": "Get an Active Directory", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method GET -Headers $headers" } ] }, - "get": { - "description": "This endpoint returns an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryAgent_Get", - "parameters": [], + "parameters": [ + { + "description": "ObjectID of this Active Directory instance.", + "in": "path", + "name": "id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/{provider_name}/translation-rules/recommendation": { + "parameters": [ + { + "description": "Provider name.", + "in": "path", + "name": "provider_name", + "required": true, + "type": "string" + } + ] + }, + "/administrators/{administrator_id}/organizationlinks/{id}": { + "delete": { + "description": "This endpoint removes the association link between an Administrator and an Organization.", + "operationId": "AdministratorOrganization_Delete", "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/active-directory-agent-list" - } + "204": { + "description": "No Content" } }, "security": [ @@ -8994,48 +10217,45 @@ "x-api-key": [] } ], - "summary": "Get Active Directory Agent", + "summary": "Remove association between an Administrator and an Organization.", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}' -Method DELETE -Headers $headers" } ] }, "parameters": [ { "in": "path", - "name": "activedirectory_id", + "name": "administrator_id", "required": true, "type": "string" }, { "in": "path", - "name": "agent_id", + "name": "id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "admin" ] }, - "/activedirectories/{activedirectory_id}/associations": { + "/administrators/{id}/organizationlinks": { "get": { - "description": "This endpoint returns the direct associations of this Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/associations?targets=user \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryAssociation_Get", + "description": "This endpoint returns the association links between an Administrator and Organizations.", + "operationId": "AdministratorOrganizations_List", "parameters": [ - { - "$ref": "#/parameters/trait:graphTargetsActiveDirectory:targets" - }, { "$ref": "#/parameters/trait:limit:limit" }, @@ -9045,10 +10265,10 @@ ], "responses": { "200": { - "description": "", + "description": "OK", "schema": { "items": { - "$ref": "#/definitions/GraphConnection" + "$ref": "#/definitions/AdministratorOrganizationLink" }, "type": "array" } @@ -9059,45 +10279,48 @@ "x-api-key": [] } ], - "summary": "List the associations of an Active Directory instance", + "summary": "List the association links between an Administrator and Organizations.", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' -Method GET -Headers $headers" } ] }, "parameters": [ { "in": "path", - "name": "activedirectory_id", + "name": "id", "required": true, "type": "string" } ], "post": { - "description": "This endpoint allows you to manage the _direct_ associations of an Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{AD_Instance_ID}/associations \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user\",\n \"id\": \"{User_ID}\"\n }'\n```", - "operationId": "ActiveDirectoryAssociation_Set", + "description": "This endpoint allows you to grant Administrator access to an Organization.", + "operationId": "AdministratorOrganization_Create", "parameters": [ { "in": "body", "name": "body", "schema": { - "$ref": "#/definitions/GraphOperation-ActiveDirectory" + "$ref": "#/definitions/AdministratorOrganizationLinkReq" } } ], "responses": { - "204": { - "description": "" + "201": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AdministratorOrganizationLink" + } } }, "security": [ @@ -9105,70 +10328,40 @@ "x-api-key": [] } ], - "summary": "Manage the associations of an Active Directory instance", + "summary": "Allow Adminstrator access to an Organization.", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\npayload = {\"organization\": \"6230a0d26a4e4bc86c6b36f1\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" } ] }, "x-functionalities-tags": [ - "active-directory" - ] - }, - "/activedirectories/{activedirectory_id}/translation-rules": { - "parameters": [ - { - "description": "ObjectID of the Active Directory instance.", - "in": "path", - "name": "activedirectory_id", - "required": true, - "type": "string" - } - ] - }, - "/activedirectories/{activedirectory_id}/translation-rules/bulk": { - "parameters": [ - { - "in": "path", - "name": "activedirectory_id", - "required": true, - "type": "string" - } - ] - }, - "/activedirectories/{activedirectory_id}/translation-rules/{translation_rule_object_id}": { - "parameters": [ - { - "in": "path", - "name": "activedirectory_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "translation_rule_object_id", - "required": true, - "type": "string" - } + "admin" ] }, - "/activedirectories/{activedirectory_id}/usergroups": { + "/alerts": {}, + "/alerts-stats": {}, + "/alerts/bulk-delete": {}, + "/alerts/bulk-update": {}, + "/alerts/{id}": {}, + "/alerts/{id}/occurrences": {}, + "/alerts/{id}/status": {}, + "/applemdms": { "get": { - "description": "This endpoint will return all Users Groups bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryTraverseUserGroup_Get", + "description": "Get a list of all Apple MDM configurations. An empty topic indicates that a signed certificate from Apple has not been provided to the PUT endpoint yet.\n\nNote: currently only one MDM configuration per organization is supported.\n\n#### Sample Request\n```\ncurl https://console.jumpcloud.com/api/v2/applemdms \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDM_List", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" + "$ref": "#/parameters/trait:limitDefault1:limit" }, { "$ref": "#/parameters/trait:skip:skip" @@ -9182,7 +10375,7 @@ "description": "", "schema": { "items": { - "$ref": "#/definitions/GraphObjectWithPaths" + "$ref": "#/definitions/AppleMDM" }, "type": "array" } @@ -9193,56 +10386,79 @@ "x-api-key": [] } ], - "summary": "List the User Groups bound to an Active Directory instance", + "summary": "List Apple MDMs", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms\"\n\nquerystring = {\"limit\":\"1\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0' -Method GET -Headers $headers" } ] }, + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{apple_mdm_id}/csr": { "parameters": [ { - "description": "ObjectID of the Active Directory instance.", "in": "path", - "name": "activedirectory_id", + "name": "apple_mdm_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "mdm" ] }, - "/activedirectories/{activedirectory_id}/users": { + "/applemdms/{apple_mdm_id}/depkey": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{apple_mdm_id}/devices": { "get": { - "description": "This endpoint will return all Users bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryTraverseUser_Get", + "description": "Lists all Apple MDM devices.\n\nThe filter and sort queries will allow the following fields:\n`createdAt`\n`depRegistered`\n`enrolled`\n`id`\n`osVersion`\n`serialNumber`\n`udid`\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_List", "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, { "$ref": "#/parameters/trait:filter:filter" }, { - "$ref": "#/parameters/trait:limit:limit" + "$ref": "#/parameters/trait:sort:sort" }, { - "$ref": "#/parameters/trait:skip:skip" + "$ref": "#/parameters/trait:listCount:x-total-count" } ], "responses": { "200": { - "description": "", + "description": "OK", "schema": { "items": { - "$ref": "#/definitions/GraphObjectWithPaths" + "$ref": "#/definitions/apple-mdm-device" }, "type": "array" } @@ -9253,45 +10469,43 @@ "x-api-key": [] } ], - "summary": "List the Users bound to an Active Directory instance", + "summary": "List AppleMDM Devices", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?filter=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?filter=&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0' -Method GET -Headers $headers" } ] }, "parameters": [ { - "description": "ObjectID of the Active Directory instance.", "in": "path", - "name": "activedirectory_id", + "name": "apple_mdm_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "mdm" ] }, - "/activedirectories/{id}": { + "/applemdms/{apple_mdm_id}/devices/{device_id}": { "delete": { - "description": "This endpoint allows you to delete an Active Directory Instance.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectory_Delete", - "parameters": [], + "description": "Remove a single Apple MDM device from MDM enrollment.\n\n#### Sample Request\n```\n curl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDMDevice_Delete", "responses": { "200": { "description": "OK", "schema": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/apple-mdm-device" } } }, @@ -9300,31 +10514,30 @@ "x-api-key": [] } ], - "summary": "Delete an Active Directory", + "summary": "Remove an Apple MDM Device's Enrollment", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method DELETE -Headers $headers" } ] }, "get": { - "description": "This endpoint returns a specific Active Directory.\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectory_Get", - "parameters": [], + "description": "Gets a single Apple MDM device.\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDMDevice_Get", "responses": { "200": { - "description": "", + "description": "OK", "schema": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/apple-mdm-device" } } }, @@ -9333,53 +10546,100 @@ "x-api-key": [] } ], - "summary": "Get an Active Directory", + "summary": "Details of an AppleMDM Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method GET -Headers $headers" } ] }, "parameters": [ { - "description": "ObjectID of this Active Directory instance.", "in": "path", - "name": "id", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "mdm" ] }, - "/activedirectories/{provider_name}/translation-rules/recommendation": { + "/applemdms/{apple_mdm_id}/devices/{device_id}/availableOsUpdates": { "parameters": [ { - "description": "Provider name.", "in": "path", - "name": "provider_name", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", "required": true, "type": "string" } + ], + "x-functionalities-tags": [ + "mdm" ] }, - "/administrators/{administrator_id}/organizationlinks/{id}": { - "delete": { - "description": "This endpoint removes the association link between an Administrator and an Organization.", - "operationId": "AdministratorOrganization_Delete", + "/applemdms/{apple_mdm_id}/devices/{device_id}/bypasscodes": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "Clears the activation lock on the specified device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDeviceActivationLock_Clear", + "parameters": [], "responses": { "204": { - "description": "No Content" + "description": "" } }, "security": [ @@ -9387,110 +10647,105 @@ "x-api-key": [] } ], - "summary": "Remove association between an Administrator and an Organization.", + "summary": "Clears the Activation Lock for a Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock' -Method POST -Headers $headers" } ] }, + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/clearPasscode": { "parameters": [ { "in": "path", - "name": "administrator_id", + "name": "apple_mdm_id", "required": true, "type": "string" }, { "in": "path", - "name": "id", + "name": "device_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "admin" + "mdm", + "devices-darwin-security-command" ] }, - "/administrators/{id}/organizationlinks": { - "get": { - "description": "This endpoint returns the association links between an Administrator and Organizations.", - "operationId": "AdministratorOrganizations_List", - "parameters": [ - { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "items": { - "$ref": "#/definitions/AdministratorOrganizationLink" - }, - "type": "array" - } - } + "/applemdms/{apple_mdm_id}/devices/{device_id}/clearRestrictionsPassword": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" }, - "security": [ - { - "x-api-key": [] - } - ], - "summary": "List the association links between an Administrator and Organizations.", - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" - }, - { - "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" - }, - { - "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' -Method GET -Headers $headers" - } - ] - }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/erase": { "parameters": [ { "in": "path", - "name": "id", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", "required": true, "type": "string" } ], "post": { - "description": "This endpoint allows you to grant Administrator access to an Organization.", - "operationId": "AdministratorOrganization_Create", + "description": "Erases a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Clear", "parameters": [ { "in": "body", "name": "body", "schema": { - "$ref": "#/definitions/AdministratorOrganizationLinkReq" + "properties": { + "pin": { + "description": "6-digit PIN, required for MacOS, to erase the device", + "example": "123456", + "pattern": "^[0-9]{6}$", + "type": "string" + } + }, + "type": "object" } } ], "responses": { - "201": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AdministratorOrganizationLink" - } + "204": { + "description": "" } }, "security": [ @@ -9498,185 +10753,239 @@ "x-api-key": [] } ], - "summary": "Allow Adminstrator access to an Organization.", + "summary": "Erase Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"pin\":\"123456\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\npayload = {\"organization\": \"6230a0d26a4e4bc86c6b36f1\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" } ] }, "x-functionalities-tags": [ - "admin" + "mdm", + "devices-darwin-security-command" ] }, - "/alerts": {}, - "/alerts-stats": {}, - "/alerts/bulk-delete": {}, - "/alerts/bulk-update": {}, - "/alerts/{id}": {}, - "/alerts/{id}/occurrences": {}, - "/alerts/{id}/status": {}, - "/applemdms": { - "get": { - "description": "Get a list of all Apple MDM configurations. An empty topic indicates that a signed certificate from Apple has not been provided to the PUT endpoint yet.\n\nNote: currently only one MDM configuration per organization is supported.\n\n#### Sample Request\n```\ncurl https://console.jumpcloud.com/api/v2/applemdms \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDM_List", + "/applemdms/{apple_mdm_id}/devices/{device_id}/lock": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "Locks a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Lock", "parameters": [ { - "$ref": "#/parameters/trait:limitDefault1:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:filter:filter" - } - ], - "responses": { - "200": { - "description": "", + "in": "body", + "name": "body", "schema": { - "items": { - "$ref": "#/definitions/AppleMDM" + "properties": { + "pin": { + "description": "6-digit PIN, required for MacOS, to lock the device", + "example": "123456", + "pattern": "^[0-9]{6}$", + "type": "string" + } }, - "type": "array" + "type": "object" } } + ], + "responses": { + "204": { + "description": "" + } }, "security": [ { "x-api-key": [] } ], - "summary": "List Apple MDMs", + "summary": "Lock Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"pin\":\"123456\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms\"\n\nquerystring = {\"limit\":\"1\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" } ] }, "x-functionalities-tags": [ - "mdm" + "mdm", + "devices-darwin-security-command" ] }, - "/applemdms/{apple_mdm_id}/csr": { + "/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation": { "parameters": [ { "in": "path", "name": "apple_mdm_id", "required": true, "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" } ], + "post": { + "description": "Refreshes the activation lock information for a device\n\n#### Sample Request\n\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDeviceLockInformation_Refresh", + "parameters": [], + "responses": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Refresh activation lock information for a device", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation' -Method POST -Headers $headers" + } + ] + }, "x-functionalities-tags": [ "mdm" ] }, - "/applemdms/{apple_mdm_id}/depkey": { + "/applemdms/{apple_mdm_id}/devices/{device_id}/restart": { "parameters": [ { "in": "path", "name": "apple_mdm_id", "required": true, "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" } ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/devices": { - "get": { - "description": "Lists all Apple MDM devices.\n\nThe filter and sort queries will allow the following fields:\n`createdAt`\n`depRegistered`\n`enrolled`\n`id`\n`osVersion`\n`serialNumber`\n`udid`\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_List", + "post": { + "description": "Restarts a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\"kextPaths\": [\"Path1\", \"Path2\"]}'\n```", + "operationId": "AppleMDMDevice_Restart", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:filter:filter" - }, - { - "$ref": "#/parameters/trait:sort:sort" - }, - { - "$ref": "#/parameters/trait:listCount:x-total-count" - } - ], - "responses": { - "200": { - "description": "OK", + "in": "body", + "name": "body", "schema": { - "items": { - "$ref": "#/definitions/apple-mdm-device" + "properties": { + "kextPaths": { + "description": "The string to pass when doing a restart and performing a RebuildKernelCache.", + "items": { + "type": "string" + }, + "type": "array" + } }, - "type": "array" + "type": "object" + }, + "x-examples": { + "example-1": { + "kextPaths": [ + "/path/to/kext1", + "/path/to/kext2" + ] + } } } + ], + "responses": { + "204": { + "description": "" + } }, "security": [ { "x-api-key": [] } ], - "summary": "List AppleMDM Devices", + "summary": "Restart Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0&filter=&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"kextPaths\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart\"\n\npayload = {\"kextPaths\": [\"string\"]}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0&filter=&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"kextPaths\":[\"string\"]}'" } ] }, + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown": { "parameters": [ { "in": "path", "name": "apple_mdm_id", "required": true, "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" } ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/devices/{device_id}": { - "delete": { - "description": "Remove a single Apple MDM device from MDM enrollment.\n\n#### Sample Request\n```\n curl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDMDevice_Delete", + "post": { + "description": "Shuts down a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Stop", + "parameters": [], "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/apple-mdm-device" - } + "204": { + "description": "" } }, "security": [ @@ -9684,30 +10993,40 @@ "x-api-key": [] } ], - "summary": "Remove an Apple MDM Device's Enrollment", + "summary": "Shut Down Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown' -Method POST -Headers $headers" } ] }, + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/enrollmentprofiles": { "get": { - "description": "Gets a single Apple MDM device.\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDMDevice_Get", + "description": "Get a list of enrollment profiles for an apple mdm.\n\nNote: currently only one enrollment profile is supported.\n\n#### Sample Request\n```\n curl https://console.jumpcloud.com/api/v2/applemdms/{APPLE_MDM_ID}/enrollmentprofiles \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDMEnrollmentProfile_List", + "parameters": [], "responses": { "200": { - "description": "OK", + "description": "", "schema": { - "$ref": "#/definitions/apple-mdm-device" + "items": { + "$ref": "#/definitions/AppleMDM" + }, + "type": "array" } } }, @@ -9716,19 +11035,19 @@ "x-api-key": [] } ], - "summary": "Details of an AppleMDM Device", + "summary": "List Apple MDM Enrollment Profiles", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles' -Method GET -Headers $headers" } ] }, @@ -9738,19 +11057,13 @@ "name": "apple_mdm_id", "required": true, "type": "string" - }, - { - "in": "path", - "name": "device_id", - "required": true, - "type": "string" } ], "x-functionalities-tags": [ "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/availableOsUpdates": { + "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}": { "parameters": [ { "in": "path", @@ -9760,7 +11073,7 @@ }, { "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } @@ -9769,7 +11082,7 @@ "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/bypasscodes": { + "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}/downloadurl": { "parameters": [ { "in": "path", @@ -9779,7 +11092,7 @@ }, { "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } @@ -9788,28 +11101,118 @@ "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock": { + "/applemdms/{apple_mdm_id}/refreshdepdevices": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "Refreshes the list of devices that a JumpCloud admin has added to their virtual MDM in Apple Business Manager - ABM so that they can be DEP enrolled with JumpCloud.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Sync", + "parameters": [], + "responses": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Refresh DEP Devices", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices' -Method POST -Headers $headers" + } + ] + }, + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{deviceManagerObjectId}/abm_devices": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/clearrecoverylock": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockconfig": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockpassword": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/lostmode": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/setrecoverylock": {}, + "/applemdms/{deviceManagerObjectId}/service-discovery-url": {}, + "/applemdms/{deviceManagerObjectId}/validate-service-discovery-url": {}, + "/applemdms/{deviceObjectId}/background_tasks": {}, + "/applemdms/{id}": { + "delete": { + "description": "Removes an Apple MDM configuration.\n\nWarning: This is a destructive operation and will remove your Apple Push Certificates. We will no longer be able to manage your devices and the only recovery option is to re-register all devices into MDM.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDM_Delete", + "parameters": [], + "responses": { + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/AppleMDM" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Delete an Apple MDM", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method DELETE -Headers $headers" + } + ] + }, "parameters": [ { "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } ], - "post": { - "description": "Clears the activation lock on the specified device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDeviceActivationLock_Clear", - "parameters": [], + "put": { + "description": "Updates an Apple MDM configuration. This endpoint is used to supply JumpCloud with a signed certificate from Apple in order to finalize the setup and allow JumpCloud to manage your devices. It may also be used to update the DEP Settings.\n\n#### Sample Request\n```\n curl -X PUT https://console.jumpcloud.com/api/v2/applemdms/{ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"name\": \"MDM name\",\n \"appleSignedCert\": \"{CERTIFICATE}\",\n \"encryptedDepServerToken\": \"{SERVER_TOKEN}\",\n \"dep\": {\n \"welcomeScreen\": {\n \"title\": \"Welcome\",\n \"paragraph\": \"In just a few steps, you will be working securely from your Mac.\",\n \"button\": \"continue\",\n },\n },\n }'\n```", + "operationId": "AppleMDM_Set", + "parameters": [ + { + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/apple-mdm-patch" + } + } + ], "responses": { - "204": { - "description": "" + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/AppleMDM" + } } }, "security": [ @@ -9817,105 +11220,155 @@ "x-api-key": [] } ], - "summary": "Clears the Activation Lock for a Device", + "summary": "Update an Apple MDM", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\npayload = {\n \"ades\": {\n \"ios\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"macos\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n }\n },\n \"allowMobileUserEnrollment\": True,\n \"appleCertCreatorAppleID\": \"string\",\n \"appleSignedCert\": \"string\",\n \"defaultIosUserEnrollmentDeviceGroupID\": \"string\",\n \"defaultSystemGroupID\": \"string\",\n \"dep\": {\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"encryptedDepServerToken\": \"string\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" } ] }, "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/clearPasscode": { + "/applemdms/{organizationObjectId}/account-driven-service-discovery": {}, + "/applemdms/{organizationObjectId}/account-driven-service-discovery/config": {}, + "/applevpp/locations": { + "x-functionalities-tags": [ + "vpp" + ] + }, + "/applevpp/locations/{id}": { "parameters": [ { + "description": "The Location's Object ID", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "vpp" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/clearRestrictionsPassword": { + "/application/catalog": { + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/application/catalog/{item_id}": { "parameters": [ { "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "item_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/erase": { + "/applications": { + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/import/{job_id}/detailedresults": { "parameters": [ { + "description": "ObjectID of the Import Job.", "in": "path", - "name": "apple_mdm_id", + "name": "job_id", "required": true, "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/associations": { + "get": { + "description": "This endpoint will return the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Applications and User Groups.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations?targets=user_group \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ApplicationAssociation_Get", + "parameters": [ + { + "$ref": "#/parameters/trait:graphTargetsApplication:targets" + }, + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "items": { + "$ref": "#/definitions/GraphConnection" + }, + "type": "array" + } + } }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "List the associations of an Application", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + } + ] + }, + "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], "post": { - "description": "Erases a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Clear", + "description": "This endpoint allows you to manage the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Application and User Groups.\n\n#### Sample Request\n```\ncurl -X POST 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations' \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user_group\",\n \"id\": \"{Group_ID}\"\n }'\n```", + "operationId": "ApplicationAssociation_Set", "parameters": [ { "in": "body", "name": "body", "schema": { - "properties": { - "pin": { - "description": "6-digit PIN, required for MacOS, to erase the device", - "example": "123456", - "pattern": "^[0-9]{6}$", - "type": "string" - } - }, - "type": "object" + "$ref": "#/definitions/GraphOperation-Application" } } ], "responses": { "204": { - "description": "" + "description": "OK" } }, "security": [ @@ -9923,65 +11376,128 @@ "x-api-key": [] } ], - "summary": "Erase Device", + "summary": "Manage the associations of an Application", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"pin\":\"123456\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/lock": { + "/applications/{application_id}/import/jobs": { "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], - "post": { - "description": "Locks a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Lock", + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/import/users": { + "get": { + "description": "Get a list of users to import from an Application IdM service provider.", + "operationId": "SCIM_Import", "parameters": [ { - "in": "body", - "name": "body", - "schema": { - "properties": { - "pin": { - "description": "6-digit PIN, required for MacOS, to lock the device", - "example": "123456", - "pattern": "^[0-9]{6}$", - "type": "string" - } - }, - "type": "object" - } + "default": "", + "description": "Filter users by a search term", + "in": "query", + "name": "filter", + "type": "string" + }, + { + "default": "", + "description": "URL query to merge with the service provider request", + "in": "query", + "name": "query", + "type": "string" + }, + { + "default": "", + "description": "Sort users by supported fields", + "enum": [ + "firstname", + "lastname", + "email" + ], + "in": "query", + "name": "sort", + "type": "string", + "x-ms-enum": { + "name": "sort" + } + }, + { + "default": "asc", + "enum": [ + "asc", + "desc" + ], + "in": "query", + "name": "sortOrder", + "type": "string", + "x-ms-enum": { + "name": "sortOrder1" + } + }, + { + "default": "", + "description": "Import sessionId for manual select and view user", + "in": "query", + "name": "sessionId", + "type": "string" + }, + { + "default": false, + "description": "IsCount indicates if the request is only for getting the total count of users.", + "in": "query", + "name": "isCount", + "type": "boolean" + }, + { + "default": false, + "description": "Enable cursor-based pagination", + "in": "query", + "name": "isCursor", + "type": "boolean" + }, + { + "default": "", + "description": "Cursor token for pagination", + "in": "query", + "name": "cursor", + "type": "string" + }, + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" } ], "responses": { - "204": { - "description": "" + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/importUsersResponse" + } } }, "security": [ @@ -9989,49 +11505,50 @@ "x-api-key": [] } ], - "summary": "Lock Device", + "summary": "Get a list of users to import from an Application IdM service provider", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"pin\":\"123456\"}'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users\"\n\nquerystring = {\"filter\":\"\",\"query\":\"\",\"sort\":\"\",\"sortOrder\":\"asc\",\"sessionId\":\"\",\"isCount\":\"false\",\"isCursor\":\"false\",\"cursor\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' -Method GET -Headers $headers" } ] }, - "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" - ] - }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation": { "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], - "post": { - "description": "Refreshes the activation lock information for a device\n\n#### Sample Request\n\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDeviceLockInformation_Refresh", - "parameters": [], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/logo": { + "delete": { + "description": "Deletes the specified image from an application", + "operationId": "ApplicationLogo_Delete", + "parameters": [ + { + "in": "path", + "name": "application_id", + "required": true, + "type": "string" + } + ], "responses": { "204": { - "description": "" + "description": "NO_CONTENT" } }, "security": [ @@ -10039,73 +11556,114 @@ "x-api-key": [] } ], - "summary": "Refresh activation lock information for a device", + "summary": "Delete application image", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/logo \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/logo\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/logo' -Method DELETE -Headers $headers" } ] }, "x-functionalities-tags": [ - "mdm" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/restart": { + "/applications/{application_id}/provision": { "parameters": [ { "in": "path", - "name": "apple_mdm_id", + "name": "application_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/provision/activate": { + "parameters": [ + { + "in": "path", + "name": "application_id", "required": true, "type": "string" }, + { + "in": "header", + "name": "X-Requested-With", + "required": false, + "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/provision/reactivate": { + "parameters": [ { "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" + }, + { + "in": "header", + "name": "X-Requested-With", + "required": false, + "type": "string" } ], - "post": { - "description": "Restarts a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\"kextPaths\": [\"Path1\", \"Path2\"]}'\n```", - "operationId": "AppleMDMDevice_Restart", + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/sso": { + "parameters": [ + { + "in": "path", + "name": "application_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/usergroups": { + "get": { + "description": "This endpoint will return all Users Groups bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ApplicationTraverseUserGroup_Get", "parameters": [ { - "in": "body", - "name": "body", - "schema": { - "properties": { - "kextPaths": { - "description": "The string to pass when doing a restart and performing a RebuildKernelCache.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "x-examples": { - "example-1": { - "kextPaths": [ - "/path/to/kext1", - "/path/to/kext2" - ] - } - } + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:filter:filter" } ], "responses": { - "204": { - "description": "" + "200": { + "description": "OK", + "schema": { + "items": { + "$ref": "#/definitions/GraphObjectWithPaths" + }, + "type": "array" + } } }, "security": [ @@ -10113,49 +11671,59 @@ "x-api-key": [] } ], - "summary": "Restart Device", + "summary": "List the User Groups bound to an Application", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"kextPaths\":[\"string\"]}'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart\"\n\npayload = {\"kextPaths\": [\"string\"]}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"kextPaths\":[\"string\"]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, - "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" - ] - }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown": { "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], - "post": { - "description": "Shuts down a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Stop", - "parameters": [], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/users": { + "get": { + "description": "This endpoint will return all Users bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ApplicationTraverseUser_Get", + "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:filter:filter" + } + ], "responses": { - "204": { - "description": "" + "200": { + "description": "OK", + "schema": { + "items": { + "$ref": "#/definitions/GraphObjectWithPaths" + }, + "type": "array" + } } }, "security": [ @@ -10163,40 +11731,93 @@ "x-api-key": [] } ], - "summary": "Shut Down Device", + "summary": "List the Users bound to an Application", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, + "parameters": [ + { + "description": "ObjectID of the Application.", + "in": "path", + "name": "application_id", + "required": true, + "type": "string" + } + ], "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/enrollmentprofiles": { + "/approvalflowrequest": { "get": { - "description": "Get a list of enrollment profiles for an apple mdm.\n\nNote: currently only one enrollment profile is supported.\n\n#### Sample Request\n```\n curl https://console.jumpcloud.com/api/v2/applemdms/{APPLE_MDM_ID}/enrollmentprofiles \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDMEnrollmentProfile_List", - "parameters": [], + "description": "Endpoint for getting the list of workflows access requests", + "operationId": "WorkflowAccessRequest_List", + "parameters": [ + { + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" + }, + { + "format": "int64", + "in": "query", + "name": "limit", + "required": false, + "type": "string" + }, + { + "format": "int64", + "in": "query", + "name": "skip", + "required": false, + "type": "string" + }, + { + "in": "query", + "name": "sort", + "required": false, + "type": "string" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "fields", + "required": false, + "type": "array" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "required": false, + "type": "array" + } + ], "responses": { "200": { - "description": "", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/AppleMDM" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.GetAllWorkflowAccessRequestResponse" } } }, @@ -10205,88 +11826,42 @@ "x-api-key": [] } ], - "summary": "List Apple MDM Enrollment Profiles", + "summary": "Get all Workflow Access Requests", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflowrequest?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\",\"limit\":\"SOME_STRING_VALUE\",\"skip\":\"SOME_STRING_VALUE\",\"sort\":\"SOME_STRING_VALUE\",\"fields\":\"SOME_ARRAY_VALUE\",\"filter\":\"SOME_ARRAY_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' -Method GET -Headers $headers" } ] }, - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}": { - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}/downloadurl": { - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/refreshdepdevices": { - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - } - ], "post": { - "description": "Refreshes the list of devices that a JumpCloud admin has added to their virtual MDM in Apple Business Manager - ABM so that they can be DEP enrolled with JumpCloud.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Sync", - "parameters": [], + "description": "Endpoint for adding a new workflow access request", + "operationId": "WorkflowAccessRequest_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "required": true, + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestRequest" + } + } + ], "responses": { - "204": { - "description": "" + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestResponse" + } } }, "security": [ @@ -10294,45 +11869,48 @@ "x-api-key": [] } ], - "summary": "Refresh DEP Devices", + "summary": "Create Workflow Access Request", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowrequest \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest\"\n\npayload = {\n \"id\": \"string\",\n \"organizationObjectId\": \"string\",\n \"reason\": \"string\",\n \"requestedDuration\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" } ] - }, - "x-functionalities-tags": [ - "mdm" - ] + } }, - "/applemdms/{deviceManagerObjectId}/abm_devices": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/clearrecoverylock": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockconfig": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockpassword": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/lostmode": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/setrecoverylock": {}, - "/applemdms/{deviceManagerObjectId}/service-discovery-url": {}, - "/applemdms/{deviceManagerObjectId}/validate-service-discovery-url": {}, - "/applemdms/{deviceObjectId}/background_tasks": {}, - "/applemdms/{id}": { - "delete": { - "description": "Removes an Apple MDM configuration.\n\nWarning: This is a destructive operation and will remove your Apple Push Certificates. We will no longer be able to manage your devices and the only recovery option is to re-register all devices into MDM.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDM_Delete", - "parameters": [], + "/approvalflowrequest/{id}": { + "get": { + "description": "Endpoint that returns the workflow access request by id", + "operationId": "WorkflowAccessRequest_Get", + "parameters": [ + { + "in": "path", + "name": "id", + "required": true, + "type": "string" + }, + { + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" + } + ], "responses": { "200": { - "description": "", + "description": "A successful response.", "schema": { - "$ref": "#/definitions/AppleMDM" + "$ref": "#/definitions/jumpcloud.ingresso.GetWorkflowAccessRequestResponse" } } }, @@ -10341,47 +11919,68 @@ "x-api-key": [] } ], - "summary": "Delete an Apple MDM", + "summary": "Get Workflow Access Requests", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, - "parameters": [ - { - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], "put": { - "description": "Updates an Apple MDM configuration. This endpoint is used to supply JumpCloud with a signed certificate from Apple in order to finalize the setup and allow JumpCloud to manage your devices. It may also be used to update the DEP Settings.\n\n#### Sample Request\n```\n curl -X PUT https://console.jumpcloud.com/api/v2/applemdms/{ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"name\": \"MDM name\",\n \"appleSignedCert\": \"{CERTIFICATE}\",\n \"encryptedDepServerToken\": \"{SERVER_TOKEN}\",\n \"dep\": {\n \"welcomeScreen\": {\n \"title\": \"Welcome\",\n \"paragraph\": \"In just a few steps, you will be working securely from your Mac.\",\n \"button\": \"continue\",\n },\n },\n }'\n```", - "operationId": "AppleMDM_Set", + "description": "Endpoint that updates the workflow access request by id", + "operationId": "WorkflowAccessRequest_Set", "parameters": [ + { + "in": "path", + "name": "id", + "required": true, + "type": "string" + }, { "in": "body", "name": "body", + "required": true, "schema": { - "$ref": "#/definitions/apple-mdm-patch" + "properties": { + "admin": { + "type": "string" + }, + "approvedDuration": { + "type": "string" + }, + "internalNote": { + "type": "string" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "remarks": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" } } ], "responses": { "200": { - "description": "", + "description": "A successful response.", "schema": { - "$ref": "#/definitions/AppleMDM" + "$ref": "#/definitions/jumpcloud.ingresso.UpdateWorkflowAccessRequestResponse" } } }, @@ -10390,107 +11989,82 @@ "x-api-key": [] } ], - "summary": "Update an Apple MDM", + "summary": "Update Workflow Access Requests", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/approvalflowrequest/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"admin\":\"string\",\"approvedDuration\":\"string\",\"internalNote\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\npayload = {\n \"ades\": {\n \"ios\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"macos\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n }\n },\n \"allowMobileUserEnrollment\": True,\n \"appleCertCreatorAppleID\": \"string\",\n \"appleSignedCert\": \"string\",\n \"defaultIosUserEnrollmentDeviceGroupID\": \"string\",\n \"defaultSystemGroupID\": \"string\",\n \"dep\": {\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"encryptedDepServerToken\": \"string\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}\"\n\npayload = {\n \"admin\": \"string\",\n \"approvedDuration\": \"string\",\n \"internalNote\": \"string\",\n \"organizationObjectId\": \"string\",\n \"remarks\": \"string\",\n \"status\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"admin\":\"string\",\"approvedDuration\":\"string\",\"internalNote\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" } ] - }, - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{organizationObjectId}/account-driven-service-discovery": {}, - "/applemdms/{organizationObjectId}/account-driven-service-discovery/config": {}, - "/applevpp/locations": { - "x-functionalities-tags": [ - "vpp" - ] - }, - "/applevpp/locations/{id}": { - "parameters": [ - { - "description": "The Location's Object ID", - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "vpp" - ] - }, - "/application/catalog": { - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/application/catalog/{item_id}": { - "parameters": [ - { - "in": "path", - "name": "item_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications": { - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/import/{job_id}/detailedresults": { - "parameters": [ - { - "description": "ObjectID of the Import Job.", - "in": "path", - "name": "job_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/associations": { + "/approvalflows": { "get": { - "description": "This endpoint will return the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Applications and User Groups.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations?targets=user_group \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ApplicationAssociation_Get", + "description": "Endpoint for getting all access workflows ", + "operationId": "Workflow_List", "parameters": [ { - "$ref": "#/parameters/trait:graphTargetsApplication:targets" + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" }, { - "$ref": "#/parameters/trait:limit:limit" + "format": "int64", + "in": "query", + "name": "limit", + "required": false, + "type": "string" }, { - "$ref": "#/parameters/trait:skip:skip" + "format": "int64", + "in": "query", + "name": "skip", + "required": false, + "type": "string" + }, + { + "in": "query", + "name": "sort", + "required": false, + "type": "string" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "fields", + "required": false, + "type": "array" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "required": false, + "type": "array" } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/GraphConnection" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.GetAllAccessWorkFlowsResponse" } } }, @@ -10499,46 +12073,42 @@ "x-api-key": [] } ], - "summary": "List the associations of an Application", + "summary": "Get all Access workflows", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflows?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\",\"limit\":\"SOME_STRING_VALUE\",\"skip\":\"SOME_STRING_VALUE\",\"sort\":\"SOME_STRING_VALUE\",\"fields\":\"SOME_ARRAY_VALUE\",\"filter\":\"SOME_ARRAY_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' -Method GET -Headers $headers" } ] }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], "post": { - "description": "This endpoint allows you to manage the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Application and User Groups.\n\n#### Sample Request\n```\ncurl -X POST 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations' \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user_group\",\n \"id\": \"{Group_ID}\"\n }'\n```", - "operationId": "ApplicationAssociation_Set", + "description": "Endpoint for adding a new access workflow", + "operationId": "Workflow_Create", "parameters": [ { "in": "body", "name": "body", + "required": true, "schema": { - "$ref": "#/definitions/GraphOperation-Application" + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowRequest" } } ], "responses": { - "204": { - "description": "OK" + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowResponse" + } } }, "security": [ @@ -10546,127 +12116,214 @@ "x-api-key": [] } ], - "summary": "Manage the associations of an Application", + "summary": "Create Access Workflow", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflows \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"category\":\"string\",\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"resourceType\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows\"\n\npayload = {\n \"approvalType\": \"string\",\n \"approverRequirement\": \"string\",\n \"approverResources\": [\n {\n \"requireAll\": True,\n \"resourceId\": \"string\",\n \"resourceName\": \"string\",\n \"resourceOrder\": 0,\n \"resourceType\": \"string\"\n }\n ],\n \"category\": \"string\",\n \"description\": \"string\",\n \"fixedDuration\": \"string\",\n \"iconColor\": \"string\",\n \"iconUrl\": \"string\",\n \"multiSelectDuration\": [\"string\"],\n \"name\": \"string\",\n \"nonAdminApproval\": True,\n \"organizationObjectId\": \"string\",\n \"resourceId\": \"string\",\n \"resourceType\": \"string\",\n \"slackConfig\": [{\"slackResourceId\": \"string\"}],\n \"slackEnabled\": True,\n \"status\": \"string\",\n \"timeBasedAccess\": True,\n \"ttlConfig\": \"TTL_CONFIG_UNSPECIFIED\",\n \"visibleTo\": [\"string\"]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"category\":\"string\",\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"resourceType\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" } ] - }, - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/import/jobs": { - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/import/users": { - "get": { - "description": "Get a list of users to import from an Application IdM service provider.", - "operationId": "SCIM_Import", + "/approvalflows/{approvalFlowId}": { + "delete": { + "description": "Endpoint for deleting accessworkflow by id", + "operationId": "Workflow_Delete", "parameters": [ { - "default": "", - "description": "Filter users by a search term", - "in": "query", - "name": "filter", + "in": "path", + "name": "approvalFlowId", + "required": true, "type": "string" }, { - "default": "", - "description": "URL query to merge with the service provider request", + "format": "byte", "in": "query", - "name": "query", + "name": "organizationObjectId", + "required": false, "type": "string" - }, - { - "default": "", - "description": "Sort users by supported fields", - "enum": [ - "firstname", - "lastname", - "email" - ], - "in": "query", - "name": "sort", - "type": "string", - "x-ms-enum": { - "name": "sort" + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.DeleteAccessWorkflowResponse" } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Delete access workflow", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request DELETE \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { - "default": "asc", - "enum": [ - "asc", - "desc" - ], - "in": "query", - "name": "sortOrder", - "type": "string", - "x-ms-enum": { - "name": "sortOrder1" - } + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { - "default": "", - "description": "Import sessionId for manual select and view user", - "in": "query", - "name": "sessionId", + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' -Method DELETE -Headers $headers" + } + ] + }, + "get": { + "description": "Endpoint for getting workflow by id", + "operationId": "Workflow_Get", + "parameters": [ + { + "in": "path", + "name": "approvalFlowId", + "required": true, "type": "string" }, { - "default": false, - "description": "IsCount indicates if the request is only for getting the total count of users.", + "format": "byte", "in": "query", - "name": "isCount", - "type": "boolean" - }, + "name": "organizationObjectId", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflow" + } + } + }, + "security": [ { - "default": false, - "description": "Enable cursor-based pagination", - "in": "query", - "name": "isCursor", - "type": "boolean" + "x-api-key": [] + } + ], + "summary": "Get AccessWorkflow by id", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { - "default": "", - "description": "Cursor token for pagination", - "in": "query", - "name": "cursor", - "type": "string" + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { - "$ref": "#/parameters/trait:limit:limit" + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" + } + ] + }, + "put": { + "description": "Endpoint for updating a new access workflow", + "operationId": "Workflow_Set", + "parameters": [ + { + "in": "path", + "name": "approvalFlowId", + "required": true, + "type": "string" }, { - "$ref": "#/parameters/trait:skip:skip" + "in": "body", + "name": "body", + "required": true, + "schema": { + "properties": { + "approvalType": { + "type": "string" + }, + "approverRequirement": { + "type": "string" + }, + "approverResources": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ApproverResource" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "multiSelectDuration": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceId": { + "type": "string" + }, + "slackConfig": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.SlackConfig" + }, + "type": "array" + }, + "slackEnabled": { + "type": "boolean" + }, + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "$ref": "#/definitions/jumpcloud.ingresso.TtlConfig" + }, + "visibleTo": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "$ref": "#/definitions/importUsersResponse" + "$ref": "#/definitions/jumpcloud.ingresso.UpdateAccessWorkflowResponse" } } }, @@ -10675,50 +12332,86 @@ "x-api-key": [] } ], - "summary": "Get a list of users to import from an Application IdM service provider", + "summary": "Update Access Workflow", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users\"\n\nquerystring = {\"filter\":\"\",\"query\":\"\",\"sort\":\"\",\"sortOrder\":\"asc\",\"sessionId\":\"\",\"isCount\":\"false\",\"isCursor\":\"false\",\"cursor\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}\"\n\npayload = {\n \"approvalType\": \"string\",\n \"approverRequirement\": \"string\",\n \"approverResources\": [\n {\n \"requireAll\": True,\n \"resourceId\": \"string\",\n \"resourceName\": \"string\",\n \"resourceOrder\": 0,\n \"resourceType\": \"string\"\n }\n ],\n \"description\": \"string\",\n \"fixedDuration\": \"string\",\n \"iconColor\": \"string\",\n \"iconUrl\": \"string\",\n \"multiSelectDuration\": [\"string\"],\n \"name\": \"string\",\n \"nonAdminApproval\": True,\n \"organizationObjectId\": \"string\",\n \"resourceId\": \"string\",\n \"slackConfig\": [{\"slackResourceId\": \"string\"}],\n \"slackEnabled\": True,\n \"status\": \"string\",\n \"timeBasedAccess\": True,\n \"ttlConfig\": \"TTL_CONFIG_UNSPECIFIED\",\n \"visibleTo\": [\"string\"]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" } ] - }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/logo": { - "delete": { - "description": "Deletes the specified image from an application", - "operationId": "ApplicationLogo_Delete", + "/approvalflowsettings": { + "get": { + "description": "Endpoint for getting workflow settings for an organisation", + "operationId": "WorkflowSettings_Get", + "parameters": [ + { + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflowSettings" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Get AccessWorkflow settings for an organisation", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflowsettings?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" + } + ] + }, + "post": { + "description": "Endpoint for adding a new access workflow Settings", + "operationId": "WorkflowSettings_Create", "parameters": [ { - "in": "path", - "name": "application_id", + "in": "body", + "name": "body", "required": true, - "type": "string" + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest" + } } ], "responses": { - "204": { - "description": "NO_CONTENT" + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse" + } } }, "security": [ @@ -10726,113 +12419,41 @@ "x-api-key": [] } ], - "summary": "Delete application image", + "summary": "Create Access Workflow Settings for an organization", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/logo \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowsettings \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/logo\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\npayload = {\n \"adminApprovalEmail\": True,\n \"channelEvents\": [\n {\n \"channelObjectId\": \"string\",\n \"eventTypes\": [\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]\n }\n ],\n \"exposeApprovalProgress\": True,\n \"organizationObjectId\": \"string\",\n \"resourceRequest\": True,\n \"userApprovalEmail\": True,\n \"userRequestEmail\": True\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/logo' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" } ] }, - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/provision": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/provision/activate": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - }, - { - "in": "header", - "name": "X-Requested-With", - "required": false, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/provision/reactivate": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - }, - { - "in": "header", - "name": "X-Requested-With", - "required": false, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/sso": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/usergroups": { - "get": { - "description": "This endpoint will return all Users Groups bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ApplicationTraverseUserGroup_Get", + "put": { + "description": "Endpoint for updating a access workflow settings for an organization", + "operationId": "WorkflowSettings_Set", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:filter:filter" + "in": "body", + "name": "body", + "required": true, + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.UpdateAccessWorkflowSettingsRequest" + } } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/GraphObjectWithPaths" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.UpdateAccessWorkflowSettingsResponse" } } }, @@ -10841,58 +12462,48 @@ "x-api-key": [] } ], - "summary": "List the User Groups bound to an Application", + "summary": "Update Access Workflow Settings", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/approvalflowsettings \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\npayload = {\n \"adminApprovalEmail\": True,\n \"channelEvents\": [\n {\n \"channelObjectId\": \"string\",\n \"eventTypes\": [\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]\n }\n ],\n \"exposeApprovalProgress\": True,\n \"organizationObjectId\": \"string\",\n \"resourceRequest\": True,\n \"userApprovalEmail\": True,\n \"userRequestEmail\": True\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" } ] - }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/users": { + "/approversprogress/{id}": { "get": { - "description": "This endpoint will return all Users bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ApplicationTraverseUser_Get", + "description": "Endpoint for getting the approval progress of a access request", + "operationId": "WorkflowAccessRequestProgress_Get", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" + "in": "path", + "name": "id", + "required": true, + "type": "string" }, { - "$ref": "#/parameters/trait:filter:filter" + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/GraphObjectWithPaths" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.GetAccessRequestApprovalProgressResponse" } } }, @@ -10901,41 +12512,24 @@ "x-api-key": [] } ], - "summary": "List the Users bound to an Application", + "summary": "Get Approval flow progress by id for admin portal", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approversprogress/{id}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approversprogress/{id}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approversprogress/{id}?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] - }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/approvalflowrequest": {}, - "/approvalflowrequest/{id}": {}, - "/approvalflows": {}, - "/approvalflows/{approvalFlowId}": {}, - "/approvalflowsettings": {}, - "/approversprogress/{id}": {}, "/assets/accessories": {}, "/assets/accessories/batch": {}, "/assets/accessories/{id}": {}, @@ -10990,15 +12584,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0&filter=&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0&filter=&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11031,15 +12625,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/authn/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/authn/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" } ] }, @@ -11069,15 +12663,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method DELETE -Headers $headers" } ] }, @@ -11102,15 +12696,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method GET -Headers $headers" } ] }, @@ -11152,15 +12746,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" } ] }, @@ -11216,15 +12810,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" + "source": "curl --request PATCH \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"id\": \"string\",\n \"lastname\": \"string\",\n \"organization\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"id\": \"string\",\n \"lastname\": \"string\",\n \"organization\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" } ] }, @@ -11281,15 +12875,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'creation-source: jumpcloud:bulk' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "curl --request POST \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'creation-source: jumpcloud:bulk' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"creation-source\": \"jumpcloud:bulk\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"creation-source\": \"jumpcloud:bulk\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"creation-source\", \"jumpcloud:bulk\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"creation-source\", \"jumpcloud:bulk\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" } ] }, @@ -11330,15 +12924,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11396,15 +12990,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&filter=&skip=0&userid=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&skip=0&userid=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\nquerystring = {\"limit\":\"10\",\"filter\":\"\",\"skip\":\"0\",\"userid\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"userid\":\"SOME_STRING_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&filter=&skip=0&userid=SOME_STRING_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&skip=0&userid=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, @@ -11441,15 +13035,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\npayload = {\n \"activation_email_override\": \"string\",\n \"send_activation_emails\": True,\n \"start_date\": \"2019-08-24T14:15:22Z\",\n \"state\": \"ACTIVATED\",\n \"user_ids\": [\"string\"]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\npayload = {\n \"activation_email_override\": \"string\",\n \"send_activation_emails\": True,\n \"start_date\": \"2019-08-24T14:15:22Z\",\n \"state\": \"ACTIVATED\",\n \"user_ids\": [\"string\"]\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" } ] }, @@ -11549,15 +13143,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates/{id}' -Method DELETE -Headers $headers" } ] }, @@ -11620,15 +13214,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11667,15 +13261,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/commands/{command_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/commands/{command_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -11718,15 +13312,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11779,15 +13373,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11876,15 +13470,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/customemails \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/customemails \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" } ] } @@ -11908,15 +13502,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method DELETE -Headers $headers" } ] }, @@ -11941,15 +13535,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method GET -Headers $headers" } ] }, @@ -11990,15 +13584,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" } ] }, @@ -12084,15 +13678,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/directories?fields=&limit=10&sort=&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/directories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/directories\"\n\nquerystring = {\"fields\":\"\",\"limit\":\"10\",\"sort\":\"\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/directories?fields=&limit=10&sort=&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/directories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -12188,15 +13782,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method GET -Headers $headers" } ] }, @@ -12221,15 +13815,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method POST -Headers $headers" } ] }, @@ -12262,15 +13856,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method GET -Headers $headers" } ] }, @@ -12311,15 +13905,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" } ] }, @@ -12350,15 +13944,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method DELETE -Headers $headers" } ] }, @@ -12383,15 +13977,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method GET -Headers $headers" } ] }, @@ -12438,15 +14032,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" } ] }, @@ -12477,15 +14071,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method DELETE -Headers $headers" } ] }, @@ -12510,15 +14104,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method GET -Headers $headers" } ] }, @@ -12535,6 +14129,8 @@ "duo" ] }, + "/feature-settings": {}, + "/feature-settings/{feature_name}/{setting_name}": {}, "/featureTrials/{feature_code}": {}, "/geolocation/countries": { "x-functionalities-tags": [ @@ -12553,13 +14149,14 @@ "/google-emm/enterprises/{enterpriseId}": {}, "/google-emm/enterprises/{enterpriseId}/connection-status": {}, "/google-emm/enterprises/{enterpriseId}/enrollment-tokens/{tokenId}": {}, + "/google-emm/enterprises/{enterpriseId}/generate-upgrade-url": {}, "/google-emm/enterprises/{enterpriseObjectId}/devices": {}, "/google-emm/enterprises/{enterpriseObjectId}/enrollment-tokens": {}, "/google-emm/signup-urls": {}, "/google-emm/web-tokens": {}, "/groups": { "get": { - "description": "This endpoint returns all Groups that exist in your organization.\n\n#### Available filter fields:\n - `name`\n - `disabled`\n - `type`\n\n#### Sample Request\n\n```\n curl -X GET \\\n https://console.jumpcloud.com/api/v2/groups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "description": "This endpoint returns all Groups that exist in your organization.\n\n#### Available filter fields:\n - `name`\n - `disabled`\n - `type`\n - `memberQueryErrorFlags`\n\n#### Sample Request\n\n```\n curl -X GET \\\n https://console.jumpcloud.com/api/v2/groups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", "operationId": "Group_List", "parameters": [ { @@ -12601,15 +14198,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/groups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/groups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-unfiltered-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/groups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/groups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-unfiltered-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/groups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-unfiltered-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/groups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -12658,15 +14255,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -12705,15 +14302,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -12938,15 +14535,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13118,15 +14715,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13178,15 +14775,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13225,15 +14822,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method GET -Headers $headers" } ] }, @@ -13270,15 +14867,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'content-type: application/json' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"importFilter\": \"string\",\n \"name\": \"string\",\n \"organizationObjectId\": \"string\",\n \"userLockoutAction\": \"suspend\",\n \"userPasswordExpirationAction\": \"suspend\"\n}\nheaders = {\"content-type\": \"application/json\"}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"importFilter\": \"string\",\n \"name\": \"string\",\n \"organizationObjectId\": \"string\",\n \"userLockoutAction\": \"suspend\",\n \"userPasswordExpirationAction\": \"suspend\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" } ] }, @@ -13429,15 +15026,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0&filter=&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0&filter=&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13470,15 +15067,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/iplists \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/iplists \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" } ] }, @@ -13508,15 +15105,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method DELETE -Headers $headers" } ] }, @@ -13541,15 +15138,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method GET -Headers $headers" } ] }, @@ -13590,15 +15187,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" } ] }, @@ -13631,15 +15228,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" } ] }, @@ -13719,15 +15316,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13760,15 +15357,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method GET -Headers $headers" } ] }, @@ -13838,15 +15435,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\npayload = {\n \"id\": \"string\",\n \"userLockoutAction\": \"disable\",\n \"userPasswordExpirationAction\": \"disable\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\npayload = {\n \"id\": \"string\",\n \"userLockoutAction\": \"disable\",\n \"userPasswordExpirationAction\": \"disable\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" } ] } @@ -13889,15 +15486,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13939,15 +15536,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -13999,15 +15596,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14049,15 +15646,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"sid\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"sid\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\npayload = {\n \"name\": \"string\",\n \"sid\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\npayload = {\n \"name\": \"string\",\n \"sid\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"sid\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"sid\":\"string\"}'" } ] }, @@ -14093,15 +15690,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method DELETE -Headers $headers" } ] }, @@ -14129,15 +15726,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method GET -Headers $headers" } ] }, @@ -14272,15 +15869,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14335,15 +15932,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14424,15 +16021,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method GET -Headers $headers" } ] }, @@ -14477,15 +16074,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" } ] } @@ -14525,15 +16122,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14572,15 +16169,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -14680,15 +16277,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' \\\n --header 'ConsistencyLevel: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users\"\n\nquerystring = {\"top\":\"SOME_INTEGER_VALUE\",\"skipToken\":\"SOME_STRING_VALUE\",\"filter\":\"SOME_STRING_VALUE\",\"search\":\"SOME_STRING_VALUE\",\"orderby\":\"SOME_STRING_VALUE\",\"count\":\"SOME_BOOLEAN_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users\"\n\nquerystring = {\"top\":\"SOME_INTEGER_VALUE\",\"skipToken\":\"SOME_STRING_VALUE\",\"filter\":\"SOME_STRING_VALUE\",\"search\":\"SOME_STRING_VALUE\",\"orderby\":\"SOME_STRING_VALUE\",\"count\":\"SOME_BOOLEAN_VALUE\"}\n\nheaders = {\n \"ConsistencyLevel\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"ConsistencyLevel\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' -Method GET -Headers $headers" } ] }, @@ -14754,15 +16351,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14934,15 +16531,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14972,6 +16569,12 @@ }, { "$ref": "#/parameters/trait:filter:filter" + }, + { + "description": "Include sync status for users", + "in": "query", + "name": "syncStatus", + "type": "boolean" } ], "responses": { @@ -14994,15 +16597,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&syncStatus=SOME_BOOLEAN_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"syncStatus\":\"SOME_BOOLEAN_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&syncStatus=SOME_BOOLEAN_VALUE' -Method GET -Headers $headers" } ] }, @@ -15321,15 +16924,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15362,15 +16965,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"template\": {\"id\": \"string\"},\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"template\": {\"id\": \"string\"},\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" } ] }, @@ -15400,15 +17003,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method DELETE -Headers $headers" } ] }, @@ -15433,15 +17036,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method GET -Headers $headers" } ] }, @@ -15483,15 +17086,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" } ] }, @@ -15537,15 +17140,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15584,15 +17187,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -15644,15 +17247,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15710,15 +17313,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15775,15 +17378,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15834,15 +17437,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15897,15 +17500,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15966,15 +17569,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16007,15 +17610,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" } ] }, @@ -16058,15 +17661,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16105,15 +17708,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -16169,15 +17772,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16216,15 +17819,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"policy\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"policy\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" } ] }, @@ -16271,15 +17874,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16332,15 +17935,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16392,15 +17995,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16442,15 +18045,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method DELETE -Headers $headers" } ] }, @@ -16475,15 +18078,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method GET -Headers $headers" } ] }, @@ -16525,15 +18128,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" } ] }, @@ -16582,15 +18185,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policyresults?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policyresults?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16620,15 +18223,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policyresults/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policyresults/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults/{id}' -Method GET -Headers $headers" } ] }, @@ -16686,15 +18289,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policytemplates?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policytemplates?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16724,15 +18327,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policytemplates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policytemplates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates/{id}' -Method GET -Headers $headers" } ] }, @@ -16864,15 +18467,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"sortIgnoreCase\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17156,15 +18759,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&sort=&limit=10&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&sort=&limit=10&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -17254,15 +18857,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"sortIgnoreCase\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17301,6 +18904,28 @@ "mtp-billing-information" ] }, + "/providers/{provider_id}/policygroups/{group_id}/associations": { + "parameters": [ + { + "description": "The ID of the provider", + "in": "path", + "name": "provider_id", + "required": true, + "type": "string" + }, + { + "description": "The ID of the policy group", + "in": "path", + "name": "group_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "groups", + "mtp-account-overview" + ] + }, "/providers/{provider_id}/policygrouptemplates": { "parameters": [ { @@ -17352,6 +18977,50 @@ "policy-group-templates" ] }, + "/providers/{provider_id}/systemgroups/{group_id}/associations": { + "parameters": [ + { + "description": "The ID of the provider", + "in": "path", + "name": "provider_id", + "required": true, + "type": "string" + }, + { + "description": "The ID of the system group", + "in": "path", + "name": "group_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "groups", + "mtp-account-overview" + ] + }, + "/providers/{provider_id}/usergroups/{group_id}/associations": { + "parameters": [ + { + "description": "The ID of the provider", + "in": "path", + "name": "provider_id", + "required": true, + "type": "string" + }, + { + "description": "The ID of the user group", + "in": "path", + "name": "group_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "groups", + "mtp-account-overview" + ] + }, "/provision/client/verify": { "x-functionalities-tags": [ "mtp-validate-config" @@ -17437,15 +19106,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17484,15 +19153,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -17535,15 +19204,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17595,15 +19264,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17643,6 +19312,8 @@ ] }, "/saas-management/application-catalog/{catalog_application_id}": {}, + "/saas-management/application-licenses": {}, + "/saas-management/application-licenses/{application_id}": {}, "/saas-management/applications": {}, "/saas-management/applications/{application_id}": {}, "/saas-management/applications/{application_id}/accounts": {}, @@ -17653,6 +19324,8 @@ "sample-data" ] }, + "/saved-views": {}, + "/saved-views/{id}": {}, "/scope-groups": {}, "/service-accounts": {}, "/service-accounts/{service_account_id}": {}, @@ -17704,15 +19377,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17745,15 +19418,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" } ] }, @@ -17787,15 +19460,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method DELETE -Headers $headers" } ] }, @@ -17820,15 +19493,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method GET -Headers $headers" } ] }, @@ -17910,15 +19583,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" } ] }, @@ -17962,15 +19635,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18009,15 +19682,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] } @@ -18105,15 +19778,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18166,15 +19839,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18227,15 +19900,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18316,7 +19989,7 @@ }, "/systemgroups": { "get": { - "description": "This endpoint returns all System Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/systemgroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "description": "This endpoint returns all System Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n - `memberQueryErrorFlags`\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/systemgroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", "operationId": "SystemGroup_List", "parameters": [ { @@ -18369,15 +20042,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18410,15 +20083,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -18461,15 +20134,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18508,15 +20181,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"command\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"command\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" } ] }, @@ -18562,15 +20235,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, @@ -18634,15 +20307,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18687,15 +20360,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -18741,15 +20414,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0&sort=&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0&sort=&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18801,15 +20474,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18861,15 +20534,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18926,15 +20599,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18986,15 +20659,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -19036,15 +20709,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method DELETE -Headers $headers" } ] }, @@ -19076,15 +20749,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method GET -Headers $headers" } ] }, @@ -19133,15 +20806,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -19187,15 +20860,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf?filter=&skip=0&sort=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf\"\n\nquerystring = {\"filter\":\"\",\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf?filter=&skip=0&sort=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19241,15 +20914,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?filter=&skip=0&sort=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions\"\n\nquerystring = {\"filter\":\"\",\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?filter=&skip=0&sort=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19295,15 +20968,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?filter=&skip=0&sort=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths\"\n\nquerystring = {\"filter\":\"\",\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?filter=&skip=0&sort=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19349,15 +21022,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19403,15 +21076,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/apps\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/apps\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19457,15 +21130,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19507,15 +21180,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19557,15 +21230,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19611,15 +21284,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/battery\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/battery\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19665,15 +21338,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19719,15 +21392,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19773,15 +21446,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/certificates\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/certificates\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19823,15 +21496,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chassis_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chassis_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19877,15 +21550,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19931,15 +21604,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/connectivity\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/connectivity\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19985,15 +21658,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/crashes\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/crashes\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20039,15 +21712,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20093,15 +21766,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20147,15 +21820,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20201,15 +21874,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20255,15 +21928,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20309,15 +21982,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20363,15 +22036,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/groups\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/groups\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20417,15 +22090,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20471,15 +22144,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20525,15 +22198,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_details\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_details\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20579,15 +22252,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/kernel_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/kernel_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20633,15 +22306,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/launchd\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/launchd\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20687,15 +22360,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/linux_packages\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/linux_packages\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20742,15 +22415,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20796,15 +22469,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logical_drives\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logical_drives\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20850,15 +22523,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/managed_policies\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/managed_policies\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20904,15 +22577,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/mounts\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/mounts\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20958,15 +22631,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/os_version\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/os_version\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21012,15 +22685,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/patches\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/patches\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21066,15 +22739,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/programs\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/programs\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21120,15 +22793,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/python_packages\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/python_packages\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21174,15 +22847,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21228,15 +22901,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21278,15 +22951,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/secureboot\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/secureboot\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21332,15 +23005,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/services\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/services\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21386,15 +23059,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shadow\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shadow\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21440,15 +23113,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_folders\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_folders\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21489,15 +23162,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_resources\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_resources\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&limit=10' -Method GET -Headers $headers" } ] } @@ -21540,15 +23213,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21594,15 +23267,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sip_config\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sip_config\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21648,15 +23321,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/startup_items\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/startup_items\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21702,15 +23375,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_controls\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_controls\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21756,15 +23429,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21806,15 +23479,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/tpm_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/tpm_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21860,15 +23533,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/uptime\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/uptime\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21914,15 +23587,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/usb_devices\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/usb_devices\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21968,15 +23641,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_groups\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_groups\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22022,15 +23695,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22072,15 +23745,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/userassist\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/userassist\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22126,15 +23799,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/users\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/users\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22180,15 +23853,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22234,15 +23907,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_status\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_status\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22289,15 +23962,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22343,15 +24016,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22647,6 +24320,7 @@ }, "/systems/views": {}, "/systems/{systemObjectId}/aggregated-policy-stats": {}, + "/systems/{systemObjectId}/transfer": {}, "/systems/{system_id}/associations": { "get": { "description": "This endpoint returns the _direct_ associations of a System.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Systems and Users.\n\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/systems/{System_ID}/associations?targets=user \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n\n```", @@ -22688,15 +24362,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -22741,15 +24415,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/associations \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"command\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"command\"\n}\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" } ] }, @@ -22795,15 +24469,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, @@ -22848,15 +24522,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey' -Method GET -Headers $headers" } ] }, @@ -22916,15 +24590,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -22973,15 +24647,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23040,15 +24714,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23107,15 +24781,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23174,15 +24848,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23241,15 +24915,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23273,10 +24947,54 @@ "settings-feature-trial" ] }, - "/userapprovalrequest": {}, + "/userapprovalrequest": { + "post": { + "description": "Endpoint for user approval", + "operationId": "WorkflowUserApprovalRequest_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "required": true, + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.UserApprovalRequestRequest" + } + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.UserApprovalRequestResponse" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "User Approval Access Request", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/userapprovalrequest \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"approvedDuration\":\"string\",\"id\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/userapprovalrequest\"\n\npayload = {\n \"approvedDuration\": \"string\",\n \"id\": \"string\",\n \"organizationObjectId\": \"string\",\n \"remarks\": \"string\",\n \"status\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/userapprovalrequest' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"approvedDuration\":\"string\",\"id\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" + } + ] + } + }, "/usergroups": { "get": { - "description": "This endpoint returns all User Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n - `suggestionCounts.add`\n - `suggestionCounts.remove`\n - `suggestionCounts.total`\n - `attributes.sudo.enabled`\n - `attributes.sudo.withoutPassword`\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/usergroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "description": "This endpoint returns all User Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n - `memberQueryErrorFlags`\n - `suggestionCounts.add`\n - `suggestionCounts.remove`\n - `suggestionCounts.total`\n - `attributes.sudo.enabled`\n - `attributes.sudo.withoutPassword`\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/usergroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", "operationId": "UserGroup_List", "parameters": [ { @@ -23315,15 +25033,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23356,15 +25074,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -23407,15 +25125,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23468,15 +25186,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23525,15 +25243,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23572,15 +25290,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" } ] }, @@ -23624,15 +25342,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23685,15 +25403,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23746,15 +25464,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23818,15 +25536,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23865,15 +25583,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -23887,7 +25605,7 @@ "operationId": "UserGroupMembership_Get", "parameters": [ { - "$ref": "#/parameters/trait:filter:filter" + "$ref": "#/parameters/trait:filter:filterUserGroupMembership" }, { "$ref": "#/parameters/trait:limit:limit" @@ -23919,15 +25637,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23979,15 +25697,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24040,15 +25758,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24106,15 +25824,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24167,15 +25885,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24218,15 +25936,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method DELETE -Headers $headers" } ] }, @@ -24251,15 +25969,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method GET -Headers $headers" } ] }, @@ -24301,15 +26019,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -24353,15 +26071,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?filter=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?filter=&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24413,15 +26131,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24473,15 +26191,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24520,15 +26238,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" } ] }, @@ -24571,15 +26289,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24642,15 +26360,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24702,15 +26420,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24733,7 +26451,7 @@ "operationId": "UserMember_Get", "parameters": [ { - "$ref": "#/parameters/trait:filter:filter" + "$ref": "#/parameters/trait:filter:filterUserMemberOf" }, { "$ref": "#/parameters/trait:limit:limit" @@ -24765,15 +26483,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/memberof\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/memberof\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24825,15 +26543,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24872,15 +26590,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints' -Method GET -Headers $headers" } ] }, @@ -24925,15 +26643,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method DELETE -Headers $headers" } ] }, @@ -24958,15 +26676,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method GET -Headers $headers" } ] }, @@ -25033,15 +26751,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"state\":\"active\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"state\":\"active\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\npayload = {\n \"name\": \"string\",\n \"state\": \"active\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\npayload = {\n \"name\": \"string\",\n \"state\": \"active\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"state\":\"active\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"state\":\"active\"}'" } ] } @@ -25081,15 +26799,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25141,15 +26859,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25198,15 +26916,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25343,15 +27061,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays?fields=&limit=10&skip=0&sort=&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\nquerystring = {\"fields\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays?fields=&limit=10&skip=0&sort=&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25384,15 +27102,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\npayload = {\n \"auth\": {\n \"basic\": {\n \"password\": \"in tempor ipsum quis\",\n \"username\": \"mollit ex\"\n },\n \"oauth\": {\"code\": \"non laborum dolore\"}\n },\n \"name\": \"dolore tempor\",\n \"reportUrl\": \"est sit laboris\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\npayload = {\n \"auth\": {\n \"basic\": {\n \"password\": \"in tempor ipsum quis\",\n \"username\": \"mollit ex\"\n },\n \"oauth\": {\"code\": \"non laborum dolore\"}\n },\n \"name\": \"dolore tempor\",\n \"reportUrl\": \"est sit laboris\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" } ] }, @@ -25422,15 +27140,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method GET -Headers $headers" } ] }, @@ -25471,15 +27189,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"reportUrl\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"reportUrl\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"reportUrl\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"reportUrl\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"reportUrl\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"reportUrl\":\"string\"}'" } ] }, @@ -25519,15 +27237,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25568,15 +27286,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method DELETE -Headers $headers" } ] }, @@ -25614,15 +27332,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\npayload = {\"auth\": {\n \"basic\": {\n \"password\": \"mollit cillum\",\n \"username\": \"veniam dolore\"\n },\n \"oauth\": {\"code\": \"minim ad ea dolor\"}\n }}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\npayload = {\"auth\": {\n \"basic\": {\n \"password\": \"mollit cillum\",\n \"username\": \"veniam dolore\"\n },\n \"oauth\": {\"code\": \"minim ad ea dolor\"}\n }}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" } ] }, @@ -25671,15 +27389,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import\"\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import\"\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" } ] }, @@ -25743,15 +27461,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs index 66f53e887..d09ff8a4a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/Module.cs @@ -212,10 +212,10 @@ protected async Task AddAuthHeaders(HttpRequestMessage requ request.Headers.Add("Accept", "application/json"); } // If headers do not contain an "UserAgent" with the correct value fix it - if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.V2/0.1.2") + if (request.Headers.UserAgent.ToString() != "JumpCloud_JumpCloud.PowerShell.SDK.V2/0.2.0") { request.Headers.UserAgent.Clear(); - request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.V2/0.1.2"); + request.Headers.UserAgent.ParseAdd("JumpCloud_JumpCloud.PowerShell.SDK.V2/0.2.0"); } // // request.Headers.Add("Content-Type", "application/json"); System.Net.Http.HttpResponseMessage response = await next.SendAsync(request, callback); diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 index cd35f1aac..377195fda 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 @@ -51,6 +51,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -69,7 +70,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md #> Function Clear-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 index 66ff09293..04cda5446 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 @@ -46,6 +46,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -64,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md #> Function Clear-JcSdkAppleMdmDeviceActivationLock { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 index 3d544993b..797b2ecfd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md #> Function Get-JcSdkActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 index 89c7ed4fe..e0db67b83 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 @@ -64,6 +64,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -82,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md #> Function Get-JcSdkActiveDirectoryAgent { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 index 70921e7ab..675bec6f3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md #> Function Get-JcSdkActiveDirectoryAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 index 0435e6d69..5dffbbaea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md #> Function Get-JcSdkActiveDirectoryTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 index cac43e049..bc387bec9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md #> Function Get-JcSdkActiveDirectoryTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 index c26854694..f82074a9a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IAdministratorOrganizationLink .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md #> Function Get-JcSdkAdministratorOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 index d6a1c85d1..f3f6c61b8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IAdministratorOrganizationLink .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md #> Function Get-JcSdkAdministratorOrganizationLink { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 index a08360833..06cfc0f08 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 @@ -33,7 +33,7 @@ Get Apple MDM Server information within a JumpCloud Tenant .Outputs JumpCloud.SDK.V2.Models.IAppleMdm .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md #> Function Get-JcSdkAppleMdm { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 index 469a67611..1688122d9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 @@ -102,6 +102,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -120,7 +121,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md #> Function Get-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 index 15e9c056d..960f2a408 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 @@ -35,7 +35,7 @@ Get an enrollment profile by Id .Outputs JumpCloud.SDK.V2.Models.IAppleMdm .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md #> Function Get-JcSdkAppleMdmEnrollmentProfile { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 index 2ce79f9ad..b0d7577dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 @@ -59,6 +59,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -77,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md #> Function Get-JcSdkApplicationAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 index 19791e6f7..7ab068e4b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md #> Function Get-JcSdkApplicationTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 index 2c0f77c90..109c7c6ad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md #> Function Get-JcSdkApplicationTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 index e247cd8a9..d8b79932d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 @@ -82,6 +82,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -100,7 +101,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md #> Function Get-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 index b46d95481..572fc5c8a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IScheduledUserstateResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md #> Function Get-JcSdkBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 index f5ffb41c3..0834d68e8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 @@ -57,6 +57,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -75,7 +76,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md #> Function Get-JcSdkBulkUsersResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 index 62d655bb0..10720c54c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md #> Function Get-JcSdkCommandAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 index 2b62d9e10..f69e6a5c6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md #> Function Get-JcSdkCommandTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 index 1353833f1..6f6e45c8a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md #> Function Get-JcSdkCommandTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 index f523b336c..4da32a11c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 @@ -40,6 +40,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -58,7 +59,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md #> Function Get-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 index af9cbdd95..76fd852a8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ICustomEmailTemplate .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md #> Function Get-JcSdkCustomEmailTemplate { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 index 09f7292c5..57b59034d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 @@ -41,7 +41,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IDirectory .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md #> Function Get-JcSdkDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 index ae08f3c93..d39032a6e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 @@ -56,6 +56,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -74,7 +75,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md #> Function Get-JcSdkDuoAccount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 index 92645674d..961e98924 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 @@ -60,6 +60,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -78,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md #> Function Get-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 index 48c3f6e22..15874cd70 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 @@ -57,6 +57,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -75,7 +76,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md #> Function Get-JcSdkGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 index d8b8034ee..d349ec025 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md #> Function Get-JcSdkGSuiteAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 index 5e4e835f3..4bdb011c2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md #> Function Get-JcSdkGSuiteTranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 index a21e27995..2fa9a5918 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md #> Function Get-JcSdkGSuiteTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 index ffefac634..e9402022b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md #> Function Get-JcSdkGSuiteTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 index 5b36ccce5..99a529740 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsC7Pl4LGsuitesGsuiteIdImportUsersGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md #> Function Get-JcSdkGSuiteUsersToImport { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 index 37bcbcb8c..5cc6939d4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 @@ -6,6 +6,7 @@ This endpoint returns all Groups that exist in your organization. - `name` - `disabled` - `type` + - `memberQueryErrorFlags` #### Sample Request @@ -23,6 +24,7 @@ This endpoint returns all Groups that exist in your organization. - `name` - `disabled` - `type` + - `memberQueryErrorFlags` #### Sample Request @@ -55,7 +57,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IGroup .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md #> Function Get-JcSdkGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 index 373ac2a79..22e0de0ba 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsKa8FhwGsuitesGsuiteIdImportJumpcloudusersGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md #> Function Get-JcSdkGsuiteUsersToImportFormatted { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 index c5fdaf90d..9e4b82371 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 @@ -60,6 +60,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -78,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md #> Function Get-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 index c6c28c909..bdccf7625 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md #> Function Get-JcSdkLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 index 5c33ad134..fee5d6948 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md #> Function Get-JcSdkLdapServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 index b4e8d4a3a..ee3bb9a4e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 @@ -60,6 +60,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -78,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md #> Function Get-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 index bbec1c0b9..04beb8324 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md #> Function Get-JcSdkLdapServerTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 index c1cd23629..449871beb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md #> Function Get-JcSdkLdapServerTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 index c93819aa7..bb4b3be52 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 @@ -41,7 +41,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsUbbqf1BulkUserstatesEventlistNextGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md #> Function Get-JcSdkNextScheduledBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 index 6d4dc0985..9aec1ee59 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 @@ -63,6 +63,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -81,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md #> Function Get-JcSdkOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 index 5b7b19126..e806ee163 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 @@ -63,6 +63,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -81,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md #> Function Get-JcSdkOffice365Association { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 index e48ac5bfe..d6032031e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md #> Function Get-JcSdkOffice365TranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 index 5d25353da..b3d0ae04a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md #> Function Get-JcSdkOffice365TraverseUser { @@ -133,6 +134,12 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/Jum # **EX:** `GET /api/v2/groups?filter=name:eq:Test+Group` ${Filter}, + [Parameter()] + [JumpCloud.SDK.V2.Category('Query')] + [System.Management.Automation.SwitchParameter] + # Include sync status for users + ${SyncStatus}, + [Parameter(DontShow)] [JumpCloud.SDK.V2.Category('Runtime')] [System.Management.Automation.SwitchParameter] diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 index efda12834..039e47caf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md #> Function Get-JcSdkOffice365TraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 index be76309b4..dc1c30bff 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 @@ -22,7 +22,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPaths1J0ThkrOffice365SOffice365IdImportUsersGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md #> Function Get-JcSdkOffice365UsersToImport { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 index 36a9e51f6..6a8d7d71e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 @@ -48,7 +48,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPolicyResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md #> Function Get-JcSdkOrganizationPolicyResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 index 6da110262..26ef94728 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 @@ -84,6 +84,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -102,7 +103,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md #> Function Get-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 index 79c852f91..78806130a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 @@ -59,6 +59,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -77,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md #> Function Get-JcSdkPolicyAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 index 78e7912e4..ba65025e8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 @@ -64,6 +64,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -82,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md #> Function Get-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 index 758da874d..61bd4dec4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 @@ -48,7 +48,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IGraphConnection .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md #> Function Get-JcSdkPolicyGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 index 18b1c33d8..9a29d93c9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md #> Function Get-JcSdkPolicyGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 index 04a1fe2e5..0a5857715 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md #> Function Get-JcSdkPolicyGroupMembership { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 index 57106b2d1..ac066f1b5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md #> Function Get-JcSdkPolicyGroupTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 index 0f1c96ae6..3207cd429 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md #> Function Get-JcSdkPolicyGroupTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 index 77ad50a89..213139c1a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 @@ -74,6 +74,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -92,7 +93,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md #> Function Get-JcSdkPolicyResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 index fe959693f..88fbc07a4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 @@ -48,7 +48,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPolicyResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md #> Function Get-JcSdkPolicyStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 index 73cc892f7..19c1d0fb2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 @@ -78,6 +78,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -96,7 +97,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md #> Function Get-JcSdkPolicyTemplate { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 index accec7ae7..e7cd8626b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md #> Function Get-JcSdkPolicyTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 index 8061d66c0..01c7f3295 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md #> Function Get-JcSdkPolicyTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 index ac41f47f6..5bcf5269b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsYwlyndProvidersProviderIdAdministratorsGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md #> Function Get-JcSdkProviderAdministrator { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 index 28a2fa7f2..53d9ace52 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPaths1O3J7V8ProvidersProviderIdOrganizationsGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md #> Function Get-JcSdkProviderOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 index 97dba22ad..4a310521b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 @@ -36,6 +36,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -54,7 +55,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md #> Function Get-JcSdkProvidersInvoice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 index cf50227d3..fc816cc28 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 @@ -59,6 +59,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -77,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md #> Function Get-JcSdkRadiusServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 index 24279d868..eadf6bc67 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md #> Function Get-JcSdkRadiusServerTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 index e1a0b66cf..76a8d0c48 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md #> Function Get-JcSdkRadiusServerTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 index 1fe608cbe..1b47f020c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 @@ -60,6 +60,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -78,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md #> Function Get-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 index 7799724e5..3890f67e2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 @@ -59,6 +59,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -77,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md #> Function Get-JcSdkSoftwareAppAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 index b5c998c0d..a0055c3b8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 @@ -56,6 +56,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -74,7 +75,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md #> Function Get-JcSdkSoftwareAppStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 index 3602bd0fe..9f1658a15 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md #> Function Get-JcSdkSoftwareAppTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 index 34df6984f..141be9a5c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md #> Function Get-JcSdkSoftwareAppTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 index 2b0d7e82d..9346fa074 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 @@ -43,7 +43,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISubscription .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md #> Function Get-JcSdkSubscription { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 index f60c5ccba..5122d8eae 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 @@ -63,6 +63,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -81,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md #> Function Get-JcSdkSystemAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 index 58caed199..f8d5e66cf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 @@ -28,6 +28,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -46,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md #> Function Get-JcSdkSystemFdeKey { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 index 975c909ff..d8df51a5f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 @@ -74,6 +74,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -92,7 +93,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md #> Function Get-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 index 8859ee6cc..d62de0dc8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md #> Function Get-JcSdkSystemGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 index a0170756f..71b3f640b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 @@ -57,6 +57,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -75,7 +76,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md #> Function Get-JcSdkSystemGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 index 6c3f8d384..00cc45387 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 @@ -54,6 +54,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -72,7 +73,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md #> Function Get-JcSdkSystemGroupMembership { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 index f6dcf62a3..2005c3db0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 @@ -77,6 +77,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -95,7 +96,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md #> Function Get-JcSdkSystemGroupTraverseCommand { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 index 044751271..8aa22b8ad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 @@ -72,6 +72,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -90,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md #> Function Get-JcSdkSystemGroupTraversePolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 index 6d6676314..7c980c6c3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md #> Function Get-JcSdkSystemGroupTraversePolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 index 7358ea817..af0162e72 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md #> Function Get-JcSdkSystemGroupTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 index e71053a68..85217274e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md #> Function Get-JcSdkSystemGroupTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 index 809c93c2e..e4c83dc49 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAlf .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md #> Function Get-JcSdkSystemInsightAlf { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 index 40b66facd..e71530bd0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAlfExceptions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md #> Function Get-JcSdkSystemInsightAlfException { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 index bf7fc66e3..e668b4c0a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 @@ -22,7 +22,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAlfExplicitAuths .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md #> Function Get-JcSdkSystemInsightAlfExplicitAuth { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 index 7dc436f20..168d4333a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 @@ -46,7 +46,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsApps .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md #> Function Get-JcSdkSystemInsightApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 index 7b50a33e1..b19a3afaa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAppcompatShims .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md #> Function Get-JcSdkSystemInsightAppCompatShim { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 index 0c6c3d873..90e0188ee 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAuthorizedKeys .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md #> Function Get-JcSdkSystemInsightAuthorizedKey { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 index f5d93a4e4..0e04aa720 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAzureInstanceMetadata .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md #> Function Get-JcSdkSystemInsightAzureInstanceMetadata { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 index 4f3b5d6f3..1cc77fd75 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 @@ -24,7 +24,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAzureInstanceTags .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md #> Function Get-JcSdkSystemInsightAzureInstanceTag { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 index e0d62a19f..5299adf8d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 @@ -39,7 +39,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsBattery .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md #> Function Get-JcSdkSystemInsightBattery { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 index 3da742eda..d22e01bf3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsBitlockerInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md #> Function Get-JcSdkSystemInsightBitlockerInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 index ca30ea688..b29a96fc1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsBrowserPlugins .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md #> Function Get-JcSdkSystemInsightBrowserPlugin { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 index deea6ee5f..a981de718 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 @@ -41,7 +41,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsCertificates .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md #> Function Get-JcSdkSystemInsightCertificate { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 index 64bc0c083..3452a4170 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 @@ -34,7 +34,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsChassisInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md #> Function Get-JcSdkSystemInsightChassisInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 index bb0718c7d..8bf8e9a64 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsChromeExtensions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md #> Function Get-JcSdkSystemInsightChromeExtension { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 index fd221f6a3..746291ca1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 @@ -30,7 +30,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsConnectivity .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md #> Function Get-JcSdkSystemInsightConnectivity { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 index 0cf3299e5..9f178ea39 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsCrashes .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md #> Function Get-JcSdkSystemInsightCrash { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 index 8a9aabae3..2189d97d3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsCupsDestinations .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md #> Function Get-JcSdkSystemInsightCupDestination { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 index 45fc79afe..785faa654 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsDiskEncryption .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md #> Function Get-JcSdkSystemInsightDiskEncryption { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 index 10c50ccdd..c9da51751 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsDiskInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md #> Function Get-JcSdkSystemInsightDiskInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 index 84aa72d5a..f521215c5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 @@ -26,7 +26,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsDnsResolvers .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md #> Function Get-JcSdkSystemInsightDnsResolver { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 index 8c7182fbc..8a6d19573 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsEtcHosts .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md #> Function Get-JcSdkSystemInsightEtcHost { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 index a54c0dea1..669839a1b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 @@ -35,7 +35,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsFirefoxAddons .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md #> Function Get-JcSdkSystemInsightFirefoxAddon { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 index 438b4ec7d..6e5a7a578 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 @@ -26,7 +26,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsGroups .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md #> Function Get-JcSdkSystemInsightGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 index ad9118f68..549b890f0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsIeExtensions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md #> Function Get-JcSdkSystemInsightIeExtension { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 index 2f8507782..de00e8de9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsInterfaceAddresses .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md #> Function Get-JcSdkSystemInsightInterfaceAddress { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 index 761bcf3c6..4b940effc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 @@ -55,7 +55,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsInterfaceDetails .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md #> Function Get-JcSdkSystemInsightInterfaceDetail { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 index bf14f2d72..43e3a0099 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsKernelInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md #> Function Get-JcSdkSystemInsightKernelInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 index 7df764526..96a91b24f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 @@ -42,7 +42,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLaunchd .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md #> Function Get-JcSdkSystemInsightLaunchd { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 index 3c4e3001b..37dd3869c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 @@ -39,7 +39,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLinuxPackages .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md #> Function Get-JcSdkSystemInsightLinuxPackage { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 index 997dc16f0..136ed03aa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLoggedInUsers .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md #> Function Get-JcSdkSystemInsightLoggedinUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 index 067284dc7..55d92c24f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLogicalDrives .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md #> Function Get-JcSdkSystemInsightLogicalDrive { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 index 0bd27bafb..0101fc4fc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsManagedPolicies .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md #> Function Get-JcSdkSystemInsightManagedPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 index dc803e22a..4c691e6fa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsMounts .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md #> Function Get-JcSdkSystemInsightMount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 index 7e0d52aec..e9ca19ac6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsOSVersion .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md #> Function Get-JcSdkSystemInsightOSVersion { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 index 449616376..64859ce49 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 @@ -29,7 +29,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsPatches .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md #> Function Get-JcSdkSystemInsightPatch { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 index 9895708c1..03bd3328b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 @@ -36,7 +36,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsPrograms .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md #> Function Get-JcSdkSystemInsightProgram { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 index 8307d5cc4..98053b520 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsPythonPackages .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md #> Function Get-JcSdkSystemInsightPythonPackage { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 index 189a7cd02..f82f2dbac 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSafariExtensions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md #> Function Get-JcSdkSystemInsightSafariExtension { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 index 3c9a0bdd2..86aa0246f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 @@ -30,7 +30,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsScheduledTasks .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md #> Function Get-JcSdkSystemInsightScheduledTask { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 index c8f20626f..e4b7650e5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSecureboot .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md #> Function Get-JcSdkSystemInsightSecureboot { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 index 1a9502bc8..470e54ea8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsServices .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md #> Function Get-JcSdkSystemInsightService { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 index 695dc8243..bb7257ae5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsShadow .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md #> Function Get-JcSdkSystemInsightShadow { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 index fa8b23f83..b8ef68dcb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSharedFolders .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md #> Function Get-JcSdkSystemInsightSharedFolder { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 index d9debb1fb..8900f44a7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 @@ -29,7 +29,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSharedResources .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md #> Function Get-JcSdkSystemInsightSharedResource { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 index 91f16cfec..57d39147d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSharingPreferences .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md #> Function Get-JcSdkSystemInsightSharingPreference { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 index 3e6f8aec3..26334a067 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 @@ -24,7 +24,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSipConfig .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md #> Function Get-JcSdkSystemInsightSipConfig { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 index bdc4a23b6..60586098b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsStartupItems .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md #> Function Get-JcSdkSystemInsightStartupItem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 index b15441920..caf752b86 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSystemControls .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md #> Function Get-JcSdkSystemInsightSystemControl { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 index 5c090bc42..115855fba 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 @@ -36,7 +36,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSystemInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md #> Function Get-JcSdkSystemInsightSystemInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 index cceb72c87..f8f730aad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 @@ -30,7 +30,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsTpmInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md #> Function Get-JcSdkSystemInsightTpmInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 index 3edf3047f..7d0afb333 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 @@ -26,7 +26,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUptime .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md #> Function Get-JcSdkSystemInsightUptime { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 index 2c68ae51e..6a04a8188 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 @@ -33,7 +33,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUsbDevices .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md #> Function Get-JcSdkSystemInsightUsbDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 index 6d12c5660..dddeb5f16 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUsers .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md #> Function Get-JcSdkSystemInsightUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 index d02a6682d..7cd5974ec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUserassist .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md #> Function Get-JcSdkSystemInsightUserAssist { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 index 2118d3675..2e1baceb0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUserGroups .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md #> Function Get-JcSdkSystemInsightUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 index c7b25c022..90dd4db14 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 @@ -24,7 +24,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUserSshKeys .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md #> Function Get-JcSdkSystemInsightUserSshKey { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 index 5e26586aa..edddb2cfd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 @@ -33,7 +33,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWifiNetworks .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md #> Function Get-JcSdkSystemInsightWifiNetwork { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 index 161c0e936..0be5fcc69 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 @@ -34,7 +34,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWifiStatus .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md #> Function Get-JcSdkSystemInsightWifiStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 index 8ba603026..4a07e059f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWindowsSecurityCenter .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md #> Function Get-JcSdkSystemInsightWindowsSecurityCenter { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 index 444260a24..5741a17da 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWindowsSecurityProducts .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md #> Function Get-JcSdkSystemInsightWindowsSecurityProduct { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 index 04a8ba9c0..fe0daee4e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 @@ -54,6 +54,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -72,7 +73,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md #> Function Get-JcSdkSystemMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 index 05d108ece..4b0abe3f6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 @@ -50,7 +50,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPolicyResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md #> Function Get-JcSdkSystemPolicyStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 index af8f5c400..4bc7bf872 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 @@ -79,6 +79,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -97,7 +98,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md #> Function Get-JcSdkSystemTraverseCommand { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 index 99e9a53c3..7471d39e6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 @@ -76,6 +76,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -94,7 +95,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md #> Function Get-JcSdkSystemTraversePolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 index 65662489e..f86610e95 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md #> Function Get-JcSdkSystemTraversePolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 index 82cc94c24..ebd10e79f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md #> Function Get-JcSdkSystemTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 index 32cb66f27..02b1a37a5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md #> Function Get-JcSdkSystemTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 index 96546b455..0f950b7d9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 @@ -63,6 +63,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -81,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md #> Function Get-JcSdkUserAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 index 19a5b2b8d..c7274cc5c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 @@ -80,6 +80,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -98,7 +99,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md #> Function Get-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 index c57f9b2c8..713b0c0d2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md #> Function Get-JcSdkUserGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 index e5498d2e8..9cd32cdb5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 @@ -55,6 +55,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -73,7 +74,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md #> Function Get-JcSdkUserGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 index 5a31ca8b8..dd45f2a5b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md #> Function Get-JcSdkUserGroupMembership { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 index 071ddf006..4e5e8395d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 @@ -64,6 +64,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -82,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md #> Function Get-JcSdkUserGroupTraverseActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 index 1ebf8d8d2..83c7de743 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md #> Function Get-JcSdkUserGroupTraverseApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 index af1402191..5a00db9a9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md #> Function Get-JcSdkUserGroupTraverseDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 index bc96fce9e..dcb901015 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md #> Function Get-JcSdkUserGroupTraverseGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 index 376ee629d..836923621 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md #> Function Get-JcSdkUserGroupTraverseLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 index eed9a2bc0..977382257 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md #> Function Get-JcSdkUserGroupTraverseOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 index 65b6b018d..62a4fe16e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 @@ -70,6 +70,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -88,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md #> Function Get-JcSdkUserGroupTraverseRadiusServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 index 8eb4ff0d3..a9d4f874d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md #> Function Get-JcSdkUserGroupTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 index 51653bff7..0fcb395d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md #> Function Get-JcSdkUserGroupTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 index c5c0611da..eec3b5c8c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md #> Function Get-JcSdkUserMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 index ea1af18f2..a764e4d3b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 @@ -58,6 +58,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -76,7 +77,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md #> Function Get-JcSdkUserPushEndpoint { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 index 126e88930..198b97d1c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md #> Function Get-JcSdkUserTraverseActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 index 93804e14e..9eb8a030f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md #> Function Get-JcSdkUserTraverseApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 index a269827d4..934ae96d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md #> Function Get-JcSdkUserTraverseDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 index 7eafeb459..d5be2ba35 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md #> Function Get-JcSdkUserTraverseGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 index cf5e38d6f..185fd0f3e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md #> Function Get-JcSdkUserTraverseLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 index eb6ce73c9..9fed2a65f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md #> Function Get-JcSdkUserTraverseOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 index 104edbb7a..8c2e4b6dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md #> Function Get-JcSdkUserTraverseRadiusServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 index b536ea5cb..cfeca51cc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md #> Function Get-JcSdkUserTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 index 372b17188..ec952086f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 @@ -68,6 +68,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -86,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md #> Function Get-JcSdkUserTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 index 0cca28142..37b60f71d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 @@ -74,6 +74,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -92,7 +93,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md #> Function Get-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 index 1a9e07561..35f895cdd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 @@ -59,6 +59,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -77,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md #> Function Get-JcSdkWorkdayWorker { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 new file mode 100644 index 000000000..9e1a7d566 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 @@ -0,0 +1,257 @@ +<# +.Synopsis +Endpoint for getting workflow by id +.Description +Endpoint for getting workflow by id +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflow +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllAccessWorkFlowsResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : + [AccountId ]: + [ActivedirectoryId ]: + [AdministratorId ]: + [AgentId ]: + [AppleMdmId ]: + [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: + [CommandId ]: ObjectID of the Command. + [CustomEmailType ]: + [DeviceId ]: + [GroupId ]: ObjectID of the Policy Group. + [GsuiteId ]: ObjectID of the G Suite instance. + [Id ]: ObjectID of this Active Directory instance. + [JobId ]: + [LdapserverId ]: ObjectID of the LDAP Server. + [Office365Id ]: ObjectID of the Office 365 instance. + [PolicyId ]: ObjectID of the Policy. + [ProviderId ]: + [PushEndpointId ]: + [RadiusserverId ]: ObjectID of the Radius Server. + [SoftwareAppId ]: ObjectID of the Software App. + [SystemId ]: ObjectID of the System. + [UserId ]: ObjectID of the User. + [WorkdayId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md +#> + Function Get-JcSdkWorkflow +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflow], [JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllAccessWorkFlowsResponse])] + [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [JumpCloud.SDK.V2.Category('Path')] + [System.String] + # . + ${ApprovalFlowId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Path')] + [JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.Byte[]]))] + [System.Byte[]] + # . + ${OrganizationObjectId}, + + [Parameter(ParameterSetName='List')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.String]))] + [System.Collections.Generic.List[System.String]] + # . + ${Fields}, + + [Parameter(ParameterSetName='List')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.String]))] + [System.Collections.Generic.List[System.String]] + # . + ${Filter}, + + [Parameter(ParameterSetName='List')] + [JumpCloud.SDK.V2.Category('Query')] + [System.String] + # . + ${Sort}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(DontShow)] + [System.Boolean] + # Set to $true to return all results. This will overwrite any skip and limit parameter. + $Paginate = $true + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + If ($Paginate -and $PSCmdlet.ParameterSetName -in ('List')) { + $PSBoundParameters.Remove('Paginate') | Out-Null + If ([System.String]::IsNullOrEmpty($PSBoundParameters.Limit)) { + $PSBoundParameters.Add('Limit', 100) + } + If ([System.String]::IsNullOrEmpty($PSBoundParameters.Skip)) { + $PSBoundParameters.Add('Skip', 0) + } + Do { + Write-Debug ("Limit: $($PSBoundParameters.Limit); "); + Write-Debug ("Skip: $($PSBoundParameters.Skip); "); + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + $Result = If ('Results' -in $Result.PSObject.Properties.Name) { + $Result.results + } Else { + $Result + } + If (-not [System.String]::IsNullOrEmpty($Result)) + { + $ResultCount = ($Result | Measure-Object).Count; + $Results += $Result; + $PSBoundParameters.Skip += $ResultCount + } + } + While ($ResultCount -eq $PSBoundParameters.Limit -and -not [System.String]::IsNullOrEmpty($Result)) + } Else { + $PSBoundParameters.Remove('Paginate') | Out-Null + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + $Result = If ('Results' -in $Result.PSObject.Properties.Name) { + $Result.results + } Else { + $Result + } + If (-not [System.String]::IsNullOrEmpty($Result)) { + $Results += $Result; + } + } + } + End + { + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse','JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { Remove-Variable -Name:($_) -Scope:('Global') } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 new file mode 100644 index 000000000..8f58d4bc9 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 @@ -0,0 +1,257 @@ +<# +.Synopsis +Endpoint that returns the workflow access request by id +.Description +Endpoint that returns the workflow access request by id +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllWorkflowAccessRequestResponse +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetWorkflowAccessRequestResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : + [AccountId ]: + [ActivedirectoryId ]: + [AdministratorId ]: + [AgentId ]: + [AppleMdmId ]: + [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: + [CommandId ]: ObjectID of the Command. + [CustomEmailType ]: + [DeviceId ]: + [GroupId ]: ObjectID of the Policy Group. + [GsuiteId ]: ObjectID of the G Suite instance. + [Id ]: ObjectID of this Active Directory instance. + [JobId ]: + [LdapserverId ]: ObjectID of the LDAP Server. + [Office365Id ]: ObjectID of the Office 365 instance. + [PolicyId ]: ObjectID of the Policy. + [ProviderId ]: + [PushEndpointId ]: + [RadiusserverId ]: ObjectID of the Radius Server. + [SoftwareAppId ]: ObjectID of the Software App. + [SystemId ]: ObjectID of the System. + [UserId ]: ObjectID of the User. + [WorkdayId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md +#> + Function Get-JcSdkWorkflowAccessRequest +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetWorkflowAccessRequestResponse], [JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllWorkflowAccessRequestResponse])] + [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [JumpCloud.SDK.V2.Category('Path')] + [System.String] + # . + ${Id}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Path')] + [JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.Byte[]]))] + [System.Byte[]] + # . + ${OrganizationObjectId}, + + [Parameter(ParameterSetName='List')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.String]))] + [System.Collections.Generic.List[System.String]] + # . + ${Fields}, + + [Parameter(ParameterSetName='List')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.String]))] + [System.Collections.Generic.List[System.String]] + # . + ${Filter}, + + [Parameter(ParameterSetName='List')] + [JumpCloud.SDK.V2.Category('Query')] + [System.String] + # . + ${Sort}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(DontShow)] + [System.Boolean] + # Set to $true to return all results. This will overwrite any skip and limit parameter. + $Paginate = $true + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + If ($Paginate -and $PSCmdlet.ParameterSetName -in ('List')) { + $PSBoundParameters.Remove('Paginate') | Out-Null + If ([System.String]::IsNullOrEmpty($PSBoundParameters.Limit)) { + $PSBoundParameters.Add('Limit', 100) + } + If ([System.String]::IsNullOrEmpty($PSBoundParameters.Skip)) { + $PSBoundParameters.Add('Skip', 0) + } + Do { + Write-Debug ("Limit: $($PSBoundParameters.Limit); "); + Write-Debug ("Skip: $($PSBoundParameters.Skip); "); + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + $Result = If ('Results' -in $Result.PSObject.Properties.Name) { + $Result.results + } Else { + $Result + } + If (-not [System.String]::IsNullOrEmpty($Result)) + { + $ResultCount = ($Result | Measure-Object).Count; + $Results += $Result; + $PSBoundParameters.Skip += $ResultCount + } + } + While ($ResultCount -eq $PSBoundParameters.Limit -and -not [System.String]::IsNullOrEmpty($Result)) + } Else { + $PSBoundParameters.Remove('Paginate') | Out-Null + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + $Result = If ('Results' -in $Result.PSObject.Properties.Name) { + $Result.results + } Else { + $Result + } + If (-not [System.String]::IsNullOrEmpty($Result)) { + $Results += $Result; + } + } + } + End + { + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse','JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { Remove-Variable -Name:($_) -Scope:('Global') } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 new file mode 100644 index 000000000..b3f07bb75 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 @@ -0,0 +1,178 @@ +<# +.Synopsis +Endpoint for getting the approval progress of a access request +.Description +Endpoint for getting the approval progress of a access request +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAccessRequestApprovalProgressResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : + [AccountId ]: + [ActivedirectoryId ]: + [AdministratorId ]: + [AgentId ]: + [AppleMdmId ]: + [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: + [CommandId ]: ObjectID of the Command. + [CustomEmailType ]: + [DeviceId ]: + [GroupId ]: ObjectID of the Policy Group. + [GsuiteId ]: ObjectID of the G Suite instance. + [Id ]: ObjectID of this Active Directory instance. + [JobId ]: + [LdapserverId ]: ObjectID of the LDAP Server. + [Office365Id ]: ObjectID of the Office 365 instance. + [PolicyId ]: ObjectID of the Policy. + [ProviderId ]: + [PushEndpointId ]: + [RadiusserverId ]: ObjectID of the Radius Server. + [SoftwareAppId ]: ObjectID of the Software App. + [SystemId ]: ObjectID of the System. + [UserId ]: ObjectID of the User. + [WorkdayId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md +#> + Function Get-JcSdkWorkflowAccessRequestProgress +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAccessRequestApprovalProgressResponse])] + [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [JumpCloud.SDK.V2.Category('Path')] + [System.String] + # . + ${Id}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Path')] + [JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.Byte[]]))] + [System.Byte[]] + # . + ${OrganizationObjectId}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowAccessRequestProgress @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + $Result = If ('Results' -in $Result.PSObject.Properties.Name) { + $Result.results + } Else { + $Result + } + If (-not [System.String]::IsNullOrEmpty($Result)) { + $Results += $Result; + } + } + End + { + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse','JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { Remove-Variable -Name:($_) -Scope:('Global') } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 new file mode 100644 index 000000000..31866db0a --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 @@ -0,0 +1,134 @@ +<# +.Synopsis +Endpoint for getting workflow settings for an organisation +.Description +Endpoint for getting workflow settings for an organisation +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md +#> + Function Get-JcSdkWorkflowSetting +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings])] + [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.Byte[]]))] + [System.Byte[]] + # . + ${OrganizationObjectId}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + $Result = If ('Results' -in $Result.PSObject.Properties.Name) { + $Result.results + } Else { + $Result + } + If (-not [System.String]::IsNullOrEmpty($Result)) { + $Results += $Result; + } + } + End + { + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse','JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { Remove-Variable -Name:($_) -Scope:('Global') } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 index 982c63e58..5290ab2cd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 @@ -83,6 +83,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -101,7 +102,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md #> Function Grant-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 index 3c2b037f8..2b748e5d7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 @@ -34,6 +34,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -52,7 +53,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md #> Function Import-JcSdkScim { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 index 0c2d33be5..a3c6599e1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 @@ -140,6 +140,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -158,7 +159,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md #> Function Import-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 index f2f100a45..3b292b3e2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 @@ -55,6 +55,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -73,7 +74,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md #> Function Import-JcSdkWorkdayResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 index 7f168e0f5..440090735 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md #> Function Invoke-JcSdkReclaimSoftwareAppLicense { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 index 5e389c78f..8927f0085 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 @@ -51,6 +51,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -69,7 +70,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md #> Function Lock-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 index bec6e445f..c4aafccce 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 @@ -68,7 +68,7 @@ BODY : [UpdatedAt ]: [UseCase ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md #> Function New-JcSdkActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 index b81a2ce11..83dfdbd24 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 @@ -75,6 +75,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -93,7 +94,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md #> Function New-JcSdkActiveDirectoryAgent { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 index 08c7e820f..cbe8b2a2e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 @@ -45,6 +45,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -63,7 +64,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md #> Function New-JcSdkAdministratorOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 index 7fb4fc3e3..5c95f355d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 @@ -160,7 +160,7 @@ USERATTRIBUTEINCLUSIONS : [Operator ]: [Value ]: Can be any value - string, number, boolean, array or object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md #> Function New-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 index ddd6e28e2..078ecd7e0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 @@ -185,7 +185,7 @@ BODY >: [UnixUid ]: [Username ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md #> Function New-JcSdkBulkUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 index 618446209..bd03d6daf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 @@ -68,7 +68,7 @@ BODY : [ActivationEmailOverride ]: Send the activation or welcome email to the specified email address upon activation. Can only be used with a single user_id and scheduled activation. This field will be ignored if `send_activation_emails` is explicitly set to false. [SendActivationEmails ]: Set to true to send activation or welcome email(s) to each user_id upon activation. Set to false to suppress emails. Can only be used with scheduled activation(s). .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md #> Function New-JcSdkBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 index 73683f48b..e1610522a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 @@ -58,7 +58,7 @@ CUSTOMEMAIL : [NextStepContactInfo ]: [Title ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md #> Function New-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 index 98a43eed9..4bd22070e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 @@ -43,7 +43,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IDuoAccount .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md #> Function New-JcSdkDuoAccount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 index 4c5f724c9..af97372f7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 @@ -80,6 +80,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -98,7 +99,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md #> Function New-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 index 880db77ae..e4a45f6ab 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 @@ -72,6 +72,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -90,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md #> Function New-JcSdkGSuiteTranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 index b335cefd1..534adcb66 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 @@ -74,7 +74,7 @@ BODY : [Ips >]: [Name ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md #> Function New-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 index 4438a7120..af2f761ba 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 @@ -72,6 +72,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -90,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md #> Function New-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 index 125ce6ac4..a7e6a13f8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 @@ -72,6 +72,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -90,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md #> Function New-JcSdkOffice365TranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 index ebc6890d1..0b8650ab5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 @@ -101,7 +101,7 @@ VALUES : [Sensitive ]: Defines if the value is sensitive or not. [Value ]: The value for the configuration field for this Policy instance. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md #> Function New-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 index 69583a9c0..70a3dbb4d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 @@ -66,7 +66,7 @@ To create the parameters described below, construct a hash table containing the BODY : Name : Display name of a Policy Group. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md #> Function New-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 index 9046e9b61..297e42b94 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 @@ -79,6 +79,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -97,7 +98,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md #> Function New-JcSdkProviderAdministrator { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 index d0745cb41..d21f8a753 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 @@ -228,7 +228,7 @@ SETTINGS : [UpdatedAt ]: [VersionlessDownloadUrl ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md #> Function New-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 index 31af9abee..62907efb6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 @@ -101,7 +101,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md #> Function New-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 index dca73e860..a31a955dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 @@ -117,7 +117,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md #> Function New-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 index 80d7818f1..3249ba521 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 @@ -106,7 +106,7 @@ BODY : [OauthCode ]: [ReportUrl ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md #> Function New-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 new file mode 100644 index 000000000..c0fffcfa6 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 @@ -0,0 +1,295 @@ +<# +.Synopsis +Endpoint for adding a new access workflow +.Description +Endpoint for adding a new access workflow +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +APPROVERRESOURCES : + [RequireAll ]: + [ResourceId ]: + [ResourceName ]: + [ResourceOrder ]: + [ResourceType ]: + +BODY : + [ApprovalType ]: + [ApproverRequirement ]: + [ApproverResources >]: + [RequireAll ]: + [ResourceId ]: + [ResourceName ]: + [ResourceOrder ]: + [ResourceType ]: + [Category ]: + [Description ]: + [FixedDuration ]: + [IconColor ]: + [IconUrl ]: + [MultiSelectDuration >]: + [Name ]: + [NonAdminApproval ]: + [OrganizationObjectId ]: + [ResourceId ]: + [ResourceType ]: + [SlackConfig >]: + [SlackResourceId ]: + [SlackEnabled ]: + [Status ]: + [TimeBasedAccess ]: + [TtlConfig ]: + [VisibleTo >]: + +SLACKCONFIG : + [SlackResourceId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md +#> + Function New-JcSdkWorkflow +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowResponse])] + [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest] + # . + ${Body}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApprovalType}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApproverRequirement}, + + [Parameter(ParameterSetName='CreateExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoApproverResource[]] + # . + ${ApproverResources}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Category}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Description}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${FixedDuration}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${IconColor}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${IconUrl}, + + [Parameter(ParameterSetName='CreateExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [System.String[]] + # . + ${MultiSelectDuration}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Name}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${NonAdminApproval}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ResourceId}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ResourceType}, + + [Parameter(ParameterSetName='CreateExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoSlackConfig[]] + # . + ${SlackConfig}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${SlackEnabled}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Status}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${TimeBasedAccess}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${TtlConfig}, + + [Parameter(ParameterSetName='CreateExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [System.String[]] + # . + ${VisibleTo}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 new file mode 100644 index 000000000..3b447769f --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 @@ -0,0 +1,163 @@ +<# +.Synopsis +Endpoint for adding a new workflow access request +.Description +Endpoint for adding a new workflow access request +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequestResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : + [Id ]: + [OrganizationObjectId ]: + [Reason ]: + [RequestedDuration ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md +#> + Function New-JcSdkWorkflowAccessRequest +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequestResponse])] + [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest] + # . + ${Body}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Id}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Reason}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${RequestedDuration}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 new file mode 100644 index 000000000..49902bced --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 @@ -0,0 +1,191 @@ +<# +.Synopsis +Endpoint for adding a new access workflow Settings +.Description +Endpoint for adding a new access workflow Settings +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : + [AdminApprovalEmail ]: + [ChannelEvents >]: + [ChannelObjectId ]: + [EventTypes >]: + [ExposeApprovalProgress ]: + [OrganizationObjectId ]: + [ResourceRequest ]: + [UserApprovalEmail ]: + [UserRequestEmail ]: + +CHANNELEVENTS : + [ChannelObjectId ]: + [EventTypes >]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md +#> + Function New-JcSdkWorkflowSetting +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsResponse])] + [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest] + # . + ${Body}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${AdminApprovalEmail}, + + [Parameter(ParameterSetName='CreateExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoChannelEvent[]] + # . + ${ChannelEvents}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${ExposeApprovalProgress}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${ResourceRequest}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${UserApprovalEmail}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${UserRequestEmail}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 new file mode 100644 index 000000000..6e28691e5 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 @@ -0,0 +1,170 @@ +<# +.Synopsis +Endpoint for user approval +.Description +Endpoint for user approval +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : + [ApprovedDuration ]: + [Id ]: + [OrganizationObjectId ]: + [Remarks ]: + [Status ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md +#> + Function New-JcSdkWorkflowUserApprovalRequest +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse])] + [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest] + # . + ${Body}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApprovedDuration}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Id}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Remarks}, + + [Parameter(ParameterSetName='CreateExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Status}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflowUserApprovalRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 index 36d9b9bac..ba9613084 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md #> Function Remove-JcSdkActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 index e4d444dfd..526b33f33 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 @@ -44,6 +44,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -62,7 +63,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md #> Function Remove-JcSdkActiveDirectoryAgent { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 index 468e4a40b..3e82c8f5f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 @@ -28,6 +28,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -46,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md #> Function Remove-JcSdkAdministratorOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 index f907476b2..68042a7a2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 @@ -85,6 +85,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -103,7 +104,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md #> Function Remove-JcSdkAppleMdm { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 index 1db69d9ad..5c3beb5e5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 @@ -72,6 +72,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -90,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md #> Function Remove-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 index 01b60f93f..a2e417cc7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 @@ -28,6 +28,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -46,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md #> Function Remove-JcSdkApplicationLogo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 index 194e02f95..db075e3bc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 @@ -63,6 +63,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -81,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md #> Function Remove-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 index 8f5efcb11..13139038b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 @@ -42,6 +42,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -60,7 +61,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md #> Function Remove-JcSdkBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 index 5bd11b3cc..455f32729 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 @@ -28,6 +28,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -46,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md #> Function Remove-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 index b28d1196f..5a6626b2e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 @@ -50,6 +50,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -68,7 +69,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md #> Function Remove-JcSdkDuoAccount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 index acb044bd3..b491cbaf3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md #> Function Remove-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 index d2d12c3c4..66785505a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 @@ -48,6 +48,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -66,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md #> Function Remove-JcSdkGSuiteTranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 index 590eeffe1..da103995f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 @@ -52,6 +52,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -70,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md #> Function Remove-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 index 3cd9f6d4c..b925a0c96 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 @@ -44,6 +44,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -62,7 +63,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md #> Function Remove-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 index 53d4b784a..f4ad5516d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 @@ -48,6 +48,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -66,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md #> Function Remove-JcSdkOffice365TranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 index 4cd9dca9b..92eb4fe74 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 @@ -46,6 +46,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -64,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md #> Function Remove-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 index b46162f90..f86fdf84a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 @@ -56,6 +56,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -74,7 +75,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md #> Function Remove-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 index 41abf0c56..116517a97 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 @@ -30,6 +30,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -48,7 +49,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md #> Function Remove-JcSdkProviderAdministrator { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 index 65ea3525f..38f438848 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 @@ -48,6 +48,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -66,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md #> Function Remove-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 index abb7c5257..6962e1cb7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 @@ -61,6 +61,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -79,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md #> Function Remove-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 index 53524210f..85d473377 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 @@ -64,6 +64,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -82,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md #> Function Remove-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 index 75b2c2ec3..54cc801d7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 @@ -43,6 +43,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -61,7 +62,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md #> Function Remove-JcSdkUserPushEndpoint { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 index 36de8e67f..d5c1a7fae 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 @@ -44,6 +44,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -62,7 +63,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md #> Function Remove-JcSdkWorkdayAuthorization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 new file mode 100644 index 000000000..403427556 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 @@ -0,0 +1,172 @@ +<# +.Synopsis +Endpoint for deleting accessworkflow by id +.Description +Endpoint for deleting accessworkflow by id +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoDeleteAccessWorkflowResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : + [AccountId ]: + [ActivedirectoryId ]: + [AdministratorId ]: + [AgentId ]: + [AppleMdmId ]: + [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: + [CommandId ]: ObjectID of the Command. + [CustomEmailType ]: + [DeviceId ]: + [GroupId ]: ObjectID of the Policy Group. + [GsuiteId ]: ObjectID of the G Suite instance. + [Id ]: ObjectID of this Active Directory instance. + [JobId ]: + [LdapserverId ]: ObjectID of the LDAP Server. + [Office365Id ]: ObjectID of the Office 365 instance. + [PolicyId ]: ObjectID of the Policy. + [ProviderId ]: + [PushEndpointId ]: + [RadiusserverId ]: ObjectID of the Radius Server. + [SoftwareAppId ]: ObjectID of the Software App. + [SystemId ]: ObjectID of the System. + [UserId ]: ObjectID of the User. + [WorkdayId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md +#> + Function Remove-JcSdkWorkflow +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoDeleteAccessWorkflowResponse])] + [CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [JumpCloud.SDK.V2.Category('Path')] + [System.String] + # . + ${ApprovalFlowId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Path')] + [JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter()] + [JumpCloud.SDK.V2.Category('Query')] + [JumpCloud.SDK.V2.Runtime.Info(PossibleTypes=([System.Byte[]]))] + [System.Byte[]] + # . + ${OrganizationObjectId}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\Remove-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 index 90a97326f..1cae9d7d0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 @@ -51,6 +51,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -69,7 +70,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md #> Function Restart-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 index 273974d70..ae322ccdb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 @@ -67,6 +67,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -85,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md #> Function Set-JcSdkActiveDirectoryAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 index c04092fee..7e6f266a3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 @@ -176,6 +176,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -200,7 +201,7 @@ IOSETUPASSISTANTOPTIONS : MACOSETUPASSISTANTOPTIONS : [Option ]: Options to skip screens during MacOS and iOS setup: * `accessibility` - Skips the Accessibility pane, only if the Mac is connected to Ethernet and the cloud config is downloaded. * `actionButton` - Skips the Action Button configuration pane. * `appearance` - Skips the Choose Your Look screen. * `appleID` - Skips Apple ID setup. * `biometric` - Skips biometric setup. * `cameraButton` - Skips the Camera Button configuration pane. * `diagnostics` - Skips the App Analytics pane. * `displayTone` - Skips display tone setup. * `enableLockdownMode` - Skips the Lockdown Mode pane. * `fileVault` - Skips FileVault setup assistant screen. * `icloudDiagnostics` - Skips iCloud analytics screen. * `icloudStorage` - Skips iCloud documents and desktop screen. * `intelligence` - Skips the Intelligence pane. * `location` - Skips location services setup. * `payment` - Skips Apple Pay setup. * `privacy` - Skips the Privacy setup. * `restore` - Skips restoring from backup. * `screenTime` - Skips screen time setup. * `siri` - Skips Siri setup. * `termsOfAddress` - Skips the Terms of Address pane. * `tos` - Skips terms and conditions. * `appStore` - Skips the App Store pane. * `deviceToDeviceMigration` - Skips Device to Device Migration pane. * `displayZoom` - Skips zoom setup. * `homeButton` - Skips the Meet the New Home Button screen on iPhone 7, iPhone 7 Plus, iPhone 8, iPhone 8 Plus and iPhone SE. * `imessageAndFacetime` - Skips the iMessage and FaceTime screen in iOS. * `messagingActivationUsingPhoneNumber` - Skips the iMessage pane. * `moveFromAndroid` - If the Restore pane is not skipped, removes the Move from Android option in the Restore pane on iOS.O * `passcode` - Hides and disables the passcode pane. * `restoreComplete` - Skips the Restore Completed pane. * `safety` - Skips the Safety pane. * `setupCellular` - Skips the add cellular plan pane. * `softwareUpdate` - Skips the mandatory software update screen in iOS. * `unlockWithWatch` - Skips Unlock Your Mac with your Apple Watch pane. * `updateComplete` - Skips the Software Update Complete pane. * `wallpaper` - Skips the Wallpaper setup. * `watchMigration` - Skips the screen for watch migration. * `welcome` - Skips the Get Started pane. * `additionalPrivacySettings` - Skips the Additional Privacy Settings pane. * `multitasking` - Skips the Multitasking pane. * `osShowcase` - Skips the OS Showcase pane. * `webContentFiltering` - Skips the Web Content Filtering pane. * `safetyAndHandling` - Skips the Safety and Handling pane. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md #> Function Set-JcSdkAppleMdm { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 index 4af06b65c..724a35126 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 @@ -65,6 +65,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -83,7 +84,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md #> Function Set-JcSdkApplicationAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 index 571d1b4fe..f66b57863 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 @@ -69,6 +69,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -87,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md #> Function Set-JcSdkCommandAssociation { @@ -146,7 +147,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/Jum [Parameter(ParameterSetName='SetExpanded')] [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [JumpCloud.SDK.V2.PSArgumentCompleterAttribute("system", "system_group")] + [JumpCloud.SDK.V2.PSArgumentCompleterAttribute("system", "system_group", "password_manager_item")] [JumpCloud.SDK.V2.Category('Body')] [System.String] # Targets which a "command" can be associated to. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 index 35ea3b927..9acb28c7b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 @@ -67,6 +67,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -85,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md #> Function Set-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 index 09b5a7215..6520a42c9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 @@ -80,6 +80,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -98,7 +99,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md #> Function Set-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 index 9dd7a8ec1..2d0325944 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 @@ -69,6 +69,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -87,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md #> Function Set-JcSdkGSuiteAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 index dfc9e4742..2784fd055 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 @@ -79,6 +79,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -97,7 +98,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md #> Function Set-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 index d0cf54b20..64021f9b2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 @@ -67,6 +67,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -85,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md #> Function Set-JcSdkLdapServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 index 5b4ebafbc..19f18cb38 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 @@ -72,6 +72,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -90,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md #> Function Set-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 index 8bef8e957..7eacb7e2c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 @@ -67,6 +67,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -85,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md #> Function Set-JcSdkOffice365Association { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 index 01803509e..866c0a7be 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 @@ -100,6 +100,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -123,7 +124,7 @@ VALUES : [Sensitive ]: Defines if the value is sensitive or not. [Value ]: The value for the configuration field for this Policy instance. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md #> Function Set-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 index 0f4f86548..2965d8562 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 @@ -67,6 +67,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -85,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md #> Function Set-JcSdkPolicyAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 index 34f092e9e..290b71d5a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 @@ -75,6 +75,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -93,7 +94,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md #> Function Set-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 index d80837df6..e9f033f61 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 @@ -69,6 +69,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -87,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md #> Function Set-JcSdkPolicyGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 index c5ca23dc9..5fdfbe2ce 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md #> Function Set-JcSdkPolicyGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 index b3f6176c0..3f3e893ce 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 @@ -71,6 +71,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -89,7 +90,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md #> Function Set-JcSdkRadiusServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 index 3fc1414d0..b140e068f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 @@ -243,6 +243,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -341,7 +342,7 @@ SETTINGS : [UpdatedAt ]: [VersionlessDownloadUrl ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md #> Function Set-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 index 62dad4092..3f5937386 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 @@ -63,6 +63,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -81,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md #> Function Set-JcSdkSoftwareAppAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 index 93c6f7ff4..532b4980e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 @@ -83,6 +83,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -101,7 +102,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md #> Function Set-JcSdkSystemAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 index f4d145300..0f376221a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 @@ -102,6 +102,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -126,7 +127,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md #> Function Set-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 index 8795fa039..f23f34207 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 @@ -69,6 +69,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -87,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md #> Function Set-JcSdkSystemGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 index 1dcd4b9b7..0fef5aed1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md #> Function Set-JcSdkSystemGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 index eaf8291e4..7018c3c6f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 @@ -83,6 +83,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -101,7 +102,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md #> Function Set-JcSdkUserAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 index 57b97f5fa..319f74085 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 @@ -120,6 +120,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -144,7 +145,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md #> Function Set-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 index 7cf864085..6210d6ba1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 @@ -69,6 +69,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -87,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md #> Function Set-JcSdkUserGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 index 36ede6e0a..ad21cc745 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 @@ -62,6 +62,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -80,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md #> Function Set-JcSdkUserGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 index 4aeb4e670..c0a8a560f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 @@ -90,6 +90,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -108,7 +109,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md #> Function Set-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 new file mode 100644 index 000000000..20a390b3a --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 @@ -0,0 +1,342 @@ +<# +.Synopsis +Endpoint for updating a new access workflow +.Description +Endpoint for updating a new access workflow +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +.Inputs +JumpCloud.SDK.V2.Models.IPaths14Hfh8UApprovalflowsApprovalflowidPutRequestbodyContentApplicationJsonSchema +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +APPROVERRESOURCES : + [RequireAll ]: + [ResourceId ]: + [ResourceName ]: + [ResourceOrder ]: + [ResourceType ]: + +BODY : + [ApprovalType ]: + [ApproverRequirement ]: + [ApproverResources >]: + [RequireAll ]: + [ResourceId ]: + [ResourceName ]: + [ResourceOrder ]: + [ResourceType ]: + [Description ]: + [FixedDuration ]: + [IconColor ]: + [IconUrl ]: + [MultiSelectDuration >]: + [Name ]: + [NonAdminApproval ]: + [OrganizationObjectId ]: + [ResourceId ]: + [SlackConfig >]: + [SlackResourceId ]: + [SlackEnabled ]: + [Status ]: + [TimeBasedAccess ]: + [TtlConfig ]: + [VisibleTo >]: + +INPUTOBJECT : + [AccountId ]: + [ActivedirectoryId ]: + [AdministratorId ]: + [AgentId ]: + [AppleMdmId ]: + [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: + [CommandId ]: ObjectID of the Command. + [CustomEmailType ]: + [DeviceId ]: + [GroupId ]: ObjectID of the Policy Group. + [GsuiteId ]: ObjectID of the G Suite instance. + [Id ]: ObjectID of this Active Directory instance. + [JobId ]: + [LdapserverId ]: ObjectID of the LDAP Server. + [Office365Id ]: ObjectID of the Office 365 instance. + [PolicyId ]: ObjectID of the Policy. + [ProviderId ]: + [PushEndpointId ]: + [RadiusserverId ]: ObjectID of the Radius Server. + [SoftwareAppId ]: ObjectID of the Software App. + [SystemId ]: ObjectID of the System. + [UserId ]: ObjectID of the User. + [WorkdayId ]: + +SLACKCONFIG : + [SlackResourceId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md +#> + Function Set-JcSdkWorkflow +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowResponse])] + [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Set', Mandatory)] + [Parameter(ParameterSetName='SetExpanded', Mandatory)] + [JumpCloud.SDK.V2.Category('Path')] + [System.String] + # . + ${ApprovalFlowId}, + + [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Path')] + [JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IPaths14Hfh8UApprovalflowsApprovalflowidPutRequestbodyContentApplicationJsonSchema] + # . + ${Body}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApprovalType}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApproverRequirement}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoApproverResource[]] + # . + ${ApproverResources}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Description}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${FixedDuration}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${IconColor}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${IconUrl}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [System.String[]] + # . + ${MultiSelectDuration}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Name}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${NonAdminApproval}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ResourceId}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoSlackConfig[]] + # . + ${SlackConfig}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${SlackEnabled}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Status}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${TimeBasedAccess}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${TtlConfig}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [System.String[]] + # . + ${VisibleTo}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 new file mode 100644 index 000000000..07d71f753 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 @@ -0,0 +1,226 @@ +<# +.Synopsis +Endpoint that set the workflow access request by id +.Description +Endpoint that set the workflow access request by id +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +.Inputs +JumpCloud.SDK.V2.Models.IPaths17F25RsApprovalflowrequestIdPutRequestbodyContentApplicationJsonSchema +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateWorkflowAccessRequestResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : + [Admin ]: + [ApprovedDuration ]: + [InternalNote ]: + [OrganizationObjectId ]: + [Remarks ]: + [Status ]: + +INPUTOBJECT : + [AccountId ]: + [ActivedirectoryId ]: + [AdministratorId ]: + [AgentId ]: + [AppleMdmId ]: + [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: + [CommandId ]: ObjectID of the Command. + [CustomEmailType ]: + [DeviceId ]: + [GroupId ]: ObjectID of the Policy Group. + [GsuiteId ]: ObjectID of the G Suite instance. + [Id ]: ObjectID of this Active Directory instance. + [JobId ]: + [LdapserverId ]: ObjectID of the LDAP Server. + [Office365Id ]: ObjectID of the Office 365 instance. + [PolicyId ]: ObjectID of the Policy. + [ProviderId ]: + [PushEndpointId ]: + [RadiusserverId ]: ObjectID of the Radius Server. + [SoftwareAppId ]: ObjectID of the Software App. + [SystemId ]: ObjectID of the System. + [UserId ]: ObjectID of the User. + [WorkdayId ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md +#> + Function Set-JcSdkWorkflowAccessRequest +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateWorkflowAccessRequestResponse])] + [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Set', Mandatory)] + [Parameter(ParameterSetName='SetExpanded', Mandatory)] + [JumpCloud.SDK.V2.Category('Path')] + [System.String] + # . + ${Id}, + + [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Path')] + [JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IPaths17F25RsApprovalflowrequestIdPutRequestbodyContentApplicationJsonSchema] + # . + ${Body}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Admin}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApprovedDuration}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${InternalNote}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Remarks}, + + [Parameter(ParameterSetName='SetExpanded')] + [Parameter(ParameterSetName='SetViaIdentityExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Status}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 new file mode 100644 index 000000000..d0d42e4ff --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 @@ -0,0 +1,191 @@ +<# +.Synopsis +Endpoint for updating a access workflow settings for an organization +.Description +Endpoint for updating a access workflow settings for an organization +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : + [AdminApprovalEmail ]: + [ChannelEvents >]: + [ChannelObjectId ]: + [EventTypes >]: + [ExposeApprovalProgress ]: + [OrganizationObjectId ]: + [ResourceRequest ]: + [UserApprovalEmail ]: + [UserRequestEmail ]: + +CHANNELEVENTS : + [ChannelObjectId ]: + [EventTypes >]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md +#> + Function Set-JcSdkWorkflowSetting +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsResponse])] + [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest] + # . + ${Body}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${AdminApprovalEmail}, + + [Parameter(ParameterSetName='SetExpanded')] + [AllowEmptyCollection()] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoChannelEvent[]] + # . + ${ChannelEvents}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${ExposeApprovalProgress}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${ResourceRequest}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${UserApprovalEmail}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.Management.Automation.SwitchParameter] + # . + ${UserRequestEmail}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 index a68759560..3e5f5dbb1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 @@ -46,6 +46,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -64,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md #> Function Stop-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 index a7799931e..44ed7eecd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 @@ -46,6 +46,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -64,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md #> Function Sync-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 index 98c92f7c0..273ef994a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 @@ -48,6 +48,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -66,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md #> Function Update-JcSdkAppleMdmDeviceLockInformation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 index eb4bb1019..d29a0bc1d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 @@ -116,6 +116,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -151,7 +152,7 @@ USERATTRIBUTEINCLUSIONS : [Operator ]: [Value ]: Can be any value - string, number, boolean, array or object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md #> Function Update-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 index 43deb7d0b..207308f56 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 @@ -148,7 +148,7 @@ BODY >: [UnixUid ]: [Username ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md #> Function Update-JcSdkBulkUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 index db73a2a6d..83b04d35a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 @@ -137,6 +137,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -155,7 +156,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md #> Function Update-JcSdkGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 index 8f1fca5fc..40cd18681 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 @@ -69,6 +69,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -87,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md #> Function Update-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 index 640c2418d..325b6726d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 @@ -77,6 +77,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -95,7 +96,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md #> Function Update-JcSdkLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 index 782fffbae..5a433b4fa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 @@ -141,6 +141,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -159,7 +160,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md #> Function Update-JcSdkOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 index f30dfb8e3..d39880fd7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 @@ -64,6 +64,7 @@ INPUTOBJECT : [AgentId ]: [AppleMdmId ]: [ApplicationId ]: ObjectID of the Application. + [ApprovalFlowId ]: [CommandId ]: ObjectID of the Command. [CustomEmailType ]: [DeviceId ]: @@ -82,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md #> Function Update-JcSdkUserPushEndpoint { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md index a55e13aa1..f60a3aa60 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -244,6 +244,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md index fe2c7c4f7..45a12a872 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md schema: 2.0.0 --- @@ -195,6 +195,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md index 2e6275e23..27b1a7e84 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md schema: 2.0.0 --- @@ -206,6 +206,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md index a8836b957..42b391ba0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md index bd9ba48a1..bc6ba804a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md schema: 2.0.0 --- @@ -160,6 +160,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md index d78aa8ba6..e26cfe32e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md index b0b1a327f..bfe46e757 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md index 4bcad3da6..fcc21d496 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md index 9c4982de4..784539e81 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md index a8f1ab26c..54aeb5766 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md index e42e97516..4a434734c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -260,6 +260,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md index 91079d518..03a5e02a6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md index c822c4456..16aeeafcb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md schema: 2.0.0 --- @@ -158,6 +158,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md index df2331b2e..cbe05e347 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md index c5a959712..830fd9392 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md index aa646a7ff..ba4594523 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- @@ -225,6 +225,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md index d46a79054..220a5f723 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md index 854ff7a6d..f7e01b626 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md schema: 2.0.0 --- @@ -139,6 +139,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md index 315223ffb..2bead125d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md schema: 2.0.0 --- @@ -159,6 +159,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md index 25b787fe4..86523322f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md index 5d0a81615..97717b9da 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md index 78ffcaa00..b63afabe4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- @@ -123,6 +123,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md index 4d76a640b..c9e308207 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md index c084cf681..439f52001 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md index 2dfbd29d6..3cb2ca410 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md schema: 2.0.0 --- @@ -139,6 +139,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md index 8571086bf..d05cba31b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md schema: 2.0.0 --- @@ -158,6 +158,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md index f9029fac0..502336a93 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md schema: 2.0.0 --- @@ -139,6 +139,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md index 87f6db785..361049c8f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md schema: 2.0.0 --- @@ -159,6 +159,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md index 0fae6c727..4e7f09eb4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md schema: 2.0.0 --- @@ -221,6 +221,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md index 88e70b239..280f71b5d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md index 71ed2712f..0924550e0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md index 40c43803c..b190d5bd1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md index 3a27bbd1e..32da084af 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md schema: 2.0.0 --- @@ -14,6 +14,7 @@ This endpoint returns all Groups that exist in your organization. - `name` - `disabled` - `type` + - `memberQueryErrorFlags` #### Sample Request @@ -39,6 +40,7 @@ This endpoint returns all Groups that exist in your organization. - `name` - `disabled` - `type` + - `memberQueryErrorFlags` #### Sample Request diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md index 6e6bb818a..338d99988 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md index d8c89e57a..27ba1e48d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md schema: 2.0.0 --- @@ -203,6 +203,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md index 0e93babc1..f819e854d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md schema: 2.0.0 --- @@ -206,6 +206,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md index 8bfe34c33..7749e1ab2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md schema: 2.0.0 --- @@ -160,6 +160,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md index 3a8ddb31c..11a2f7e06 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- @@ -219,6 +219,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md index 94452edd1..779c9fb19 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md index 27e63f0e0..1ae4dfe18 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md index 2f14a2b4b..3ee1324e9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md index 83900cfb7..8fde383d4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md schema: 2.0.0 --- @@ -145,6 +145,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md index c5b50587b..d464de76e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md schema: 2.0.0 --- @@ -162,6 +162,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md index b5ba5efbc..8c06ce0b9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md schema: 2.0.0 --- @@ -223,6 +223,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md index 6ab1bd626..f637b1b2c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md schema: 2.0.0 --- @@ -31,13 +31,13 @@ curl -X GET https://console.jumpcloud.com/api/v2/office365s/{OFFICE365_ID}/users ### Get (Default) ``` Get-JcSdkOffice365TraverseUser -ConsoleHost -Office365Id [-Filter >] - [] + [-SyncStatus] [] ``` ### GetViaIdentity ``` Get-JcSdkOffice365TraverseUser -ConsoleHost -InputObject - [-Filter >] [] + [-Filter >] [-SyncStatus] [] ``` ## DESCRIPTION @@ -155,6 +155,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SyncStatus +Include sync status for users + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -180,6 +195,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md index 6674311d7..ea1ab1d33 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md index 552109d8c..9e4414c39 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md index c1229448b..5fcce09cf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md index 358689a30..7df5e139f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md schema: 2.0.0 --- @@ -228,6 +228,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md index 1cd97e80c..65fe74aa5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md schema: 2.0.0 --- @@ -157,6 +157,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md index bf060334a..3897d0bb4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md schema: 2.0.0 --- @@ -208,6 +208,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md index d64e50f4e..dac56c997 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md index c9ffa3943..be9421b8b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md schema: 2.0.0 --- @@ -244,6 +244,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md index 09f43b188..820b9b766 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md index fe633dffd..16daf4a38 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md index 86dc4c5ca..ea9cf26b2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md index bc0cd54e3..52536bc6a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md schema: 2.0.0 --- @@ -233,6 +233,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md index e1d31b2ae..354dcba5a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md index db664e2b8..b249b4a0a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md schema: 2.0.0 --- @@ -222,6 +222,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md index a00ba020f..62ca9d73a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md index a96700ca1..7a433a4e3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md index 1911fd1b3..635a8bd40 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md index a4a9c83d2..0a8cff997 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md index 23cb690be..04c2b7527 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md schema: 2.0.0 --- @@ -164,6 +164,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md index 751736bab..c582278df 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md schema: 2.0.0 --- @@ -158,6 +158,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md index 23adb6d78..fe408424e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md index 7a32179be..99c515fdf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md index 277fd1822..3b9ac4a76 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md schema: 2.0.0 --- @@ -188,6 +188,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md index e2440a378..2db694a57 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md schema: 2.0.0 --- @@ -158,6 +158,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md index fc57b2908..f197a071b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md schema: 2.0.0 --- @@ -184,6 +184,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md index 8d8c79b02..7e88d473d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md index 13e408518..5c0deda75 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md index 22b176bcf..4428e2cca 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md index 1c64922b5..191e578b4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md schema: 2.0.0 --- @@ -192,6 +192,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md index 1f4809781..e1dac183c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md schema: 2.0.0 --- @@ -114,6 +114,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md index f89bb3ec3..e220b7a56 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md schema: 2.0.0 --- @@ -218,6 +218,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md index c359eda64..5991a91b4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md schema: 2.0.0 --- @@ -159,6 +159,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md index 3f241bd97..d72f37898 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md schema: 2.0.0 --- @@ -139,6 +139,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md index 05b05b45f..910a4d742 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md index 2f1681538..eab71357b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md schema: 2.0.0 --- @@ -204,6 +204,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md index 3b552c3ca..e64ee8dd2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md schema: 2.0.0 --- @@ -184,6 +184,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md index d89a2b326..292fb5dcb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md index eb79c38bf..bf20a5571 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md index 8fe011f87..df1d830b0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md index c77505314..ecb508bc9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md index 753c95a9e..c51e387be 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md index 46bbd89be..ebb656962 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md index 778f15374..fee14369c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md index cb15494a0..f5a228581 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md index 886d564b7..89730f2ea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md index 2221a48aa..e6e3549a1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md index 1b5b3a671..8c9e3a865 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md index e46086e64..8c0cc9ac8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md index b7a3e9573..bd9c846b2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md index 83b0b091a..850919626 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md index 0298cb3f0..62614f4a1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md index e7a8e3ae5..dd93a68d3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md index 9748f4703..42237d4ca 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md index 278be22f8..3c411e60c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md index 6acfda816..1b0ab7c74 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md index 3b32d1232..7e9fe06e4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md index debc892ab..dbb3761e9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md index ed25d306b..7289cb9a2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md index f2045beb9..cec7ddc7e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md index 4635d4fac..ecd078a3a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md index 8497bb514..0009a2a92 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md index 928bb64d6..ecef90085 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md index 551cf48d4..0e3f64604 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md index b396eb411..9d986d585 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md index a97db0197..f924b0fe5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md index 2e29cbdbd..03e17c04d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md index 48c1ca428..bb3289ddf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md index 0c3835ba9..3627b946a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md index 1a8ff3ac1..d8085d531 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md index 5da60c80a..7093fd489 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md index dafab18cb..a19e1f2db 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md index 3720450b1..29b69fef2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md index 6b27897a8..2f21121bd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md index 66b2809c9..7097a56e5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md index c5aa947b7..1a6c99922 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md index 455b53283..ab14ba12c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md index 1cb83bdc7..7c0020bfe 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md index b83d15a67..fea376ca2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md index c79ca5913..78030d50a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md index 7595fd6ee..8cea7cf2d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md index ec96c81cf..4c532b2d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md index d004d8e62..8e5ae970f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md index a2f277c02..7a39764c8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md index 666763ce3..f84912043 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md index 39198e975..1b9f4ffec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md index 77fdb4ac6..1fc89f1f9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md index 7a1d29734..6b515efcf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md index b7a7eab1b..07bbe99bd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md index dfd0cd546..3fa369f5c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md index 4e061deef..282b519cf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md index 711a463ce..421a28d11 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md index f0cadc1e7..a0b9b137c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md index dd35eb372..0ca3df232 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md index 462defdc1..913c49905 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md index 91274f49b..2cf50b692 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md index 8b1f893c3..392a6cd20 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md index f3775be15..84f5cde40 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md index 50a226be7..5907efc62 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md index e8aedaeb7..377698fdb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md index 97d5e374e..de60cafd8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md schema: 2.0.0 --- @@ -212,6 +212,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md index de5fc7af0..e765a1d82 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md index 0f4685411..ddb4ba13c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md schema: 2.0.0 --- @@ -206,6 +206,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md index 9a6ceb5b5..ab2bda9dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md schema: 2.0.0 --- @@ -188,6 +188,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md index bbfeb407e..f68235dec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md schema: 2.0.0 --- @@ -212,6 +212,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md index 25a7fa5cc..df4cbb7cd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md schema: 2.0.0 --- @@ -212,6 +212,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md index 24737962c..f9a843a3b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md schema: 2.0.0 --- @@ -212,6 +212,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md index c334acff7..be4a8f53b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md schema: 2.0.0 --- @@ -161,6 +161,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md index cc7683fc3..bb2aaa3c4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md schema: 2.0.0 --- @@ -224,6 +224,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md index ded12485f..a33753640 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md schema: 2.0.0 --- @@ -159,6 +159,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md index a93d15cc5..3a53cae53 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md schema: 2.0.0 --- @@ -137,6 +137,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md index aa1eee874..c9579c816 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md index 606b3a26f..47ac1ccd8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md schema: 2.0.0 --- @@ -176,6 +176,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md index 71fdd1661..bb37ca1ae 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md index 245ad0e97..215dc149c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md index 7c5f8bfca..c3b0692fb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md index bfe825247..9d6bcaa12 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md index 3bc436355..e28c21cde 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md index d428289c0..6775bc3f1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md index b11d56862..fcca8f08f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md index eb85cf933..fe9858ea2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md index 8bcad6b05..8a980b0ea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md index aecd7dbef..5514b2aa6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md schema: 2.0.0 --- @@ -156,6 +156,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md index ec742240c..8b484fdbe 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md index e489608a3..06d326464 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md index 5f5918df1..67fd76d2d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md index 399f82859..fdbcd546e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md index 3f7c34e67..5587b54c3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md index 46ab22591..29a199760 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md index b66cccb01..e5cb5a141 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md index 50846db2d..4f365e0a6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md index 9b9380b42..b8ed39128 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md index 348aa103f..785870277 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md schema: 2.0.0 --- @@ -218,6 +218,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md index cc2bba58d..4286d35c4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md schema: 2.0.0 --- @@ -158,6 +158,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md new file mode 100644 index 000000000..38d2fcc5f --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md @@ -0,0 +1,207 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md +schema: 2.0.0 +--- + +# Get-JcSdkWorkflow + +## SYNOPSIS +Endpoint for getting workflow by id + +## SYNTAX + +### List (Default) +``` +Get-JcSdkWorkflow -ConsoleHost [-Fields >] [-Filter >] + [-OrganizationObjectId ] [-Sort ] [] +``` + +### Get +``` +Get-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-OrganizationObjectId ] + [] +``` + +### GetViaIdentity +``` +Get-JcSdkWorkflow -ConsoleHost -InputObject [-OrganizationObjectId ] + [] +``` + +## DESCRIPTION +Endpoint for getting workflow by id + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ApprovalFlowId +. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Fields +. + +```yaml +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Parameter Sets: List +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +. + +```yaml +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Parameter Sets: List +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -OrganizationObjectId +. + +```yaml +Type: System.Byte[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +. + +```yaml +Type: System.String +Parameter Sets: List +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflow + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllAccessWorkFlowsResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`INPUTOBJECT `: Identity Parameter + - `[AccountId ]`: + - `[ActivedirectoryId ]`: + - `[AdministratorId ]`: + - `[AgentId ]`: + - `[AppleMdmId ]`: + - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: + - `[CommandId ]`: ObjectID of the Command. + - `[CustomEmailType ]`: + - `[DeviceId ]`: + - `[GroupId ]`: ObjectID of the Policy Group. + - `[GsuiteId ]`: ObjectID of the G Suite instance. + - `[Id ]`: ObjectID of this Active Directory instance. + - `[JobId ]`: + - `[LdapserverId ]`: ObjectID of the LDAP Server. + - `[Office365Id ]`: ObjectID of the Office 365 instance. + - `[PolicyId ]`: ObjectID of the Policy. + - `[ProviderId ]`: + - `[PushEndpointId ]`: + - `[RadiusserverId ]`: ObjectID of the Radius Server. + - `[SoftwareAppId ]`: ObjectID of the Software App. + - `[SystemId ]`: ObjectID of the System. + - `[UserId ]`: ObjectID of the User. + - `[WorkdayId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md new file mode 100644 index 000000000..529b8ba21 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md @@ -0,0 +1,207 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md +schema: 2.0.0 +--- + +# Get-JcSdkWorkflowAccessRequest + +## SYNOPSIS +Endpoint that returns the workflow access request by id + +## SYNTAX + +### List (Default) +``` +Get-JcSdkWorkflowAccessRequest -ConsoleHost [-Fields >] [-Filter >] + [-OrganizationObjectId ] [-Sort ] [] +``` + +### Get +``` +Get-JcSdkWorkflowAccessRequest -ConsoleHost -Id [-OrganizationObjectId ] + [] +``` + +### GetViaIdentity +``` +Get-JcSdkWorkflowAccessRequest -ConsoleHost -InputObject + [-OrganizationObjectId ] [] +``` + +## DESCRIPTION +Endpoint that returns the workflow access request by id + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Fields +. + +```yaml +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Parameter Sets: List +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +. + +```yaml +Type: System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Parameter Sets: List +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -OrganizationObjectId +. + +```yaml +Type: System.Byte[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +. + +```yaml +Type: System.String +Parameter Sets: List +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllWorkflowAccessRequestResponse + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetWorkflowAccessRequestResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`INPUTOBJECT `: Identity Parameter + - `[AccountId ]`: + - `[ActivedirectoryId ]`: + - `[AdministratorId ]`: + - `[AgentId ]`: + - `[AppleMdmId ]`: + - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: + - `[CommandId ]`: ObjectID of the Command. + - `[CustomEmailType ]`: + - `[DeviceId ]`: + - `[GroupId ]`: ObjectID of the Policy Group. + - `[GsuiteId ]`: ObjectID of the G Suite instance. + - `[Id ]`: ObjectID of this Active Directory instance. + - `[JobId ]`: + - `[LdapserverId ]`: ObjectID of the LDAP Server. + - `[Office365Id ]`: ObjectID of the Office 365 instance. + - `[PolicyId ]`: ObjectID of the Policy. + - `[ProviderId ]`: + - `[PushEndpointId ]`: + - `[RadiusserverId ]`: ObjectID of the Radius Server. + - `[SoftwareAppId ]`: ObjectID of the Software App. + - `[SystemId ]`: ObjectID of the System. + - `[UserId ]`: ObjectID of the User. + - `[WorkdayId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md new file mode 100644 index 000000000..7641895f5 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md @@ -0,0 +1,154 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md +schema: 2.0.0 +--- + +# Get-JcSdkWorkflowAccessRequestProgress + +## SYNOPSIS +Endpoint for getting the approval progress of a access request + +## SYNTAX + +### Get (Default) +``` +Get-JcSdkWorkflowAccessRequestProgress -ConsoleHost -Id [-OrganizationObjectId ] + [] +``` + +### GetViaIdentity +``` +Get-JcSdkWorkflowAccessRequestProgress -ConsoleHost -InputObject + [-OrganizationObjectId ] [] +``` + +## DESCRIPTION +Endpoint for getting the approval progress of a access request + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -OrganizationObjectId +. + +```yaml +Type: System.Byte[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAccessRequestApprovalProgressResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`INPUTOBJECT `: Identity Parameter + - `[AccountId ]`: + - `[ActivedirectoryId ]`: + - `[AdministratorId ]`: + - `[AgentId ]`: + - `[AppleMdmId ]`: + - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: + - `[CommandId ]`: ObjectID of the Command. + - `[CustomEmailType ]`: + - `[DeviceId ]`: + - `[GroupId ]`: ObjectID of the Policy Group. + - `[GsuiteId ]`: ObjectID of the G Suite instance. + - `[Id ]`: ObjectID of this Active Directory instance. + - `[JobId ]`: + - `[LdapserverId ]`: ObjectID of the LDAP Server. + - `[Office365Id ]`: ObjectID of the Office 365 instance. + - `[PolicyId ]`: ObjectID of the Policy. + - `[ProviderId ]`: + - `[PushEndpointId ]`: + - `[RadiusserverId ]`: ObjectID of the Radius Server. + - `[SoftwareAppId ]`: ObjectID of the Software App. + - `[SystemId ]`: ObjectID of the System. + - `[UserId ]`: ObjectID of the User. + - `[WorkdayId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md new file mode 100644 index 000000000..665d31940 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md @@ -0,0 +1,83 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md +schema: 2.0.0 +--- + +# Get-JcSdkWorkflowSetting + +## SYNOPSIS +Endpoint for getting workflow settings for an organisation + +## SYNTAX + +``` +Get-JcSdkWorkflowSetting -ConsoleHost [-OrganizationObjectId ] [] +``` + +## DESCRIPTION +Endpoint for getting workflow settings for an organisation + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectId +. + +```yaml +Type: System.Byte[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings + +## NOTES + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md index 8c1776530..c9a7d9b80 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md schema: 2.0.0 --- @@ -289,6 +289,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md index 721fe5c76..88078d46d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md schema: 2.0.0 --- @@ -240,6 +240,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md index 29c54c92f..e47ac263f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md schema: 2.0.0 --- @@ -274,6 +274,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md index 905d53242..3d70f28f7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md schema: 2.0.0 --- @@ -152,6 +152,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md index f48f16a69..a79603878 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md schema: 2.0.0 --- @@ -167,6 +167,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md index d89f0de9f..b51b05f2d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md @@ -1,7 +1,7 @@ --- Module Name: JumpCloud.SDK.V2 Module Guid: ff397964-2121-4c89-a916-34b5c30d7187 -Download Help Link: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/jumpcloud.sdk.v2 +Download Help Link: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/jumpcloud.sdk.v2 Help Version: 1.0.0.0 Locale: en-US --- @@ -335,6 +335,7 @@ This endpoint returns all Groups that exist in your organization. - `name` - `disabled` - `type` + - `memberQueryErrorFlags` #### Sample Request @@ -1887,6 +1888,18 @@ curl -X GET https://console.jumpcloud.com/api/v2/workdays/{WorkDayID}/workers \\ ``` +### [Get-JcSdkWorkflow](Get-JcSdkWorkflow.md) +Endpoint for getting workflow by id + +### [Get-JcSdkWorkflowAccessRequest](Get-JcSdkWorkflowAccessRequest.md) +Endpoint that returns the workflow access request by id + +### [Get-JcSdkWorkflowAccessRequestProgress](Get-JcSdkWorkflowAccessRequestProgress.md) +Endpoint for getting the approval progress of a access request + +### [Get-JcSdkWorkflowSetting](Get-JcSdkWorkflowSetting.md) +Endpoint for getting workflow settings for an organisation + ### [Grant-JcSdkWorkday](Grant-JcSdkWorkday.md) This endpoint adds an authorization method to a workday instance. @@ -2313,6 +2326,18 @@ curl -X POST https://console.jumpcloud.com/api/v2/workdays/ \\ }' ``` +### [New-JcSdkWorkflow](New-JcSdkWorkflow.md) +Endpoint for adding a new access workflow + +### [New-JcSdkWorkflowAccessRequest](New-JcSdkWorkflowAccessRequest.md) +Endpoint for adding a new workflow access request + +### [New-JcSdkWorkflowSetting](New-JcSdkWorkflowSetting.md) +Endpoint for adding a new access workflow Settings + +### [New-JcSdkWorkflowUserApprovalRequest](New-JcSdkWorkflowUserApprovalRequest.md) +Endpoint for user approval + ### [Remove-JcSdkActiveDirectory](Remove-JcSdkActiveDirectory.md) This endpoint allows you to delete an Active Directory Instance. @@ -2538,6 +2563,9 @@ curl -X DELETE https://console.jumpcloud.com/api/v2/workdays/{WorkDayID}/auth \\ -H 'x-api-key: {API_KEY}' ``` +### [Remove-JcSdkWorkflow](Remove-JcSdkWorkflow.md) +Endpoint for deleting accessworkflow by id + ### [Restart-JcSdkAppleMdmDevice](Restart-JcSdkAppleMdmDevice.md) Restarts a DEP-enrolled device. @@ -3086,6 +3114,15 @@ curl -X PUT https://console.jumpcloud.com/api/v2/workdays/{WorkdayID} \\ }\t' ``` +### [Set-JcSdkWorkflow](Set-JcSdkWorkflow.md) +Endpoint for updating a new access workflow + +### [Set-JcSdkWorkflowAccessRequest](Set-JcSdkWorkflowAccessRequest.md) +Endpoint that set the workflow access request by id + +### [Set-JcSdkWorkflowSetting](Set-JcSdkWorkflowSetting.md) +Endpoint for updating a access workflow settings for an organization + ### [Stop-JcSdkAppleMdmDevice](Stop-JcSdkAppleMdmDevice.md) Shuts down a DEP-enrolled device. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md index 00b6ab331..ee3ce5f6c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -244,6 +244,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md index d66f45306..4da6defb2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md index b27d46329..e223296b5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md schema: 2.0.0 --- @@ -228,6 +228,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md index e67d5cfcc..fd89b1abf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md schema: 2.0.0 --- @@ -198,6 +198,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md index 5aaf6e71b..1a6475757 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md index 7cc3efd46..c3c0d3ad1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md index 992089c5c..41d669bc0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md index 6b3a082c6..d5926af10 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md index 09a078107..86b98f54c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md index a039d8bc7..1a83cbc49 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md schema: 2.0.0 --- @@ -278,6 +278,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md index 06fc5da8f..572244796 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md schema: 2.0.0 --- @@ -240,6 +240,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md index 7a99c5b18..465069af6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md index ccbb42618..455585994 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- @@ -240,6 +240,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md index 384a0b359..80a06db56 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md schema: 2.0.0 --- @@ -240,6 +240,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md index a3aea9af8..489e9981b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md index 200771a84..2e23b709d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md index 5912494fc..5f0e44303 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md schema: 2.0.0 --- @@ -386,6 +386,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md index 899af73dd..ac7037cf3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md index 4d3c55924..41e45deda 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md index 0d1f703b3..e1b47441e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md index f8a38dc5e..ef17cec55 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md new file mode 100644 index 000000000..d4eb6a5c4 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md @@ -0,0 +1,471 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md +schema: 2.0.0 +--- + +# New-JcSdkWorkflow + +## SYNOPSIS +Endpoint for adding a new access workflow + +## SYNTAX + +### CreateExpanded (Default) +``` +New-JcSdkWorkflow -ConsoleHost [-ApprovalType ] [-ApproverRequirement ] + [-ApproverResources ] [-Category ] [-Description ] + [-FixedDuration ] [-IconColor ] [-IconUrl ] [-MultiSelectDuration ] + [-Name ] [-NonAdminApproval] [-OrganizationObjectIdInputFile ] [-ResourceId ] + [-ResourceType ] [-SlackConfig ] [-SlackEnabled] [-Status ] + [-TimeBasedAccess] [-TtlConfig ] [-VisibleTo ] [-Confirm] [-WhatIf] [] +``` + +### Create +``` +New-JcSdkWorkflow -ConsoleHost -Body [-Confirm] + [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for adding a new access workflow + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ApprovalType +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApproverRequirement +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApproverResources +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoApproverResource[] +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest +Parameter Sets: Create +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Category +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FixedDuration +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IconColor +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IconUrl +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MultiSelectDuration +. + +```yaml +Type: System.String[] +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NonAdminApproval +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceType +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SlackConfig +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoSlackConfig[] +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SlackEnabled +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TimeBasedAccess +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TtlConfig +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VisibleTo +. + +```yaml +Type: System.String[] +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`APPROVERRESOURCES `: . + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: + +`BODY `: . + - `[ApprovalType ]`: + - `[ApproverRequirement ]`: + - `[ApproverResources >]`: + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: + - `[Category ]`: + - `[Description ]`: + - `[FixedDuration ]`: + - `[IconColor ]`: + - `[IconUrl ]`: + - `[MultiSelectDuration >]`: + - `[Name ]`: + - `[NonAdminApproval ]`: + - `[OrganizationObjectId ]`: + - `[ResourceId ]`: + - `[ResourceType ]`: + - `[SlackConfig >]`: + - `[SlackResourceId ]`: + - `[SlackEnabled ]`: + - `[Status ]`: + - `[TimeBasedAccess ]`: + - `[TtlConfig ]`: + - `[VisibleTo >]`: + +`SLACKCONFIG `: . + - `[SlackResourceId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md new file mode 100644 index 000000000..f768526b8 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md @@ -0,0 +1,195 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md +schema: 2.0.0 +--- + +# New-JcSdkWorkflowAccessRequest + +## SYNOPSIS +Endpoint for adding a new workflow access request + +## SYNTAX + +### CreateExpanded (Default) +``` +New-JcSdkWorkflowAccessRequest -ConsoleHost [-Id ] [-OrganizationObjectIdInputFile ] + [-Reason ] [-RequestedDuration ] [-Confirm] [-WhatIf] [] +``` + +### Create +``` +New-JcSdkWorkflowAccessRequest -ConsoleHost -Body + [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for adding a new workflow access request + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest +Parameter Sets: Create +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Reason +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RequestedDuration +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequestResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`BODY `: . + - `[Id ]`: + - `[OrganizationObjectId ]`: + - `[Reason ]`: + - `[RequestedDuration ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md new file mode 100644 index 000000000..b72e83f14 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md @@ -0,0 +1,251 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md +schema: 2.0.0 +--- + +# New-JcSdkWorkflowSetting + +## SYNOPSIS +Endpoint for adding a new access workflow Settings + +## SYNTAX + +### CreateExpanded (Default) +``` +New-JcSdkWorkflowSetting -ConsoleHost [-AdminApprovalEmail] + [-ChannelEvents ] [-ExposeApprovalProgress] + [-OrganizationObjectIdInputFile ] [-ResourceRequest] [-UserApprovalEmail] [-UserRequestEmail] + [-Confirm] [-WhatIf] [] +``` + +### Create +``` +New-JcSdkWorkflowSetting -ConsoleHost -Body + [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for adding a new access workflow Settings + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -AdminApprovalEmail +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest +Parameter Sets: Create +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ChannelEvents +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoChannelEvent[] +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExposeApprovalProgress +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceRequest +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserApprovalEmail +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserRequestEmail +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`BODY `: . + - `[AdminApprovalEmail ]`: + - `[ChannelEvents >]`: + - `[ChannelObjectId ]`: + - `[EventTypes >]`: + - `[ExposeApprovalProgress ]`: + - `[OrganizationObjectId ]`: + - `[ResourceRequest ]`: + - `[UserApprovalEmail ]`: + - `[UserRequestEmail ]`: + +`CHANNELEVENTS `: . + - `[ChannelObjectId ]`: + - `[EventTypes >]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md new file mode 100644 index 000000000..53feddb69 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md @@ -0,0 +1,212 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md +schema: 2.0.0 +--- + +# New-JcSdkWorkflowUserApprovalRequest + +## SYNOPSIS +Endpoint for user approval + +## SYNTAX + +### CreateExpanded (Default) +``` +New-JcSdkWorkflowUserApprovalRequest -ConsoleHost [-ApprovedDuration ] [-Id ] + [-OrganizationObjectIdInputFile ] [-Remarks ] [-Status ] [-Confirm] [-WhatIf] + [] +``` + +### Create +``` +New-JcSdkWorkflowUserApprovalRequest -ConsoleHost -Body + [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for user approval + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ApprovedDuration +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest +Parameter Sets: Create +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Remarks +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`BODY `: . + - `[ApprovedDuration ]`: + - `[Id ]`: + - `[OrganizationObjectId ]`: + - `[Remarks ]`: + - `[Status ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md index 508130a47..3b2d1b0d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md schema: 2.0.0 --- @@ -166,6 +166,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md index 3659015c9..9692cd02b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md schema: 2.0.0 --- @@ -193,6 +193,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md index 12150956e..4650c6bbf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md schema: 2.0.0 --- @@ -177,6 +177,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md index 60d3c074b..de216e416 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md schema: 2.0.0 --- @@ -199,6 +199,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md index 7760eaaa9..15e2db64b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -202,6 +202,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md index 523c4ee44..bb81aca8c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md schema: 2.0.0 --- @@ -162,6 +162,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md index b08ff139f..e03fd61c9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- @@ -177,6 +177,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md index 6b2a909c0..1013128e3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md schema: 2.0.0 --- @@ -176,6 +176,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md index 5919216c8..727d21909 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- @@ -162,6 +162,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md index 19d56c445..e815202ea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md schema: 2.0.0 --- @@ -164,6 +164,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md index 2c3174c7d..95120a99e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md index 0d4c83127..e72aca6b3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md schema: 2.0.0 --- @@ -197,6 +197,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md index 10b32abf6..4333e2f6a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md schema: 2.0.0 --- @@ -166,6 +166,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md index 8b3101e88..c313b12fd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- @@ -193,6 +193,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md index 139b5cb62..c819e8336 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md schema: 2.0.0 --- @@ -197,6 +197,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md index d8fad5391..3fbb7fcc8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md schema: 2.0.0 --- @@ -179,6 +179,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md index e06c6d90e..5f70a728d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md schema: 2.0.0 --- @@ -186,6 +186,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md index 5779c86f5..6f6ab0d20 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md schema: 2.0.0 --- @@ -179,6 +179,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md index 00aad559a..563dbef2a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md schema: 2.0.0 --- @@ -182,6 +182,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md index 714179cce..40c3ec57c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md schema: 2.0.0 --- @@ -191,6 +191,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md index d69f91e4e..564bf6573 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md schema: 2.0.0 --- @@ -193,6 +193,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md index 937e8704c..77547ff5f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md schema: 2.0.0 --- @@ -173,6 +173,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md index 64a5bdc04..73f9e15be 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md schema: 2.0.0 --- @@ -178,6 +178,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md new file mode 100644 index 000000000..5eccf65bb --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md @@ -0,0 +1,185 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md +schema: 2.0.0 +--- + +# Remove-JcSdkWorkflow + +## SYNOPSIS +Endpoint for deleting accessworkflow by id + +## SYNTAX + +### Delete (Default) +``` +Remove-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-OrganizationObjectId ] + [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-JcSdkWorkflow -ConsoleHost -InputObject + [-OrganizationObjectId ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for deleting accessworkflow by id + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ApprovalFlowId +. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -OrganizationObjectId +. + +```yaml +Type: System.Byte[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoDeleteAccessWorkflowResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`INPUTOBJECT `: Identity Parameter + - `[AccountId ]`: + - `[ActivedirectoryId ]`: + - `[AdministratorId ]`: + - `[AgentId ]`: + - `[AppleMdmId ]`: + - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: + - `[CommandId ]`: ObjectID of the Command. + - `[CustomEmailType ]`: + - `[DeviceId ]`: + - `[GroupId ]`: ObjectID of the Policy Group. + - `[GsuiteId ]`: ObjectID of the G Suite instance. + - `[Id ]`: ObjectID of this Active Directory instance. + - `[JobId ]`: + - `[LdapserverId ]`: ObjectID of the LDAP Server. + - `[Office365Id ]`: ObjectID of the Office 365 instance. + - `[PolicyId ]`: ObjectID of the Policy. + - `[ProviderId ]`: + - `[PushEndpointId ]`: + - `[RadiusserverId ]`: ObjectID of the Radius Server. + - `[SoftwareAppId ]`: ObjectID of the Software App. + - `[SystemId ]`: ObjectID of the System. + - `[UserId ]`: ObjectID of the User. + - `[WorkdayId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md index 00ed41431..3b5462588 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -244,6 +244,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md index b76d0c4d0..7ff9af5c0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md schema: 2.0.0 --- @@ -290,6 +290,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md index 9b3958f94..5b36ca223 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md schema: 2.0.0 --- @@ -726,6 +726,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md index e5558d79f..270341def 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md schema: 2.0.0 --- @@ -287,6 +287,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md index 9bf3b2cba..c3f154d95 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md schema: 2.0.0 --- @@ -291,6 +291,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md index 5bec3df60..857b26255 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- @@ -312,6 +312,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md index d46865e84..b3002050b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md schema: 2.0.0 --- @@ -293,6 +293,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md index 87e22a036..0ad1b566d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md schema: 2.0.0 --- @@ -291,6 +291,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md index 336de7379..5ae07c4f4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md schema: 2.0.0 --- @@ -262,6 +262,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md index 617cc2961..c8b1e5e27 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md schema: 2.0.0 --- @@ -289,6 +289,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md index 5d16e100f..9e6402e00 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- @@ -255,6 +255,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md index 9d9590644..ac3898896 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md schema: 2.0.0 --- @@ -289,6 +289,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md index e1c59372d..555c712b8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md schema: 2.0.0 --- @@ -283,6 +283,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md index 4610c44c2..083f9a7df 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md schema: 2.0.0 --- @@ -289,6 +289,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md index 8fa7ef34f..904d75be0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md schema: 2.0.0 --- @@ -228,6 +228,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md index 0111c44c7..8c8c6bf9c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md schema: 2.0.0 --- @@ -291,6 +291,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md index 031e90f4c..dc811bf0e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md schema: 2.0.0 --- @@ -268,6 +268,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md index c709216ab..1b3845c70 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md schema: 2.0.0 --- @@ -293,6 +293,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md index 6886b22ac..d783a0391 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md schema: 2.0.0 --- @@ -458,6 +458,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md index 8bd90a777..c718d679a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md schema: 2.0.0 --- @@ -285,6 +285,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md index 1904e913e..d3eff7104 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md schema: 2.0.0 --- @@ -337,6 +337,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md index 7ec393b61..4545dd5d2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md schema: 2.0.0 --- @@ -396,6 +396,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md index a63b03770..2f09cafea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md schema: 2.0.0 --- @@ -291,6 +291,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md index c2797c177..b19dae215 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md schema: 2.0.0 --- @@ -300,6 +300,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md index 4ece3a8ea..b63d87ce6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md schema: 2.0.0 --- @@ -304,6 +304,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md index 54331cb07..730b082fc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md schema: 2.0.0 --- @@ -414,6 +414,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md index 95be8eee5..ccc6cc3ee 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md schema: 2.0.0 --- @@ -291,6 +291,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md index 3e4463c8a..839da547d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md schema: 2.0.0 --- @@ -268,6 +268,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md index 322018d01..046a0af2c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md schema: 2.0.0 --- @@ -258,6 +258,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md new file mode 100644 index 000000000..9e1a2a045 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md @@ -0,0 +1,517 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md +schema: 2.0.0 +--- + +# Set-JcSdkWorkflow + +## SYNOPSIS +Endpoint for updating a new access workflow + +## SYNTAX + +### SetExpanded (Default) +``` +Set-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-ApprovalType ] + [-ApproverRequirement ] [-ApproverResources ] + [-Description ] [-FixedDuration ] [-IconColor ] [-IconUrl ] + [-MultiSelectDuration ] [-Name ] [-NonAdminApproval] + [-OrganizationObjectIdInputFile ] [-ResourceId ] + [-SlackConfig ] [-SlackEnabled] [-Status ] [-TimeBasedAccess] + [-TtlConfig ] [-VisibleTo ] [-Confirm] [-WhatIf] [] +``` + +### Set +``` +Set-JcSdkWorkflow -ConsoleHost -ApprovalFlowId + -Body [-Confirm] + [-WhatIf] [] +``` + +### SetViaIdentity +``` +Set-JcSdkWorkflow -ConsoleHost -InputObject + -Body [-Confirm] + [-WhatIf] [] +``` + +### SetViaIdentityExpanded +``` +Set-JcSdkWorkflow -ConsoleHost -InputObject [-ApprovalType ] + [-ApproverRequirement ] [-ApproverResources ] + [-Description ] [-FixedDuration ] [-IconColor ] [-IconUrl ] + [-MultiSelectDuration ] [-Name ] [-NonAdminApproval] + [-OrganizationObjectIdInputFile ] [-ResourceId ] + [-SlackConfig ] [-SlackEnabled] [-Status ] [-TimeBasedAccess] + [-TtlConfig ] [-VisibleTo ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for updating a new access workflow + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -ApprovalFlowId +. + +```yaml +Type: System.String +Parameter Sets: Set, SetExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApprovalType +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApproverRequirement +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApproverResources +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoApproverResource[] +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IPaths14Hfh8UApprovalflowsApprovalflowidPutRequestbodyContentApplicationJsonSchema +Parameter Sets: Set, SetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FixedDuration +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IconColor +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IconUrl +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +Parameter Sets: SetViaIdentity, SetViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -MultiSelectDuration +. + +```yaml +Type: System.String[] +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NonAdminApproval +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SlackConfig +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoSlackConfig[] +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SlackEnabled +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TimeBasedAccess +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TtlConfig +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VisibleTo +. + +```yaml +Type: System.String[] +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity + +### JumpCloud.SDK.V2.Models.IPaths14Hfh8UApprovalflowsApprovalflowidPutRequestbodyContentApplicationJsonSchema + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`APPROVERRESOURCES `: . + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: + +`BODY `: . + - `[ApprovalType ]`: + - `[ApproverRequirement ]`: + - `[ApproverResources >]`: + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: + - `[Description ]`: + - `[FixedDuration ]`: + - `[IconColor ]`: + - `[IconUrl ]`: + - `[MultiSelectDuration >]`: + - `[Name ]`: + - `[NonAdminApproval ]`: + - `[OrganizationObjectId ]`: + - `[ResourceId ]`: + - `[SlackConfig >]`: + - `[SlackResourceId ]`: + - `[SlackEnabled ]`: + - `[Status ]`: + - `[TimeBasedAccess ]`: + - `[TtlConfig ]`: + - `[VisibleTo >]`: + +`INPUTOBJECT `: Identity Parameter + - `[AccountId ]`: + - `[ActivedirectoryId ]`: + - `[AdministratorId ]`: + - `[AgentId ]`: + - `[AppleMdmId ]`: + - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: + - `[CommandId ]`: ObjectID of the Command. + - `[CustomEmailType ]`: + - `[DeviceId ]`: + - `[GroupId ]`: ObjectID of the Policy Group. + - `[GsuiteId ]`: ObjectID of the G Suite instance. + - `[Id ]`: ObjectID of this Active Directory instance. + - `[JobId ]`: + - `[LdapserverId ]`: ObjectID of the LDAP Server. + - `[Office365Id ]`: ObjectID of the Office 365 instance. + - `[PolicyId ]`: ObjectID of the Policy. + - `[ProviderId ]`: + - `[PushEndpointId ]`: + - `[RadiusserverId ]`: ObjectID of the Radius Server. + - `[SoftwareAppId ]`: ObjectID of the Software App. + - `[SystemId ]`: ObjectID of the System. + - `[UserId ]`: ObjectID of the User. + - `[WorkdayId ]`: + +`SLACKCONFIG `: . + - `[SlackResourceId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md new file mode 100644 index 000000000..ff3e2da1f --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md @@ -0,0 +1,301 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md +schema: 2.0.0 +--- + +# Set-JcSdkWorkflowAccessRequest + +## SYNOPSIS +Endpoint that set the workflow access request by id + +## SYNTAX + +### SetExpanded (Default) +``` +Set-JcSdkWorkflowAccessRequest -ConsoleHost -Id [-Admin ] + [-ApprovedDuration ] [-InternalNote ] [-OrganizationObjectIdInputFile ] + [-Remarks ] [-Status ] [-Confirm] [-WhatIf] [] +``` + +### Set +``` +Set-JcSdkWorkflowAccessRequest -ConsoleHost -Id + -Body [-Confirm] [-WhatIf] + [] +``` + +### SetViaIdentity +``` +Set-JcSdkWorkflowAccessRequest -ConsoleHost -InputObject + -Body [-Confirm] [-WhatIf] + [] +``` + +### SetViaIdentityExpanded +``` +Set-JcSdkWorkflowAccessRequest -ConsoleHost -InputObject [-Admin ] + [-ApprovedDuration ] [-InternalNote ] [-OrganizationObjectIdInputFile ] + [-Remarks ] [-Status ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint that set the workflow access request by id + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -Admin +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApprovedDuration +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IPaths17F25RsApprovalflowrequestIdPutRequestbodyContentApplicationJsonSchema +Parameter Sets: Set, SetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +. + +```yaml +Type: System.String +Parameter Sets: Set, SetExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity +Parameter Sets: SetViaIdentity, SetViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InternalNote +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Remarks +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +. + +```yaml +Type: System.String +Parameter Sets: SetExpanded, SetViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity + +### JumpCloud.SDK.V2.Models.IPaths17F25RsApprovalflowrequestIdPutRequestbodyContentApplicationJsonSchema + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateWorkflowAccessRequestResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`BODY `: . + - `[Admin ]`: + - `[ApprovedDuration ]`: + - `[InternalNote ]`: + - `[OrganizationObjectId ]`: + - `[Remarks ]`: + - `[Status ]`: + +`INPUTOBJECT `: Identity Parameter + - `[AccountId ]`: + - `[ActivedirectoryId ]`: + - `[AdministratorId ]`: + - `[AgentId ]`: + - `[AppleMdmId ]`: + - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: + - `[CommandId ]`: ObjectID of the Command. + - `[CustomEmailType ]`: + - `[DeviceId ]`: + - `[GroupId ]`: ObjectID of the Policy Group. + - `[GsuiteId ]`: ObjectID of the G Suite instance. + - `[Id ]`: ObjectID of this Active Directory instance. + - `[JobId ]`: + - `[LdapserverId ]`: ObjectID of the LDAP Server. + - `[Office365Id ]`: ObjectID of the Office 365 instance. + - `[PolicyId ]`: ObjectID of the Policy. + - `[ProviderId ]`: + - `[PushEndpointId ]`: + - `[RadiusserverId ]`: ObjectID of the Radius Server. + - `[SoftwareAppId ]`: ObjectID of the Software App. + - `[SystemId ]`: ObjectID of the System. + - `[UserId ]`: ObjectID of the User. + - `[WorkdayId ]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md new file mode 100644 index 000000000..d6d2bfa02 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md @@ -0,0 +1,251 @@ +--- +external help file: +Module Name: JumpCloud.SDK.V2 +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md +schema: 2.0.0 +--- + +# Set-JcSdkWorkflowSetting + +## SYNOPSIS +Endpoint for updating a access workflow settings for an organization + +## SYNTAX + +### SetExpanded (Default) +``` +Set-JcSdkWorkflowSetting -ConsoleHost [-AdminApprovalEmail] + [-ChannelEvents ] [-ExposeApprovalProgress] + [-OrganizationObjectIdInputFile ] [-ResourceRequest] [-UserApprovalEmail] [-UserRequestEmail] + [-Confirm] [-WhatIf] [] +``` + +### Set +``` +Set-JcSdkWorkflowSetting -ConsoleHost -Body + [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Endpoint for updating a access workflow settings for an organization + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} +``` + + + +## PARAMETERS + +### -AdminApprovalEmail +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest +Parameter Sets: Set +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ChannelEvents +. + +```yaml +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoChannelEvent[] +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConsoleHost +Region for JumpCloud API host. +Use 'console' for US or 'console.eu' for EU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExposeApprovalProgress +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationObjectIdInputFile +Input File for OrganizationObjectId (.) + +```yaml +Type: System.String +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceRequest +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserApprovalEmail +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserRequestEmail +. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: SetExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest + +## OUTPUTS + +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsResponse + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +`BODY `: . + - `[AdminApprovalEmail ]`: + - `[ChannelEvents >]`: + - `[ChannelObjectId ]`: + - `[EventTypes >]`: + - `[ExposeApprovalProgress ]`: + - `[OrganizationObjectId ]`: + - `[ResourceRequest ]`: + - `[UserApprovalEmail ]`: + - `[UserRequestEmail ]`: + +`CHANNELEVENTS `: . + - `[ChannelObjectId ]`: + - `[EventTypes >]`: + +## RELATED LINKS + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md index d80149c35..ebd9bb9e5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -195,6 +195,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md index 07609dd21..cd4fae996 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md schema: 2.0.0 --- @@ -180,6 +180,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md index a6dcb0e76..7130439eb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md schema: 2.0.0 --- @@ -197,6 +197,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md index d77d8ac10..fef14710b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- @@ -586,6 +586,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md index ad3c88679..eab40f494 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md index 26e30ce80..735d81e94 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md schema: 2.0.0 --- @@ -384,6 +384,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md index f8ec700b5..f6c832434 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md schema: 2.0.0 --- @@ -252,6 +252,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md index 107e3d33d..2b65d03ad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md schema: 2.0.0 --- @@ -263,6 +263,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md index 6dd69a91a..59e2a7f7d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md schema: 2.0.0 --- @@ -356,6 +356,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md index fa96a7d8b..a3eb27fc0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md schema: 2.0.0 --- @@ -249,6 +249,7 @@ To create the parameters described below, construct a hash table containing the - `[AgentId ]`: - `[AppleMdmId ]`: - `[ApplicationId ]`: ObjectID of the Application. + - `[ApprovalFlowId ]`: - `[CommandId ]`: ObjectID of the Command. - `[CustomEmailType ]`: - `[DeviceId ]`: diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 new file mode 100644 index 000000000..c4167d965 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 @@ -0,0 +1,29 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflow')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflow.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-JcSdkWorkflow' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 new file mode 100644 index 000000000..f20cec666 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 @@ -0,0 +1,29 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessRequest')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflowAccessRequest.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-JcSdkWorkflowAccessRequest' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 new file mode 100644 index 000000000..daf668a48 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessRequestProgress')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflowAccessRequestProgress.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-JcSdkWorkflowAccessRequestProgress' { + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 new file mode 100644 index 000000000..83c3f8768 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 @@ -0,0 +1,21 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowSetting')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflowSetting.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-JcSdkWorkflowSetting' { + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 new file mode 100644 index 000000000..28cfc756f --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflow')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflow.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-JcSdkWorkflow' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Create' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 new file mode 100644 index 000000000..a57be98b6 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowAccessRequest')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflowAccessRequest.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-JcSdkWorkflowAccessRequest' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Create' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 new file mode 100644 index 000000000..b4d61f5db --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowSetting')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflowSetting.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-JcSdkWorkflowSetting' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Create' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 new file mode 100644 index 000000000..bfd9f928e --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowUserApprovalRequest')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflowUserApprovalRequest.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-JcSdkWorkflowUserApprovalRequest' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Create' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 new file mode 100644 index 000000000..ac4a99571 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Remove-JcSdkWorkflow')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-JcSdkWorkflow.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Remove-JcSdkWorkflow' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 new file mode 100644 index 000000000..a1fbbcea2 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 @@ -0,0 +1,33 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflow')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflow.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Set-JcSdkWorkflow' { + It 'SetExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Set' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'SetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'SetViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 new file mode 100644 index 000000000..43dc97bb4 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 @@ -0,0 +1,33 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowAccessRequest')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflowAccessRequest.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Set-JcSdkWorkflowAccessRequest' { + It 'SetExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Set' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'SetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'SetViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 new file mode 100644 index 000000000..3ef70cb9b --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowSetting')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflowSetting.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Set-JcSdkWorkflowSetting' { + It 'SetExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Set' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/SwaggerSpecs/JumpCloud.SDK.V2.json b/SwaggerSpecs/JumpCloud.SDK.V2.json index 646fe86e8..f720a604e 100644 --- a/SwaggerSpecs/JumpCloud.SDK.V2.json +++ b/SwaggerSpecs/JumpCloud.SDK.V2.json @@ -1099,6 +1099,10 @@ "compiledAttributes": { "$ref": "#/definitions/GraphAttributes" }, + "externalId": { + "description": "The external resource ID that is being synced. Only present when syncStatus query parameter is true.", + "type": "string" + }, "id": { "description": "Object ID of this graph object.", "type": "string" @@ -1113,6 +1117,9 @@ }, "type": "array" }, + "syncStatus": { + "$ref": "#/definitions/SyncStatus" + }, "type": { "$ref": "#/definitions/GraphType" } @@ -1222,7 +1229,8 @@ "description": "Targets which a \"command\" can be associated to.", "enum": [ "system", - "system_group" + "system_group", + "password_manager_item" ], "type": "string", "x-ms-enum": { @@ -1235,6 +1243,10 @@ { "name": "systems_group", "value": "system_group" + }, + { + "name": "password_manager_item", + "value": "password_manager_item" } ] } @@ -1356,7 +1368,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-Policy1", + "name": "GraphOperation-Policy3", "values": [ { "name": "systems", @@ -1396,7 +1408,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-PolicyGroup1", + "name": "GraphOperation-PolicyGroup3", "values": [ { "name": "systems", @@ -1435,7 +1447,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-PolicyGroup-Member2" + "name": "GraphOperation-PolicyGroup-Member4" } } }, @@ -1495,7 +1507,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-SoftwareApp1", + "name": "GraphOperation-SoftwareApp3", "values": [ { "name": "systems", @@ -1545,7 +1557,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-System3" + "name": "GraphOperation-System5" } } }, @@ -1578,7 +1590,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-SystemGroup3" + "name": "GraphOperation-SystemGroup5" } } }, @@ -1607,7 +1619,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-SystemGroup-Member4", + "name": "GraphOperation-SystemGroup-Member6", "values": [ { "name": "systems", @@ -1658,7 +1670,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-User5", + "name": "GraphOperation-User7", "values": [ { "name": "active_directory", @@ -1738,7 +1750,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-UserGroup5", + "name": "GraphOperation-UserGroup7", "values": [ { "name": "active_directory", @@ -1809,7 +1821,7 @@ ], "type": "string", "x-ms-enum": { - "name": "GraphOperation-UserGroup-Member6" + "name": "GraphOperation-UserGroup-Member8" } } }, @@ -1860,10 +1872,17 @@ "description": "ObjectId uniquely identifying a Group.", "type": "string" }, + "memberQueryErrorFlags": { + "$ref": "#/definitions/MemberQueryErrorFlags" + }, "name": { "description": "Display name of a Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "type": { "$ref": "#/definitions/GroupType" } @@ -1999,6 +2018,13 @@ }, "description": "Query object for group membership. Both 'filters' and 'searchFilters' accept stringified JSON that will be parsed and validated by the API." }, + "MemberQueryErrorFlags": { + "description": "Group error flags indicating errors encountered during member query evaluation.\n\nPossible flag values:\n- CYCLE: A cyclic dependency was detected in group membership\n- INVALID_GROUP_REFERENCE: The group reference is invalid or does not exist\n\nThe `member_query_error_flags` as a field supports array-based filtering:\n- `CO`: Contains Overlap - check if array overlaps with the specified array (use `[\"VALUE\"]` for single value)\n- `NCO`: Not Contains Overlap - check if array does not overlap\n- `EQ`: Exact array match\n- `NE`: Not equal to array\n- `IN`: Array contains any of the specified values\n**Note:** Single `value` is converted to array `[\"value\"]``.", + "items": { + "type": "string" + }, + "type": "array" + }, "OSRestriction": { "description": "Contains OS properties to restrict the application of policies to devices based on the device's OS", "example": { @@ -2244,6 +2270,10 @@ "description": "Display name of a Policy Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "type": { "description": "The type of the group; always 'policy' for a Policy Group.", "enum": [ @@ -2717,7 +2747,7 @@ "amountPaid": "10.9", "amountRemaining": "189.1", "currency": "USD", - "dueDate": "2021-08-07T00:00:00", + "dueDate": "2021-08-07", "id": "234324", "status": "Partially Paid" }, @@ -2875,6 +2905,33 @@ "readOnly": true, "type": "object" }, + "SyncStatus": { + "description": "Sync status information for this object. Only present when syncStatus query parameter is true.", + "properties": { + "code": { + "description": "Status code of the sync operation.", + "type": "integer" + }, + "details": { + "description": "Additional details about the sync status.", + "items": { + "type": "object", + "additionalProperties": true + }, + "type": "array" + }, + "message": { + "description": "Status message of the sync operation.", + "type": "string" + }, + "syncedAt": { + "description": "The last time the object was synced.", + "format": "date-time", + "type": "string" + } + }, + "type": "object" + }, "SystemGroup": { "properties": { "attributes": { @@ -2895,6 +2952,9 @@ "memberQuery": { "$ref": "#/definitions/MemberQuery" }, + "memberQueryErrorFlags": { + "$ref": "#/definitions/MemberQueryErrorFlags" + }, "memberQueryExemptions": { "description": "Array of GraphObjects exempted from the query", "items": { @@ -2913,6 +2973,10 @@ "description": "Display name of a System Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "type": { "description": "The type of the group; always 'system' for a System Group.", "enum": [ @@ -3088,6 +3152,9 @@ "memberQuery": { "$ref": "#/definitions/MemberQuery" }, + "memberQueryErrorFlags": { + "$ref": "#/definitions/MemberQueryErrorFlags" + }, "memberQueryExemptions": { "description": "Array of GraphObjects exempted from the query", "items": { @@ -3106,6 +3173,10 @@ "description": "Display name of a User Group.", "type": "string" }, + "organizationObjectId": { + "description": "id of the organization owning this group", + "type": "string" + }, "suggestionCounts": { "$ref": "#/definitions/SuggestionCounts" }, @@ -3416,6 +3487,9 @@ "imei": { "type": "string" }, + "isAppleSilicon": { + "type": "boolean" + }, "isSupervised": { "type": "boolean" }, @@ -3483,6 +3557,9 @@ "passcodePresent": { "type": "boolean" }, + "recoveryLockEnabled": { + "type": "boolean" + }, "userApprovedEnrollment": { "type": "boolean" } @@ -4609,205 +4686,931 @@ "title": "Job WorkResult", "type": "object" }, - "jumpcloud.search.Function": { - "default": "function_unknown", - "enum": [ - "function_unknown", - "count", - "avg", - "max", - "min", - "sum", - "count_unique" - ], - "type": "string" - }, - "jumpcloud.search.PaginationParams": { - "description": "Parameters for controlling pagination of search results.", + "jumpcloud.ingresso.AccessWorkflow": { "properties": { - "offset": { - "description": "Zero-based index of the first result to return.\nFor example: 0 returns the first page, 100 returns the second page when page_size=100.", - "format": "int32", - "type": "integer" + "approvalType": { + "type": "string" }, - "pageSize": { - "description": "Number of results to return per page.\nIf not specified, uses server default (typically 50-100 items).", - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, - "jumpcloud.search.SearchRequest": { - "properties": { - "aggregations": { + "approverRequirement": { + "type": "string" + }, + "approverResources": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestAggregation" + "$ref": "#/definitions/jumpcloud.ingresso.ApproverResource" }, "type": "array" }, - "cacheToken": { - "title": "Optional: Token for retrieving data from a previously cached result set", - "type": "string", - "x-nullable": true + "category": { + "type": "string" }, - "fields": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFields" + "createdBy": { + "type": "string" }, - "filters": { + "description": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "multiSelectDuration": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + "type": "string" }, "type": "array" }, - "limit": { - "description": "Maximum number of rows (inclusive) to return in the objects. Note that there is an implicit limit enforced always\nin the external API.", - "format": "int32", - "type": "integer" - }, - "pagination": { - "$ref": "#/definitions/jumpcloud.search.PaginationParams" + "name": { + "type": "string" }, - "requestCache": { - "title": "Optional: If true, cache the full result set of this query", + "nonAdminApproval": { "type": "boolean" }, - "sort": { + "organizationId": { + "format": "byte", + "type": "string" + }, + "resources": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestSort" + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflowResources" }, "type": "array" - } - }, - "type": "object" - }, - "jumpcloud.search.SearchRequestAggregation": { - "properties": { - "field": { - "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", + }, + "slackConfig": { "items": { - "type": "string" + "$ref": "#/definitions/jumpcloud.ingresso.SlackConfig" }, "type": "array" }, - "function": { - "$ref": "#/definitions/jumpcloud.search.Function" + "slackEnabled": { + "type": "boolean" }, - "name": { + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "$ref": "#/definitions/jumpcloud.ingresso.TtlConfig" + }, + "updatedBy": { "type": "string" + }, + "visibleTo": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.VisibleTo" + }, + "type": "array" } }, "type": "object" }, - "jumpcloud.search.SearchRequestFields": { + "jumpcloud.ingresso.AccessWorkflowResources": { "properties": { - "exclude": { - "items": { - "type": "string" - }, - "type": "array" + "resourceId": { + "type": "string" }, - "include": { - "items": { - "type": "string" - }, - "type": "array" + "resourceName": { + "type": "string" + }, + "resourceType": { + "type": "string" } }, "type": "object" }, - "jumpcloud.search.SearchRequestFilter": { - "description": "A filter for a search query.", + "jumpcloud.ingresso.AccessWorkflowSettings": { "properties": { - "field": { - "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", - "type": "string", - "x-nullable": true + "adminApprovalEmail": { + "type": "boolean" }, - "filters": { - "description": "Only allowed when operation is 'and'/'or'. This allows for logical groupings of sub-filters provided in this\nfield's array.", + "channelEvents": { "items": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" }, "type": "array" }, - "operation": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter.Operation" + "createdBy": { + "type": "string" }, - "query": { - "$ref": "#/definitions/jumpcloud.search.SearchRequest" + "exposeApprovalProgress": { + "type": "boolean" }, - "unit": { - "type": "string", - "x-nullable": true + "id": { + "format": "int32", + "type": "integer" }, - "value": { - "description": "Static value to be compared against. For values that will need to be compared as a datetime object, this should be\nprovided as an ISO8601 format string with no offset (UTC). This is made optional so that\nthe client can omit this field on AND/OR filters." + "resourceRequest": { + "type": "boolean" + }, + "updatedBy": { + "type": "string" + }, + "userApprovalEmail": { + "type": "boolean" + }, + "userRequestEmail": { + "type": "boolean" } }, "type": "object" }, - "jumpcloud.search.SearchRequestFilter.Operation": { - "default": "operation_unknown", - "description": "Filter operation to be applied:\nand - Provides logical 'and' groupings of all elements provided in the `filters` array (all sub-filter criteria\n must be satisfied).\nor - Provides logical 'or' groupings of all elements provided in the `filters` array (any sub-filter criteria can\n be satisfied).\nequals - Compares `field` with `value` for a // match. Case insensitive.\nnot_equals - Compares `field` with `value` for an exact non-match. Case insensitive.\ngreater_than - Checks if `field` is greater numerically than static `value` (non-inclusive). Works for numbers and\n datetime types.\nless_than - Checks if `field` is less than static `value` (non-inclusive). Works for numbers and datetime types.\nstarts_with - Checks if `field` starts with static `value`. Case insensitive. Only works for string types.\nends_with - Checks if `field` ends with static `value`. Case insensitive. Only works for string types.\ncontains - Checks if `field` has the static `value` as its substring. Case insensitive. Only works for string types.\nnot_contains - Checks if `field` does not have the static `value` as its substring. Case insensitive. Only works for string types.\nin - Checks if `field` is in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\nnot_in - Checks if `field` is not in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\ngreater_than_or_equals - Checks if `field` is greater than or equal to static `value`. Works for numbers and datetime types.\nless_than_or_equals - Checks if `field` is less than or equal to static `value`. Works for numbers and datetime types.\nis_null - Checks if `field` is null. Works for all field types. Requires boolean value (true for null, false for not null).\nis_empty - Checks if `field` is null or empty string. Works only for string field types. Requires boolean value (true for empty, false for not empty).\nequals_case_sensitive - Compares `field` with `value` for an exact match. Case sensitive. Only works for string types.\nnot_equals_case_sensitive - Compares `field` with `value` for an exact non-match. Case sensitive. Only works for string types.\nstarts_with_case_sensitive - Checks if `field` starts with static `value`. Case sensitive. Only works for string types.\nends_with_case_sensitive - Checks if `field` ends with static `value`. Case sensitive. Only works for string types.\ncontains_case_sensitive - Checks if `field` has the static `value` as its substring. Case sensitive. Only works for string types.\nnot_contains_case_sensitive - Checks if `field` does not have the static `value` as its substring. Case sensitive. Only works for string types.\nin_case_sensitive - Checks if `field` is in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.\nnot_in_case_sensitive - Checks if `field` is not in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.", - "enum": [ - "operation_unknown", - "and", - "or", - "equals", - "not_equals", - "greater_than", - "less_than", - "starts_with", - "ends_with", - "contains", - "not_contains", - "in", - "not_in", - "greater_than_or_equals", - "less_than_or_equals", - "is_null", - "is_empty", - "equals_case_sensitive", - "not_equals_case_sensitive", - "starts_with_case_sensitive", - "ends_with_case_sensitive", - "contains_case_sensitive", - "not_contains_case_sensitive", - "in_case_sensitive", - "not_in_case_sensitive" - ], - "type": "string" - }, - "jumpcloud.search.SearchRequestSort": { + "jumpcloud.ingresso.ApproverResource": { "properties": { - "field": { - "description": "This is a field on an object. It should always be in the form of\n. This will be case insensitive, and will be cast to\nlowercase always.", + "requireAll": { + "type": "boolean" + }, + "resourceId": { "type": "string" }, - "order": { - "$ref": "#/definitions/jumpcloud.search.SearchRequestSort.Order" + "resourceName": { + "type": "string" + }, + "resourceOrder": { + "format": "int32", + "type": "integer" + }, + "resourceType": { + "type": "string" } }, "type": "object" }, - "jumpcloud.search.SearchRequestSort.Order": { - "default": "asc", - "enum": [ - "asc", - "desc" - ], - "title": "Sort order. Defaults to ascending", - "type": "string" - }, - "ldap-server": { + "jumpcloud.ingresso.Approvers": { "properties": { - "id": { - "description": "Unique identifier of this LDAP server", - "readOnly": true, + "approvalSequence": { + "format": "int64", "type": "string" }, - "name": { + "approvalStatus": { + "type": "string" + }, + "approverId": { + "type": "string" + }, + "approverType": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "requireAll": { + "type": "boolean" + }, + "resourceId": { + "type": "string" + }, + "resourceName": { + "type": "string" + }, + "resourceType": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.ApproversProgress": { + "properties": { + "approvalSequence": { + "format": "int32", + "type": "integer" + }, + "approvalStatus": { + "type": "string" + }, + "approvedCount": { + "format": "int32", + "type": "integer" + }, + "approverId": { + "type": "string" + }, + "approverType": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "overridenApproval": { + "type": "boolean" + }, + "requireAll": { + "type": "boolean" + }, + "resourceId": { + "type": "string" + }, + "resourceName": { + "type": "string" + }, + "resourceType": { + "type": "string" + }, + "totalCount": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.ChannelEvent": { + "properties": { + "channelObjectId": { + "format": "byte", + "type": "string" + }, + "eventTypes": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.EventType" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowRequest": { + "properties": { + "approvalType": { + "type": "string" + }, + "approverRequirement": { + "type": "string" + }, + "approverResources": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ApproverResource" + }, + "type": "array" + }, + "category": { + "type": "string" + }, + "description": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "multiSelectDuration": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceId": { + "type": "string" + }, + "resourceType": { + "type": "string" + }, + "slackConfig": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.SlackConfig" + }, + "type": "array" + }, + "slackEnabled": { + "type": "boolean" + }, + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "$ref": "#/definitions/jumpcloud.ingresso.TtlConfig" + }, + "visibleTo": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowResponse": { + "properties": { + "id": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest": { + "properties": { + "adminApprovalEmail": { + "type": "boolean" + }, + "channelEvents": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" + }, + "type": "array" + }, + "exposeApprovalProgress": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceRequest": { + "type": "boolean" + }, + "userApprovalEmail": { + "type": "boolean" + }, + "userRequestEmail": { + "type": "boolean" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse": { + "properties": { + "id": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateWorkflowAccessRequestRequest": { + "properties": { + "id": { + "type": "string" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "reason": { + "type": "string" + }, + "requestedDuration": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.CreateWorkflowAccessRequestResponse": { + "properties": { + "id": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.DeleteAccessWorkflowResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.EventType": { + "default": "ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED", + "enum": [ + "ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED", + "ACCESS_MANAGEMENT_ACCESS_REQUEST", + "ACCESS_MANAGEMENT_ACCESS_REQUEST_APPROVAL", + "ACCESS_MANAGEMENT_ASSOCIATION_CHANGE", + "ACCESS_MANAGEMENT_APPROVAL_FLOW_CREATE", + "ACCESS_MANAGEMENT_APPROVAL_FLOW_UPDATE", + "ACCESS_MANAGEMENT_APPROVAL_FLOW_DELETE", + "ACCESS_MANAGEMENT_ACCESS_REQUEST_SETTINGS_UPDATE" + ], + "type": "string" + }, + "jumpcloud.ingresso.GetAccessRequestApprovalProgressResponse": { + "properties": { + "approvers": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ApproversProgress" + }, + "type": "array" + }, + "approversRequirement": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.GetAllAccessWorkFlowsResponse": { + "properties": { + "results": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflow" + }, + "type": "array" + }, + "totalCount": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.GetAllWorkflowAccessRequestResponse": { + "properties": { + "results": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.WorkflowAccessRequest" + }, + "type": "array" + }, + "totalCount": { + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.GetWorkflowAccessRequestResponse": { + "properties": { + "approvalFlowDescription": { + "type": "string" + }, + "approvalFlowId": { + "type": "string" + }, + "approvalFlowName": { + "type": "string" + }, + "approvalType": { + "type": "string" + }, + "approvedDuration": { + "type": "string" + }, + "approvers": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.Approvers" + }, + "type": "array" + }, + "approversRequirement": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "department": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "group": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "manager": { + "type": "string" + }, + "metadata": { + "format": "byte", + "type": "string" + }, + "multiSelectDuration": { + "items": { + "type": "string" + }, + "type": "array" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "remarks": { + "type": "string" + }, + "requestedDuration": { + "type": "string" + }, + "requestor": { + "type": "string" + }, + "runId": { + "type": "string" + }, + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "type": "string" + }, + "updatedAt": { + "type": "string" + }, + "updatedBy": { + "type": "string" + }, + "userName": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.SlackConfig": { + "properties": { + "slackResourceId": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.TtlConfig": { + "default": "TTL_CONFIG_UNSPECIFIED", + "enum": [ + "TTL_CONFIG_UNSPECIFIED", + "TTL_CONFIG_MULTI_SELECT_DURATIONS", + "TTL_CONFIG_FIXED_DURATION" + ], + "type": "string" + }, + "jumpcloud.ingresso.UpdateAccessWorkflowResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.UpdateAccessWorkflowSettingsRequest": { + "properties": { + "adminApprovalEmail": { + "type": "boolean" + }, + "channelEvents": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" + }, + "type": "array" + }, + "exposeApprovalProgress": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceRequest": { + "type": "boolean" + }, + "userApprovalEmail": { + "type": "boolean" + }, + "userRequestEmail": { + "type": "boolean" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.UpdateAccessWorkflowSettingsResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.UpdateWorkflowAccessRequestResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.UserApprovalRequestRequest": { + "properties": { + "approvedDuration": { + "type": "string" + }, + "id": { + "type": "string" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "remarks": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.UserApprovalRequestResponse": { + "type": "object", + "additionalProperties": true + }, + "jumpcloud.ingresso.VisibleTo": { + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.ingresso.WorkflowAccessRequest": { + "properties": { + "approvalFlowDescription": { + "type": "string" + }, + "approvalFlowId": { + "type": "string" + }, + "approvalFlowName": { + "type": "string" + }, + "approvalType": { + "type": "string" + }, + "approvedDuration": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "department": { + "type": "string" + }, + "group": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "manager": { + "type": "string" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "remarks": { + "type": "string" + }, + "requestedDuration": { + "type": "string" + }, + "requestor": { + "type": "string" + }, + "runId": { + "type": "string" + }, + "status": { + "type": "string" + }, + "updatedAt": { + "type": "string" + }, + "updatedBy": { + "type": "string" + }, + "userName": { + "type": "string" + }, + "wfMetadata": { + "format": "byte", + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.search.Function": { + "default": "function_unknown", + "enum": [ + "function_unknown", + "count", + "avg", + "max", + "min", + "sum", + "count_unique" + ], + "type": "string" + }, + "jumpcloud.search.PaginationParams": { + "description": "Parameters for controlling pagination of search results.", + "properties": { + "offset": { + "description": "Zero-based index of the first result to return.\nFor example: 0 returns the first page, 100 returns the second page when page_size=100.", + "format": "int32", + "type": "integer" + }, + "pageSize": { + "description": "Number of results to return per page.\nIf not specified, uses server default (typically 50-100 items).", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequest": { + "properties": { + "aggregations": { + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestAggregation" + }, + "type": "array" + }, + "cacheToken": { + "title": "Optional: Token for retrieving data from a previously cached result set", + "type": "string", + "x-nullable": true + }, + "fields": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFields" + }, + "filters": { + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + }, + "type": "array" + }, + "limit": { + "description": "Maximum number of rows (inclusive) to return in the objects. Note that there is an implicit limit enforced always\nin the external API.", + "format": "int32", + "type": "integer" + }, + "pagination": { + "$ref": "#/definitions/jumpcloud.search.PaginationParams" + }, + "requestCache": { + "title": "Optional: If true, cache the full result set of this query", + "type": "boolean" + }, + "sort": { + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestSort" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestAggregation": { + "properties": { + "field": { + "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", + "items": { + "type": "string" + }, + "type": "array" + }, + "function": { + "$ref": "#/definitions/jumpcloud.search.Function" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestFields": { + "properties": { + "exclude": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestFilter": { + "description": "A filter for a search query.", + "properties": { + "field": { + "description": "This is a field on an object. It should always be in the form of . This will be case\ninsensitive, and will be cast to lowercase always.", + "type": "string", + "x-nullable": true + }, + "filters": { + "description": "Only allowed when operation is 'and'/'or'. This allows for logical groupings of sub-filters provided in this\nfield's array.", + "items": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter" + }, + "type": "array" + }, + "operation": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestFilter.Operation" + }, + "query": { + "$ref": "#/definitions/jumpcloud.search.SearchRequest" + }, + "unit": { + "type": "string", + "x-nullable": true + }, + "value": { + "description": "Static value to be compared against. For values that will need to be compared as a datetime object, this should be\nprovided as an ISO8601 format string with no offset (UTC). This is made optional so that\nthe client can omit this field on AND/OR filters." + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestFilter.Operation": { + "default": "operation_unknown", + "description": "Filter operation to be applied:\nand - Provides logical 'and' groupings of all elements provided in the `filters` array (all sub-filter criteria\n must be satisfied).\nor - Provides logical 'or' groupings of all elements provided in the `filters` array (any sub-filter criteria can\n be satisfied).\nequals - Compares `field` with `value` for a // match. Case insensitive.\nnot_equals - Compares `field` with `value` for an exact non-match. Case insensitive.\ngreater_than - Checks if `field` is greater numerically than static `value` (non-inclusive). Works for numbers and\n datetime types.\nless_than - Checks if `field` is less than static `value` (non-inclusive). Works for numbers and datetime types.\nstarts_with - Checks if `field` starts with static `value`. Case insensitive. Only works for string types.\nends_with - Checks if `field` ends with static `value`. Case insensitive. Only works for string types.\ncontains - Checks if `field` has the static `value` as its substring. Case insensitive. Only works for string types.\nnot_contains - Checks if `field` does not have the static `value` as its substring. Case insensitive. Only works for string types.\nin - Checks if `field` is in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\nnot_in - Checks if `field` is not in the static `value` array. Works with strings (case insensitive), numbers, and datetime types.\ngreater_than_or_equals - Checks if `field` is greater than or equal to static `value`. Works for numbers and datetime types.\nless_than_or_equals - Checks if `field` is less than or equal to static `value`. Works for numbers and datetime types.\nis_null - Checks if `field` is null. Works for all field types. Requires boolean value (true for null, false for not null).\nis_empty - Checks if `field` is null or empty string. Works only for string field types. Requires boolean value (true for empty, false for not empty).\nequals_case_sensitive - Compares `field` with `value` for an exact match. Case sensitive. Only works for string types.\nnot_equals_case_sensitive - Compares `field` with `value` for an exact non-match. Case sensitive. Only works for string types.\nstarts_with_case_sensitive - Checks if `field` starts with static `value`. Case sensitive. Only works for string types.\nends_with_case_sensitive - Checks if `field` ends with static `value`. Case sensitive. Only works for string types.\ncontains_case_sensitive - Checks if `field` has the static `value` as its substring. Case sensitive. Only works for string types.\nnot_contains_case_sensitive - Checks if `field` does not have the static `value` as its substring. Case sensitive. Only works for string types.\nin_case_sensitive - Checks if `field` is in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.\nnot_in_case_sensitive - Checks if `field` is not in the static `value` array. Works with strings (case sensitive), numbers, and datetime types.", + "enum": [ + "operation_unknown", + "and", + "or", + "equals", + "not_equals", + "greater_than", + "less_than", + "starts_with", + "ends_with", + "contains", + "not_contains", + "in", + "not_in", + "greater_than_or_equals", + "less_than_or_equals", + "is_null", + "is_empty", + "equals_case_sensitive", + "not_equals_case_sensitive", + "starts_with_case_sensitive", + "ends_with_case_sensitive", + "contains_case_sensitive", + "not_contains_case_sensitive", + "in_case_sensitive", + "not_in_case_sensitive" + ], + "type": "string" + }, + "jumpcloud.search.SearchRequestSort": { + "properties": { + "field": { + "description": "This is a field on an object. It should always be in the form of\n. This will be case insensitive, and will be cast to\nlowercase always.", + "type": "string" + }, + "order": { + "$ref": "#/definitions/jumpcloud.search.SearchRequestSort.Order" + } + }, + "type": "object" + }, + "jumpcloud.search.SearchRequestSort.Order": { + "default": "asc", + "enum": [ + "asc", + "desc" + ], + "title": "Sort order. Defaults to ascending", + "type": "string" + }, + "ldap-server": { + "properties": { + "id": { + "description": "Unique identifier of this LDAP server", + "readOnly": true, + "type": "string" + }, + "name": { "description": "The name of this LDAP server", "type": "string" }, @@ -5565,7 +6368,7 @@ "bundle_short_version": "2.4", "bundle_version": "658.1", "category": "public.app-category.utilities", - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "compiler": "com.apple.compilers.llvm.clang.1_0", "copyright": "", "development_region": "English", @@ -5842,7 +6645,7 @@ }, "system-insights-bitlocker-info": { "example": { - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "conversion_status": 0, "device_id": "\\\\\\\\?\\\\Volume{3ba5cc52-e0fd-45fa-b8b8-5c88f44f8b17}\\", "drive_letter": "C:", @@ -5886,7 +6689,7 @@ }, "system-insights-browser-plugins": { "example": { - "collection_time": "2019-06-03T13:41:30.858-06:00", + "collection_time": "2019-06-03T19:41:30.858Z", "description": "LastPass Plugin", "development_region": "en-US", "disabled": 0, @@ -6064,7 +6867,7 @@ "system-insights-chrome-extensions": { "example": { "author": "", - "collection_time": "2019-06-03T13:41:31.125-06:00", + "collection_time": "2019-06-03t19:41:31.125z", "description": "provider for discovery and services for mirroring of chrome media router", "identifier": "pkedcjkdefgpdelpbcmbmeomcjbeemfm", "locale": "en", @@ -6238,7 +7041,7 @@ }, "system-insights-disk-encryption": { "example": { - "collection_time": "2019-06-03T13:41:31.557-06:00", + "collection_time": "2019-06-03T19:41:31.557Z", "encrypted": 0, "encryption_status": "undefined", "name": "/dev/disk8", @@ -6282,7 +7085,7 @@ }, "system-insights-disk-info": { "example": { - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "description": "Disk drive", "disk_index": 0, "disk_size": "64420392960", @@ -6370,7 +7173,7 @@ "system-insights-etc-hosts": { "example": { "address": "192.168.2.21", - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "hostnames": "hosty hosty.local", "system_id": "5c9e51a13c5146f89bae12d9" }, @@ -6395,7 +7198,7 @@ "example": { "active": 1, "autoupdate": 1, - "collection_time": "2019-06-03T13:41:31.204-06:00", + "collection_time": "2019-06-03T19:41:31.204Z", "creator": "null", "description": "", "disabled": 0, @@ -6465,7 +7268,7 @@ }, "system-insights-groups": { "example": { - "collection_time": "2019-06-03T13:41:31.673-06:00", + "collection_time": "2019-06-03T19:41:31.673Z", "comment": "", "gid": "701", "gid_signed": "701", @@ -6527,7 +7330,7 @@ "example": { "address": "::1", "broadcast": "", - "collection_time": "2019-06-03T13:41:31.008-06:00", + "collection_time": "2019-06-03T19:41:31.008Z", "friendly_name": "", "interface": "lo0", "mask": "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", @@ -6868,7 +7671,7 @@ "system-insights-logical-drives": { "example": { "boot_partition": 0, - "collection_time": "2019-06-03T13:41:30.658-06:00", + "collection_time": "2019-06-03T19:41:30.658Z", "device_id": "C:", "file_system": "NTFS", "free_space": "43194331136", @@ -6941,7 +7744,7 @@ "blocks_available": "95135", "blocks_free": "95135", "blocks_size": "4096", - "collection_time": "2019-06-03T13:41:31.746-06:00", + "collection_time": "2019-06-03T19:41:31.746Z", "device": "/dev/disk5s1", "device_alias": "/dev/disk5s1", "flags": "70292505", @@ -6999,7 +7802,7 @@ "example": { "build": "17G65", "codename": "", - "collection_time": "2019-06-03T13:41:30.933-06:00", + "collection_time": "2019-06-03T19:41:30.933Z", "install_date": "", "major": 10, "minor": 13, @@ -7054,7 +7857,7 @@ "system-insights-patches": { "example": { "caption": "http://support.microsoft.com/?kbid=4503308", - "collection_time": "2019-06-03T13:41:31.673-06:00", + "collection_time": "2019-06-03T19:41:31.673Z", "csname": "DESKTOP-B17DUKP", "description": "Security Update", "fix_comments": "", @@ -7101,7 +7904,7 @@ }, "system-insights-programs": { "example": { - "collection_time": "2019-06-03T13:41:31.673-06:00", + "collection_time": "2019-06-03T19:41:31.673Z", "identifying_number": "{2E8B8BDD-03DF-4C1C-8C99-E6A4BCBF43CE}", "install_date": "20190724", "install_location": "", @@ -7182,7 +7985,7 @@ "system-insights-safari-extensions": { "example": { "author": "Eyeo GmbH", - "collection_time": "2019-05-16T12:58:15.673-06:00", + "collection_time": "2019-05-16T18:58:15.673Z", "description": "Used by over 50 million people, a free ad blocker that blocks ALL annoying ads, malware and tracking.", "developer_id": "GRYYZR985A", "identifier": "org.adblockplus.adblockplussafari", @@ -7557,7 +8360,7 @@ }, "system-insights-system-info": { "example": { - "collection_time": "2019-06-03T13:41:30.771-06:00", + "collection_time": "2019-06-03T19:41:30.771Z", "computer_name": "Johnny's MacBook Pro (2)", "cpu_brand": "Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz", "cpu_logical_cores": 8, @@ -7810,7 +8613,7 @@ }, "system-insights-users": { "example": { - "collection_time": "2019-06-03T13:41:29.71-06:00", + "collection_time": "2019-06-03T19:41:29.71Z", "description": "AppleEvents Daemon", "directory": "/var/empty", "gid": "55", @@ -8220,6 +9023,26 @@ "name": "filter", "type": "array" }, + "trait:filter:filterUserGroupMembership": { + "default": [], + "description": "A filter to apply to the query.\n\n**Filter structure**: `::`.\n\n**field** = Populate with a valid field from an endpoint response.\n\n**operator** = Supported operators are: eq, ne, gt, ge, lt, le, between, search, in.\n_Note: v1 operators differ from v2 operators._\n\n**value** = Populate with the value you want to search for. Is case sensitive. Supports wild cards.\n\n**Valid filter fields**: `object_id` and `type`.\n\n**EX:** `GET /api/v2/usergroups/{GroupID}/membership?filter=type:eq:user_group`", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "type": "array" + }, + "trait:filter:filterUserMemberOf": { + "default": [], + "description": "A filter to apply to the query.\n\n**Filter structure**: `::`.\n\n**field** = Populate with a valid field from an endpoint response.\n\n**operator** = Supported operators are: eq, ne, gt, ge, lt, le, between, search, in.\n_Note: v1 operators differ from v2 operators._\n\n**value** = Populate with the value you want to search for. Is case sensitive. Supports wild cards.\n\n**Valid filter fields**: `object_id` and `type`.\n\n**EX:** `GET /api/v2/users/{UserID}/memberof?filter=type:eq:user_group`", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "type": "array" + }, "trait:graphTargetsActiveDirectory:targets": { "description": "Targets which a \"active_directory\" can be associated to.", "in": "query", @@ -8256,7 +9079,8 @@ "type": "string", "enum": [ "system", - "system_group" + "system_group", + "password_manager_item" ], "x-ms-enum": { "name": "graphTargetsCommand-Targets1", @@ -8268,6 +9092,10 @@ { "name": "systems_group", "value": "system_group" + }, + { + "name": "password_manager_item", + "value": "password_manager_item" } ] } @@ -8325,7 +9153,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsPolicy-Targets1", + "name": "graphTargetsPolicy-Targets3", "values": [ { "name": "systems", @@ -8349,7 +9177,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsPolicyGroup-Targets1", + "name": "graphTargetsPolicyGroup-Targets3", "values": [ { "name": "systems", @@ -8387,7 +9215,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsSoftwareApp-Targets1", + "name": "graphTargetsSoftwareApp-Targets3", "values": [ { "name": "systems", @@ -8414,7 +9242,7 @@ "user_group" ], "x-ms-enum": { - "name": "graphTargetsSystem-Targets2" + "name": "graphTargetsSystem-Targets4" } }, "trait:graphTargetsSystemGroup:targets": { @@ -8431,7 +9259,7 @@ "user_group" ], "x-ms-enum": { - "name": "graphTargetsSystemGroup-Targets2" + "name": "graphTargetsSystemGroup-Targets4" } }, "trait:graphTargetsUser:targets": { @@ -8453,7 +9281,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsUser-Targets3", + "name": "graphTargetsUser-Targets5", "values": [ { "name": "active_directory", @@ -8517,7 +9345,7 @@ "system_group" ], "x-ms-enum": { - "name": "graphTargetsUserGroup-Targets3", + "name": "graphTargetsUserGroup-Targets5", "values": [ { "name": "active_directory", @@ -8699,72 +9527,350 @@ "items": { "type": "string" }, - "name": "filter", - "type": "array" + "name": "filter", + "type": "array" + }, + "trait:systemInsightsFilterUptime:filter": { + "default": [], + "description": "Supported operators are: eq, gte, in. e.g:\nFilter for single value:\n`filter=field:gte:value`\nFilter for any value in a list: (note \"pipe\" character: `|` separating values)\n`filter=field:in:value1|value2|value3`\n", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "type": "array" + }, + "trait:systemInsightsLimit:limit": { + "default": 10, + "in": "query", + "maximum": 10000, + "minimum": 0, + "name": "limit", + "type": "integer" + }, + "trait:systemInsightsSort:sort": { + "default": [], + "description": "The comma separated fields used to sort the collection.\nDefault sort is ascending, prefix with `-` to sort descending. e.g:\nSort by single field:\n`sort=field`\nSort descending by single field:\n`sort=-field`\nSort by multiple fields:\n`sort=field1,-field2,field3`\n", + "in": "query", + "items": { + "type": "string" + }, + "name": "sort", + "type": "array" + } + }, + "paths": { + "/accessrequests": {}, + "/accessrequests/{accessId}": {}, + "/accessrequests/{accessId}/revoke": {}, + "/accountManagerCalendar/{id}": { + "parameters": [ + { + "in": "path", + "name": "id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "accounts-page-upgrade" + ] + }, + "/activedirectories": { + "get": { + "description": "This endpoint allows you to list all your Active Directory Instances.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectory_List", + "parameters": [ + { + "$ref": "#/parameters/trait:fields:fields" + }, + { + "$ref": "#/parameters/trait:filter:filter" + }, + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:sort:sort" + } + ], + "responses": { + "200": { + "description": "", + "schema": { + "items": { + "$ref": "#/definitions/active-directory" + }, + "type": "array" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "List Active Directories", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories?limit=10&skip=0' -Method GET -Headers $headers" + } + ] + }, + "parameters": [], + "post": { + "description": "This endpoint allows you to create a new Active Directory.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"domain\": \"{DC=AD_domain_name;DC=com}\"\n }'\n```", + "operationId": "ActiveDirectory_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/active-directory" + } + } + ], + "responses": { + "201": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Create a new Active Directory", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\npayload = {\n \"delegationState\": \"ENABLED\",\n \"domain\": \"string\",\n \"groupsEnabled\": True,\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"useCase\": \"UNSET\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + } + ] + }, + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/translation-rules/preview": {}, + "/activedirectories/{activedirectory_id}/agents": { + "get": { + "description": "This endpoint allows you to list all your Active Directory Agents for a given Instance.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectoryAgent_List", + "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:sort:sort" + } + ], + "responses": { + "200": { + "description": "", + "schema": { + "items": { + "$ref": "#/definitions/active-directory-agent-list" + }, + "type": "array" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "List Active Directory Agents", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0' -Method GET -Headers $headers" + } + ] + }, + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "This endpoint allows you to create a new Active Directory Agent.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{ \"agent_type\":\"{SYNC}\" }'\n```", + "operationId": "ActiveDirectoryAgent_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/active-directory-agent" + } + } + ], + "responses": { + "201": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory-agent-get" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Create a new Active Directory Agent", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"agentType\":\"SYNC\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\npayload = {\"agentType\": \"SYNC\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"agentType\":\"SYNC\"}'" + } + ] + }, + "x-functionalities-tags": [ + "active-directory" + ] }, - "trait:systemInsightsFilterUptime:filter": { - "default": [], - "description": "Supported operators are: eq, gte, in. e.g:\nFilter for single value:\n`filter=field:gte:value`\nFilter for any value in a list: (note \"pipe\" character: `|` separating values)\n`filter=field:in:value1|value2|value3`\n", - "in": "query", - "items": { - "type": "string" + "/activedirectories/{activedirectory_id}/agents/{agent_id}": { + "delete": { + "description": "This endpoint deletes an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryAgent_Delete", + "parameters": [], + "responses": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Delete Active Directory Agent", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method DELETE -Headers $headers" + } + ] }, - "name": "filter", - "type": "array" - }, - "trait:systemInsightsLimit:limit": { - "default": 10, - "in": "query", - "maximum": 10000, - "minimum": 0, - "name": "limit", - "type": "integer" - }, - "trait:systemInsightsSort:sort": { - "default": [], - "description": "The comma separated fields used to sort the collection.\nDefault sort is ascending, prefix with `-` to sort descending. e.g:\nSort by single field:\n`sort=field`\nSort descending by single field:\n`sort=-field`\nSort by multiple fields:\n`sort=field1,-field2,field3`\n", - "in": "query", - "items": { - "type": "string" + "get": { + "description": "This endpoint returns an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryAgent_Get", + "parameters": [], + "responses": { + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory-agent-list" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Get Active Directory Agent", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method GET -Headers $headers" + } + ] }, - "name": "sort", - "type": "array" - } - }, - "paths": { - "/accessrequests": {}, - "/accountManagerCalendar/{id}": { "parameters": [ { "in": "path", - "name": "id", + "name": "activedirectory_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "agent_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "accounts-page-upgrade" + "active-directory" ] }, - "/activedirectories": { + "/activedirectories/{activedirectory_id}/associations": { "get": { - "description": "This endpoint allows you to list all your Active Directory Instances.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectory_List", + "description": "This endpoint returns the direct associations of this Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/associations?targets=user \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryAssociation_Get", "parameters": [ { - "$ref": "#/parameters/trait:fields:fields" - }, - { - "$ref": "#/parameters/trait:filter:filter" + "$ref": "#/parameters/trait:graphTargetsActiveDirectory:targets" }, { "$ref": "#/parameters/trait:limit:limit" }, { "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:sort:sort" } ], "responses": { @@ -8772,7 +9878,7 @@ "description": "", "schema": { "items": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/GraphConnection" }, "type": "array" } @@ -8783,40 +9889,132 @@ "x-api-key": [] } ], - "summary": "List Active Directories", + "summary": "List the associations of an Active Directory instance", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, - "parameters": [], + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ], "post": { - "description": "This endpoint allows you to create a new Active Directory.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/ \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"domain\": \"{DC=AD_domain_name;DC=com}\"\n }'\n```", - "operationId": "ActiveDirectory_Create", + "description": "This endpoint allows you to manage the _direct_ associations of an Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{AD_Instance_ID}/associations \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user\",\n \"id\": \"{User_ID}\"\n }'\n```", + "operationId": "ActiveDirectoryAssociation_Set", "parameters": [ { "in": "body", "name": "body", "schema": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/GraphOperation-ActiveDirectory" } } ], "responses": { - "201": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Manage the associations of an Active Directory instance", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + } + ] + }, + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/{activedirectory_id}/translation-rules": { + "parameters": [ + { + "description": "ObjectID of the Active Directory instance.", + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ] + }, + "/activedirectories/{activedirectory_id}/translation-rules/bulk": { + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ] + }, + "/activedirectories/{activedirectory_id}/translation-rules/{translation_rule_object_id}": { + "parameters": [ + { + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "translation_rule_object_id", + "required": true, + "type": "string" + } + ] + }, + "/activedirectories/{activedirectory_id}/usergroups": { + "get": { + "description": "This endpoint will return all Users Groups bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryTraverseUserGroup_Get", + "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:filter:filter" + } + ], + "responses": { + "200": { "description": "", "schema": { - "$ref": "#/definitions/active-directory" + "items": { + "$ref": "#/definitions/GraphObjectWithPaths" + }, + "type": "array" } } }, @@ -8825,40 +10023,48 @@ "x-api-key": [] } ], - "summary": "Create a new Active Directory", + "summary": "List the User Groups bound to an Active Directory instance", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories\"\n\npayload = {\n \"delegationState\": \"ENABLED\",\n \"domain\": \"string\",\n \"groupsEnabled\": True,\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"useCase\": \"UNSET\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"delegationState\":\"ENABLED\",\"domain\":\"string\",\"groupsEnabled\":true,\"updatedAt\":\"2019-08-24T14:15:22Z\",\"useCase\":\"UNSET\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, + "parameters": [ + { + "description": "ObjectID of the Active Directory instance.", + "in": "path", + "name": "activedirectory_id", + "required": true, + "type": "string" + } + ], "x-functionalities-tags": [ "active-directory" ] }, - "/activedirectories/translation-rules/preview": {}, - "/activedirectories/{activedirectory_id}/agents": { + "/activedirectories/{activedirectory_id}/users": { "get": { - "description": "This endpoint allows you to list all your Active Directory Agents for a given Instance.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectoryAgent_List", + "description": "This endpoint will return all Users bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ActiveDirectoryTraverseUser_Get", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" + "$ref": "#/parameters/trait:filter:filter" }, { - "$ref": "#/parameters/trait:skip:skip" + "$ref": "#/parameters/trait:limit:limit" }, { - "$ref": "#/parameters/trait:sort:sort" + "$ref": "#/parameters/trait:skip:skip" } ], "responses": { @@ -8866,7 +10072,7 @@ "description": "", "schema": { "items": { - "$ref": "#/definitions/active-directory-agent-list" + "$ref": "#/definitions/GraphObjectWithPaths" }, "type": "array" } @@ -8877,47 +10083,45 @@ "x-api-key": [] } ], - "summary": "List Active Directory Agents", + "summary": "List the Users bound to an Active Directory instance", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents?limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, "parameters": [ { + "description": "ObjectID of the Active Directory instance.", "in": "path", "name": "activedirectory_id", "required": true, "type": "string" } ], - "post": { - "description": "This endpoint allows you to create a new Active Directory Agent.\n\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{ \"agent_type\":\"{SYNC}\" }'\n```", - "operationId": "ActiveDirectoryAgent_Create", - "parameters": [ - { - "in": "body", - "name": "body", - "schema": { - "$ref": "#/definitions/active-directory-agent" - } - } - ], + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/{id}": { + "delete": { + "description": "This endpoint allows you to delete an Active Directory Instance.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectory_Delete", + "parameters": [], "responses": { - "201": { - "description": "", + "200": { + "description": "OK", "schema": { - "$ref": "#/definitions/active-directory-agent-get" + "$ref": "#/definitions/active-directory" } } }, @@ -8926,34 +10130,32 @@ "x-api-key": [] } ], - "summary": "Create a new Active Directory Agent", + "summary": "Delete an Active Directory", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"agentType\":\"SYNC\"}'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents\"\n\npayload = {\"agentType\": \"SYNC\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"agentType\":\"SYNC\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method DELETE -Headers $headers" } ] }, - "x-functionalities-tags": [ - "active-directory" - ] - }, - "/activedirectories/{activedirectory_id}/agents/{agent_id}": { - "delete": { - "description": "This endpoint deletes an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryAgent_Delete", + "get": { + "description": "This endpoint returns a specific Active Directory.\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", + "operationId": "ActiveDirectory_Get", "parameters": [], "responses": { - "204": { - "description": "" + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/active-directory" + } } }, "security": [ @@ -8961,32 +10163,53 @@ "x-api-key": [] } ], - "summary": "Delete Active Directory Agent", + "summary": "Get an Active Directory", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method GET -Headers $headers" } ] }, - "get": { - "description": "This endpoint returns an Active Directory agent.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryAgent_Get", - "parameters": [], + "parameters": [ + { + "description": "ObjectID of this Active Directory instance.", + "in": "path", + "name": "id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "active-directory" + ] + }, + "/activedirectories/{provider_name}/translation-rules/recommendation": { + "parameters": [ + { + "description": "Provider name.", + "in": "path", + "name": "provider_name", + "required": true, + "type": "string" + } + ] + }, + "/administrators/{administrator_id}/organizationlinks/{id}": { + "delete": { + "description": "This endpoint removes the association link between an Administrator and an Organization.", + "operationId": "AdministratorOrganization_Delete", "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/active-directory-agent-list" - } + "204": { + "description": "No Content" } }, "security": [ @@ -8994,48 +10217,45 @@ "x-api-key": [] } ], - "summary": "Get Active Directory Agent", + "summary": "Remove association between an Administrator and an Organization.", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/agents/{agent_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}' -Method DELETE -Headers $headers" } ] }, "parameters": [ { "in": "path", - "name": "activedirectory_id", + "name": "administrator_id", "required": true, "type": "string" }, { "in": "path", - "name": "agent_id", + "name": "id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "admin" ] }, - "/activedirectories/{activedirectory_id}/associations": { + "/administrators/{id}/organizationlinks": { "get": { - "description": "This endpoint returns the direct associations of this Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/associations?targets=user \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryAssociation_Get", + "description": "This endpoint returns the association links between an Administrator and Organizations.", + "operationId": "AdministratorOrganizations_List", "parameters": [ - { - "$ref": "#/parameters/trait:graphTargetsActiveDirectory:targets" - }, { "$ref": "#/parameters/trait:limit:limit" }, @@ -9045,10 +10265,10 @@ ], "responses": { "200": { - "description": "", + "description": "OK", "schema": { "items": { - "$ref": "#/definitions/GraphConnection" + "$ref": "#/definitions/AdministratorOrganizationLink" }, "type": "array" } @@ -9059,45 +10279,48 @@ "x-api-key": [] } ], - "summary": "List the associations of an Active Directory instance", + "summary": "List the association links between an Administrator and Organizations.", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' -Method GET -Headers $headers" } ] }, "parameters": [ { "in": "path", - "name": "activedirectory_id", + "name": "id", "required": true, "type": "string" } ], "post": { - "description": "This endpoint allows you to manage the _direct_ associations of an Active Directory instance.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Active Directory and Users.\n\n#### Sample Request\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{AD_Instance_ID}/associations \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user\",\n \"id\": \"{User_ID}\"\n }'\n```", - "operationId": "ActiveDirectoryAssociation_Set", + "description": "This endpoint allows you to grant Administrator access to an Organization.", + "operationId": "AdministratorOrganization_Create", "parameters": [ { "in": "body", "name": "body", "schema": { - "$ref": "#/definitions/GraphOperation-ActiveDirectory" + "$ref": "#/definitions/AdministratorOrganizationLinkReq" } } ], "responses": { - "204": { - "description": "" + "201": { + "description": "OK", + "schema": { + "$ref": "#/definitions/AdministratorOrganizationLink" + } } }, "security": [ @@ -9105,70 +10328,40 @@ "x-api-key": [] } ], - "summary": "Manage the associations of an Active Directory instance", + "summary": "Allow Adminstrator access to an Organization.", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\npayload = {\"organization\": \"6230a0d26a4e4bc86c6b36f1\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" } ] }, "x-functionalities-tags": [ - "active-directory" - ] - }, - "/activedirectories/{activedirectory_id}/translation-rules": { - "parameters": [ - { - "description": "ObjectID of the Active Directory instance.", - "in": "path", - "name": "activedirectory_id", - "required": true, - "type": "string" - } - ] - }, - "/activedirectories/{activedirectory_id}/translation-rules/bulk": { - "parameters": [ - { - "in": "path", - "name": "activedirectory_id", - "required": true, - "type": "string" - } - ] - }, - "/activedirectories/{activedirectory_id}/translation-rules/{translation_rule_object_id}": { - "parameters": [ - { - "in": "path", - "name": "activedirectory_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "translation_rule_object_id", - "required": true, - "type": "string" - } + "admin" ] }, - "/activedirectories/{activedirectory_id}/usergroups": { + "/alerts": {}, + "/alerts-stats": {}, + "/alerts/bulk-delete": {}, + "/alerts/bulk-update": {}, + "/alerts/{id}": {}, + "/alerts/{id}/occurrences": {}, + "/alerts/{id}/status": {}, + "/applemdms": { "get": { - "description": "This endpoint will return all Users Groups bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryTraverseUserGroup_Get", + "description": "Get a list of all Apple MDM configurations. An empty topic indicates that a signed certificate from Apple has not been provided to the PUT endpoint yet.\n\nNote: currently only one MDM configuration per organization is supported.\n\n#### Sample Request\n```\ncurl https://console.jumpcloud.com/api/v2/applemdms \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDM_List", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" + "$ref": "#/parameters/trait:limitDefault1:limit" }, { "$ref": "#/parameters/trait:skip:skip" @@ -9182,7 +10375,7 @@ "description": "", "schema": { "items": { - "$ref": "#/definitions/GraphObjectWithPaths" + "$ref": "#/definitions/AppleMDM" }, "type": "array" } @@ -9193,56 +10386,79 @@ "x-api-key": [] } ], - "summary": "List the User Groups bound to an Active Directory instance", + "summary": "List Apple MDMs", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms\"\n\nquerystring = {\"limit\":\"1\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0' -Method GET -Headers $headers" } ] }, + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{apple_mdm_id}/csr": { "parameters": [ { - "description": "ObjectID of the Active Directory instance.", "in": "path", - "name": "activedirectory_id", + "name": "apple_mdm_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "mdm" ] }, - "/activedirectories/{activedirectory_id}/users": { + "/applemdms/{apple_mdm_id}/depkey": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{apple_mdm_id}/devices": { "get": { - "description": "This endpoint will return all Users bound to an Active Directory instance, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Active Directory instance to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Active Directory instance.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ActiveDirectoryTraverseUser_Get", + "description": "Lists all Apple MDM devices.\n\nThe filter and sort queries will allow the following fields:\n`createdAt`\n`depRegistered`\n`enrolled`\n`id`\n`osVersion`\n`serialNumber`\n`udid`\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_List", "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, { "$ref": "#/parameters/trait:filter:filter" }, { - "$ref": "#/parameters/trait:limit:limit" + "$ref": "#/parameters/trait:sort:sort" }, { - "$ref": "#/parameters/trait:skip:skip" + "$ref": "#/parameters/trait:listCount:x-total-count" } ], "responses": { "200": { - "description": "", + "description": "OK", "schema": { "items": { - "$ref": "#/definitions/GraphObjectWithPaths" + "$ref": "#/definitions/apple-mdm-device" }, "type": "array" } @@ -9253,45 +10469,43 @@ "x-api-key": [] } ], - "summary": "List the Users bound to an Active Directory instance", + "summary": "List AppleMDM Devices", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?filter=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{activedirectory_id}/users?filter=&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0' -Method GET -Headers $headers" } ] }, "parameters": [ { - "description": "ObjectID of the Active Directory instance.", "in": "path", - "name": "activedirectory_id", + "name": "apple_mdm_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "mdm" ] }, - "/activedirectories/{id}": { + "/applemdms/{apple_mdm_id}/devices/{device_id}": { "delete": { - "description": "This endpoint allows you to delete an Active Directory Instance.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectory_Delete", - "parameters": [], + "description": "Remove a single Apple MDM device from MDM enrollment.\n\n#### Sample Request\n```\n curl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDMDevice_Delete", "responses": { "200": { "description": "OK", "schema": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/apple-mdm-device" } } }, @@ -9300,31 +10514,30 @@ "x-api-key": [] } ], - "summary": "Delete an Active Directory", + "summary": "Remove an Apple MDM Device's Enrollment", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method DELETE -Headers $headers" } ] }, "get": { - "description": "This endpoint returns a specific Active Directory.\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/activedirectories/{ActiveDirectory_ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n ```", - "operationId": "ActiveDirectory_Get", - "parameters": [], + "description": "Gets a single Apple MDM device.\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDMDevice_Get", "responses": { "200": { - "description": "", + "description": "OK", "schema": { - "$ref": "#/definitions/active-directory" + "$ref": "#/definitions/apple-mdm-device" } } }, @@ -9333,53 +10546,100 @@ "x-api-key": [] } ], - "summary": "Get an Active Directory", + "summary": "Details of an AppleMDM Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/activedirectories/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/activedirectories/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/activedirectories/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method GET -Headers $headers" } ] }, "parameters": [ { - "description": "ObjectID of this Active Directory instance.", "in": "path", - "name": "id", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "active-directory" + "mdm" ] }, - "/activedirectories/{provider_name}/translation-rules/recommendation": { + "/applemdms/{apple_mdm_id}/devices/{device_id}/availableOsUpdates": { "parameters": [ { - "description": "Provider name.", "in": "path", - "name": "provider_name", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", "required": true, "type": "string" } + ], + "x-functionalities-tags": [ + "mdm" ] }, - "/administrators/{administrator_id}/organizationlinks/{id}": { - "delete": { - "description": "This endpoint removes the association link between an Administrator and an Organization.", - "operationId": "AdministratorOrganization_Delete", + "/applemdms/{apple_mdm_id}/devices/{device_id}/bypasscodes": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "Clears the activation lock on the specified device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDeviceActivationLock_Clear", + "parameters": [], "responses": { "204": { - "description": "No Content" + "description": "" } }, "security": [ @@ -9387,110 +10647,105 @@ "x-api-key": [] } ], - "summary": "Remove association between an Administrator and an Organization.", + "summary": "Clears the Activation Lock for a Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{administrator_id}/organizationlinks/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock' -Method POST -Headers $headers" } ] }, + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/clearPasscode": { "parameters": [ { "in": "path", - "name": "administrator_id", + "name": "apple_mdm_id", "required": true, "type": "string" }, { "in": "path", - "name": "id", + "name": "device_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "admin" + "mdm", + "devices-darwin-security-command" ] }, - "/administrators/{id}/organizationlinks": { - "get": { - "description": "This endpoint returns the association links between an Administrator and Organizations.", - "operationId": "AdministratorOrganizations_List", - "parameters": [ - { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "items": { - "$ref": "#/definitions/AdministratorOrganizationLink" - }, - "type": "array" - } - } + "/applemdms/{apple_mdm_id}/devices/{device_id}/clearRestrictionsPassword": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" }, - "security": [ - { - "x-api-key": [] - } - ], - "summary": "List the association links between an Administrator and Organizations.", - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" - }, - { - "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" - }, - { - "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks?limit=10&skip=0' -Method GET -Headers $headers" - } - ] - }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/erase": { "parameters": [ { "in": "path", - "name": "id", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", "required": true, "type": "string" } ], "post": { - "description": "This endpoint allows you to grant Administrator access to an Organization.", - "operationId": "AdministratorOrganization_Create", + "description": "Erases a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Clear", "parameters": [ { "in": "body", "name": "body", "schema": { - "$ref": "#/definitions/AdministratorOrganizationLinkReq" + "properties": { + "pin": { + "description": "6-digit PIN, required for MacOS, to erase the device", + "example": "123456", + "pattern": "^[0-9]{6}$", + "type": "string" + } + }, + "type": "object" } } ], "responses": { - "201": { - "description": "OK", - "schema": { - "$ref": "#/definitions/AdministratorOrganizationLink" - } + "204": { + "description": "" } }, "security": [ @@ -9498,185 +10753,239 @@ "x-api-key": [] } ], - "summary": "Allow Adminstrator access to an Organization.", + "summary": "Erase Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"pin\":\"123456\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks\"\n\npayload = {\"organization\": \"6230a0d26a4e4bc86c6b36f1\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/administrators/{id}/organizationlinks' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"organization\":\"6230a0d26a4e4bc86c6b36f1\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" } ] }, "x-functionalities-tags": [ - "admin" + "mdm", + "devices-darwin-security-command" ] }, - "/alerts": {}, - "/alerts-stats": {}, - "/alerts/bulk-delete": {}, - "/alerts/bulk-update": {}, - "/alerts/{id}": {}, - "/alerts/{id}/occurrences": {}, - "/alerts/{id}/status": {}, - "/applemdms": { - "get": { - "description": "Get a list of all Apple MDM configurations. An empty topic indicates that a signed certificate from Apple has not been provided to the PUT endpoint yet.\n\nNote: currently only one MDM configuration per organization is supported.\n\n#### Sample Request\n```\ncurl https://console.jumpcloud.com/api/v2/applemdms \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDM_List", + "/applemdms/{apple_mdm_id}/devices/{device_id}/lock": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "Locks a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Lock", "parameters": [ { - "$ref": "#/parameters/trait:limitDefault1:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:filter:filter" - } - ], - "responses": { - "200": { - "description": "", + "in": "body", + "name": "body", "schema": { - "items": { - "$ref": "#/definitions/AppleMDM" + "properties": { + "pin": { + "description": "6-digit PIN, required for MacOS, to lock the device", + "example": "123456", + "pattern": "^[0-9]{6}$", + "type": "string" + } }, - "type": "array" + "type": "object" } } + ], + "responses": { + "204": { + "description": "" + } }, "security": [ { "x-api-key": [] } ], - "summary": "List Apple MDMs", + "summary": "Lock Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"pin\":\"123456\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms\"\n\nquerystring = {\"limit\":\"1\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms?limit=1&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" } ] }, "x-functionalities-tags": [ - "mdm" + "mdm", + "devices-darwin-security-command" ] }, - "/applemdms/{apple_mdm_id}/csr": { + "/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation": { "parameters": [ { "in": "path", "name": "apple_mdm_id", "required": true, "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" } ], + "post": { + "description": "Refreshes the activation lock information for a device\n\n#### Sample Request\n\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDeviceLockInformation_Refresh", + "parameters": [], + "responses": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Refresh activation lock information for a device", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation' -Method POST -Headers $headers" + } + ] + }, "x-functionalities-tags": [ "mdm" ] }, - "/applemdms/{apple_mdm_id}/depkey": { + "/applemdms/{apple_mdm_id}/devices/{device_id}/restart": { "parameters": [ { "in": "path", "name": "apple_mdm_id", "required": true, "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" } ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/devices": { - "get": { - "description": "Lists all Apple MDM devices.\n\nThe filter and sort queries will allow the following fields:\n`createdAt`\n`depRegistered`\n`enrolled`\n`id`\n`osVersion`\n`serialNumber`\n`udid`\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_List", + "post": { + "description": "Restarts a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\"kextPaths\": [\"Path1\", \"Path2\"]}'\n```", + "operationId": "AppleMDMDevice_Restart", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:filter:filter" - }, - { - "$ref": "#/parameters/trait:sort:sort" - }, - { - "$ref": "#/parameters/trait:listCount:x-total-count" - } - ], - "responses": { - "200": { - "description": "OK", + "in": "body", + "name": "body", "schema": { - "items": { - "$ref": "#/definitions/apple-mdm-device" + "properties": { + "kextPaths": { + "description": "The string to pass when doing a restart and performing a RebuildKernelCache.", + "items": { + "type": "string" + }, + "type": "array" + } }, - "type": "array" + "type": "object" + }, + "x-examples": { + "example-1": { + "kextPaths": [ + "/path/to/kext1", + "/path/to/kext2" + ] + } } } + ], + "responses": { + "204": { + "description": "" + } }, "security": [ { "x-api-key": [] } ], - "summary": "List AppleMDM Devices", + "summary": "Restart Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0&filter=&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"kextPaths\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart\"\n\npayload = {\"kextPaths\": [\"string\"]}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices?limit=10&skip=0&filter=&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"kextPaths\":[\"string\"]}'" } ] }, + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown": { "parameters": [ { "in": "path", "name": "apple_mdm_id", "required": true, "type": "string" + }, + { + "in": "path", + "name": "device_id", + "required": true, + "type": "string" } ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/devices/{device_id}": { - "delete": { - "description": "Remove a single Apple MDM device from MDM enrollment.\n\n#### Sample Request\n```\n curl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDMDevice_Delete", + "post": { + "description": "Shuts down a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Stop", + "parameters": [], "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/apple-mdm-device" - } + "204": { + "description": "" } }, "security": [ @@ -9684,30 +10993,40 @@ "x-api-key": [] } ], - "summary": "Remove an Apple MDM Device's Enrollment", + "summary": "Shut Down Device", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown' -Method POST -Headers $headers" } ] }, + "x-functionalities-tags": [ + "mdm", + "devices-darwin-security-command" + ] + }, + "/applemdms/{apple_mdm_id}/enrollmentprofiles": { "get": { - "description": "Gets a single Apple MDM device.\n\n#### Sample Request\n```\n curl -X GET https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n -H 'accept: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDMDevice_Get", + "description": "Get a list of enrollment profiles for an apple mdm.\n\nNote: currently only one enrollment profile is supported.\n\n#### Sample Request\n```\n curl https://console.jumpcloud.com/api/v2/applemdms/{APPLE_MDM_ID}/enrollmentprofiles \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDMEnrollmentProfile_List", + "parameters": [], "responses": { "200": { - "description": "OK", + "description": "", "schema": { - "$ref": "#/definitions/apple-mdm-device" + "items": { + "$ref": "#/definitions/AppleMDM" + }, + "type": "array" } } }, @@ -9716,19 +11035,19 @@ "x-api-key": [] } ], - "summary": "Details of an AppleMDM Device", + "summary": "List Apple MDM Enrollment Profiles", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles' -Method GET -Headers $headers" } ] }, @@ -9738,19 +11057,13 @@ "name": "apple_mdm_id", "required": true, "type": "string" - }, - { - "in": "path", - "name": "device_id", - "required": true, - "type": "string" } ], "x-functionalities-tags": [ "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/availableOsUpdates": { + "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}": { "parameters": [ { "in": "path", @@ -9760,7 +11073,7 @@ }, { "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } @@ -9769,7 +11082,7 @@ "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/bypasscodes": { + "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}/downloadurl": { "parameters": [ { "in": "path", @@ -9779,7 +11092,7 @@ }, { "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } @@ -9788,28 +11101,118 @@ "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock": { + "/applemdms/{apple_mdm_id}/refreshdepdevices": { + "parameters": [ + { + "in": "path", + "name": "apple_mdm_id", + "required": true, + "type": "string" + } + ], + "post": { + "description": "Refreshes the list of devices that a JumpCloud admin has added to their virtual MDM in Apple Business Manager - ABM so that they can be DEP enrolled with JumpCloud.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", + "operationId": "AppleMDMDevice_Sync", + "parameters": [], + "responses": { + "204": { + "description": "" + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Refresh DEP Devices", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices' -Method POST -Headers $headers" + } + ] + }, + "x-functionalities-tags": [ + "mdm" + ] + }, + "/applemdms/{deviceManagerObjectId}/abm_devices": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/clearrecoverylock": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockconfig": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockpassword": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/lostmode": {}, + "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/setrecoverylock": {}, + "/applemdms/{deviceManagerObjectId}/service-discovery-url": {}, + "/applemdms/{deviceManagerObjectId}/validate-service-discovery-url": {}, + "/applemdms/{deviceObjectId}/background_tasks": {}, + "/applemdms/{id}": { + "delete": { + "description": "Removes an Apple MDM configuration.\n\nWarning: This is a destructive operation and will remove your Apple Push Certificates. We will no longer be able to manage your devices and the only recovery option is to re-register all devices into MDM.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "AppleMDM_Delete", + "parameters": [], + "responses": { + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/AppleMDM" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Delete an Apple MDM", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method DELETE -Headers $headers" + } + ] + }, "parameters": [ { "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } ], - "post": { - "description": "Clears the activation lock on the specified device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDeviceActivationLock_Clear", - "parameters": [], + "put": { + "description": "Updates an Apple MDM configuration. This endpoint is used to supply JumpCloud with a signed certificate from Apple in order to finalize the setup and allow JumpCloud to manage your devices. It may also be used to update the DEP Settings.\n\n#### Sample Request\n```\n curl -X PUT https://console.jumpcloud.com/api/v2/applemdms/{ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"name\": \"MDM name\",\n \"appleSignedCert\": \"{CERTIFICATE}\",\n \"encryptedDepServerToken\": \"{SERVER_TOKEN}\",\n \"dep\": {\n \"welcomeScreen\": {\n \"title\": \"Welcome\",\n \"paragraph\": \"In just a few steps, you will be working securely from your Mac.\",\n \"button\": \"continue\",\n },\n },\n }'\n```", + "operationId": "AppleMDM_Set", + "parameters": [ + { + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/apple-mdm-patch" + } + } + ], "responses": { - "204": { - "description": "" + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/AppleMDM" + } } }, "security": [ @@ -9817,105 +11220,155 @@ "x-api-key": [] } ], - "summary": "Clears the Activation Lock for a Device", + "summary": "Update an Apple MDM", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\npayload = {\n \"ades\": {\n \"ios\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"macos\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n }\n },\n \"allowMobileUserEnrollment\": True,\n \"appleCertCreatorAppleID\": \"string\",\n \"appleSignedCert\": \"string\",\n \"defaultIosUserEnrollmentDeviceGroupID\": \"string\",\n \"defaultSystemGroupID\": \"string\",\n \"dep\": {\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"encryptedDepServerToken\": \"string\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/clearActivationLock' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" } ] }, "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "mdm" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/clearPasscode": { + "/applemdms/{organizationObjectId}/account-driven-service-discovery": {}, + "/applemdms/{organizationObjectId}/account-driven-service-discovery/config": {}, + "/applevpp/locations": { + "x-functionalities-tags": [ + "vpp" + ] + }, + "/applevpp/locations/{id}": { "parameters": [ { + "description": "The Location's Object ID", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "vpp" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/clearRestrictionsPassword": { + "/application/catalog": { + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/application/catalog/{item_id}": { "parameters": [ { "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "item_id", "required": true, "type": "string" } ], "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/erase": { + "/applications": { + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/import/{job_id}/detailedresults": { "parameters": [ { + "description": "ObjectID of the Import Job.", "in": "path", - "name": "apple_mdm_id", + "name": "job_id", "required": true, "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/associations": { + "get": { + "description": "This endpoint will return the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Applications and User Groups.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations?targets=user_group \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ApplicationAssociation_Get", + "parameters": [ + { + "$ref": "#/parameters/trait:graphTargetsApplication:targets" + }, + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "items": { + "$ref": "#/definitions/GraphConnection" + }, + "type": "array" + } + } }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "List the associations of an Application", + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + } + ] + }, + "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], "post": { - "description": "Erases a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Clear", + "description": "This endpoint allows you to manage the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Application and User Groups.\n\n#### Sample Request\n```\ncurl -X POST 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations' \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user_group\",\n \"id\": \"{Group_ID}\"\n }'\n```", + "operationId": "ApplicationAssociation_Set", "parameters": [ { "in": "body", "name": "body", "schema": { - "properties": { - "pin": { - "description": "6-digit PIN, required for MacOS, to erase the device", - "example": "123456", - "pattern": "^[0-9]{6}$", - "type": "string" - } - }, - "type": "object" + "$ref": "#/definitions/GraphOperation-Application" } } ], "responses": { "204": { - "description": "" + "description": "OK" } }, "security": [ @@ -9923,65 +11376,128 @@ "x-api-key": [] } ], - "summary": "Erase Device", + "summary": "Manage the associations of an Application", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"pin\":\"123456\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/erase' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/lock": { + "/applications/{application_id}/import/jobs": { "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], - "post": { - "description": "Locks a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Lock", + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/import/users": { + "get": { + "description": "Get a list of users to import from an Application IdM service provider.", + "operationId": "SCIM_Import", "parameters": [ { - "in": "body", - "name": "body", - "schema": { - "properties": { - "pin": { - "description": "6-digit PIN, required for MacOS, to lock the device", - "example": "123456", - "pattern": "^[0-9]{6}$", - "type": "string" - } - }, - "type": "object" - } + "default": "", + "description": "Filter users by a search term", + "in": "query", + "name": "filter", + "type": "string" + }, + { + "default": "", + "description": "URL query to merge with the service provider request", + "in": "query", + "name": "query", + "type": "string" + }, + { + "default": "", + "description": "Sort users by supported fields", + "enum": [ + "firstname", + "lastname", + "email" + ], + "in": "query", + "name": "sort", + "type": "string", + "x-ms-enum": { + "name": "sort" + } + }, + { + "default": "asc", + "enum": [ + "asc", + "desc" + ], + "in": "query", + "name": "sortOrder", + "type": "string", + "x-ms-enum": { + "name": "sortOrder1" + } + }, + { + "default": "", + "description": "Import sessionId for manual select and view user", + "in": "query", + "name": "sessionId", + "type": "string" + }, + { + "default": false, + "description": "IsCount indicates if the request is only for getting the total count of users.", + "in": "query", + "name": "isCount", + "type": "boolean" + }, + { + "default": false, + "description": "Enable cursor-based pagination", + "in": "query", + "name": "isCursor", + "type": "boolean" + }, + { + "default": "", + "description": "Cursor token for pagination", + "in": "query", + "name": "cursor", + "type": "string" + }, + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" } ], "responses": { - "204": { - "description": "" + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/importUsersResponse" + } } }, "security": [ @@ -9989,49 +11505,50 @@ "x-api-key": [] } ], - "summary": "Lock Device", + "summary": "Get a list of users to import from an Application IdM service provider", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"pin\":\"123456\"}'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock\"\n\npayload = {\"pin\": \"123456\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users\"\n\nquerystring = {\"filter\":\"\",\"query\":\"\",\"sort\":\"\",\"sortOrder\":\"asc\",\"sessionId\":\"\",\"isCount\":\"false\",\"isCursor\":\"false\",\"cursor\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/lock' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"pin\":\"123456\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' -Method GET -Headers $headers" } ] }, - "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" - ] - }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation": { "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], - "post": { - "description": "Refreshes the activation lock information for a device\n\n#### Sample Request\n\n```\ncurl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDeviceLockInformation_Refresh", - "parameters": [], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/logo": { + "delete": { + "description": "Deletes the specified image from an application", + "operationId": "ApplicationLogo_Delete", + "parameters": [ + { + "in": "path", + "name": "application_id", + "required": true, + "type": "string" + } + ], "responses": { "204": { - "description": "" + "description": "NO_CONTENT" } }, "security": [ @@ -10039,73 +11556,114 @@ "x-api-key": [] } ], - "summary": "Refresh activation lock information for a device", + "summary": "Delete application image", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/logo \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/logo\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/refreshActivationLockInformation' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/logo' -Method DELETE -Headers $headers" } ] }, "x-functionalities-tags": [ - "mdm" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/restart": { + "/applications/{application_id}/provision": { "parameters": [ { "in": "path", - "name": "apple_mdm_id", + "name": "application_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/provision/activate": { + "parameters": [ + { + "in": "path", + "name": "application_id", "required": true, "type": "string" }, + { + "in": "header", + "name": "X-Requested-With", + "required": false, + "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/provision/reactivate": { + "parameters": [ { "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" + }, + { + "in": "header", + "name": "X-Requested-With", + "required": false, + "type": "string" } ], - "post": { - "description": "Restarts a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\"kextPaths\": [\"Path1\", \"Path2\"]}'\n```", - "operationId": "AppleMDMDevice_Restart", + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/sso": { + "parameters": [ + { + "in": "path", + "name": "application_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/usergroups": { + "get": { + "description": "This endpoint will return all Users Groups bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ApplicationTraverseUserGroup_Get", "parameters": [ { - "in": "body", - "name": "body", - "schema": { - "properties": { - "kextPaths": { - "description": "The string to pass when doing a restart and performing a RebuildKernelCache.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "x-examples": { - "example-1": { - "kextPaths": [ - "/path/to/kext1", - "/path/to/kext2" - ] - } - } + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:filter:filter" } ], "responses": { - "204": { - "description": "" + "200": { + "description": "OK", + "schema": { + "items": { + "$ref": "#/definitions/GraphObjectWithPaths" + }, + "type": "array" + } } }, "security": [ @@ -10113,49 +11671,59 @@ "x-api-key": [] } ], - "summary": "Restart Device", + "summary": "List the User Groups bound to an Application", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"kextPaths\":[\"string\"]}'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart\"\n\npayload = {\"kextPaths\": [\"string\"]}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/restart' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"kextPaths\":[\"string\"]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, - "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" - ] - }, - "/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown": { "parameters": [ { + "description": "ObjectID of the Application.", "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "device_id", + "name": "application_id", "required": true, "type": "string" } ], - "post": { - "description": "Shuts down a DEP-enrolled device.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Stop", - "parameters": [], + "x-functionalities-tags": [ + "user-portal-applications" + ] + }, + "/applications/{application_id}/users": { + "get": { + "description": "This endpoint will return all Users bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "operationId": "ApplicationTraverseUser_Get", + "parameters": [ + { + "$ref": "#/parameters/trait:limit:limit" + }, + { + "$ref": "#/parameters/trait:skip:skip" + }, + { + "$ref": "#/parameters/trait:filter:filter" + } + ], "responses": { - "204": { - "description": "" + "200": { + "description": "OK", + "schema": { + "items": { + "$ref": "#/definitions/GraphObjectWithPaths" + }, + "type": "array" + } } }, "security": [ @@ -10163,40 +11731,93 @@ "x-api-key": [] } ], - "summary": "Shut Down Device", + "summary": "List the Users bound to an Application", "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/devices/{device_id}/shutdown' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, + "parameters": [ + { + "description": "ObjectID of the Application.", + "in": "path", + "name": "application_id", + "required": true, + "type": "string" + } + ], "x-functionalities-tags": [ - "mdm", - "devices-darwin-security-command" + "user-portal-applications" ] }, - "/applemdms/{apple_mdm_id}/enrollmentprofiles": { + "/approvalflowrequest": { "get": { - "description": "Get a list of enrollment profiles for an apple mdm.\n\nNote: currently only one enrollment profile is supported.\n\n#### Sample Request\n```\n curl https://console.jumpcloud.com/api/v2/applemdms/{APPLE_MDM_ID}/enrollmentprofiles \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDMEnrollmentProfile_List", - "parameters": [], + "description": "Endpoint for getting the list of workflows access requests", + "operationId": "WorkflowAccessRequest_List", + "parameters": [ + { + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" + }, + { + "format": "int64", + "in": "query", + "name": "limit", + "required": false, + "type": "string" + }, + { + "format": "int64", + "in": "query", + "name": "skip", + "required": false, + "type": "string" + }, + { + "in": "query", + "name": "sort", + "required": false, + "type": "string" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "fields", + "required": false, + "type": "array" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "required": false, + "type": "array" + } + ], "responses": { "200": { - "description": "", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/AppleMDM" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.GetAllWorkflowAccessRequestResponse" } } }, @@ -10205,88 +11826,42 @@ "x-api-key": [] } ], - "summary": "List Apple MDM Enrollment Profiles", + "summary": "Get all Workflow Access Requests", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflowrequest?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\",\"limit\":\"SOME_STRING_VALUE\",\"skip\":\"SOME_STRING_VALUE\",\"sort\":\"SOME_STRING_VALUE\",\"fields\":\"SOME_ARRAY_VALUE\",\"filter\":\"SOME_ARRAY_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/enrollmentprofiles' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' -Method GET -Headers $headers" } ] }, - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}": { - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/enrollmentprofiles/{id}/downloadurl": { - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - }, - { - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{apple_mdm_id}/refreshdepdevices": { - "parameters": [ - { - "in": "path", - "name": "apple_mdm_id", - "required": true, - "type": "string" - } - ], "post": { - "description": "Refreshes the list of devices that a JumpCloud admin has added to their virtual MDM in Apple Business Manager - ABM so that they can be DEP enrolled with JumpCloud.\n\n#### Sample Request\n```\n curl -X POST https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{}'\n```", - "operationId": "AppleMDMDevice_Sync", - "parameters": [], + "description": "Endpoint for adding a new workflow access request", + "operationId": "WorkflowAccessRequest_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "required": true, + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestRequest" + } + } + ], "responses": { - "204": { - "description": "" + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestResponse" + } } }, "security": [ @@ -10294,45 +11869,48 @@ "x-api-key": [] } ], - "summary": "Refresh DEP Devices", + "summary": "Create Workflow Access Request", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowrequest \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest\"\n\npayload = {\n \"id\": \"string\",\n \"organizationObjectId\": \"string\",\n \"reason\": \"string\",\n \"requestedDuration\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{apple_mdm_id}/refreshdepdevices' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" } ] - }, - "x-functionalities-tags": [ - "mdm" - ] + } }, - "/applemdms/{deviceManagerObjectId}/abm_devices": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/clearrecoverylock": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockconfig": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/getrecoverylockpassword": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/lostmode": {}, - "/applemdms/{deviceManagerObjectId}/devices/{deviceObjectId}/setrecoverylock": {}, - "/applemdms/{deviceManagerObjectId}/service-discovery-url": {}, - "/applemdms/{deviceManagerObjectId}/validate-service-discovery-url": {}, - "/applemdms/{deviceObjectId}/background_tasks": {}, - "/applemdms/{id}": { - "delete": { - "description": "Removes an Apple MDM configuration.\n\nWarning: This is a destructive operation and will remove your Apple Push Certificates. We will no longer be able to manage your devices and the only recovery option is to re-register all devices into MDM.\n\n#### Sample Request\n```\ncurl -X DELETE https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "AppleMDM_Delete", - "parameters": [], + "/approvalflowrequest/{id}": { + "get": { + "description": "Endpoint that returns the workflow access request by id", + "operationId": "WorkflowAccessRequest_Get", + "parameters": [ + { + "in": "path", + "name": "id", + "required": true, + "type": "string" + }, + { + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" + } + ], "responses": { "200": { - "description": "", + "description": "A successful response.", "schema": { - "$ref": "#/definitions/AppleMDM" + "$ref": "#/definitions/jumpcloud.ingresso.GetWorkflowAccessRequestResponse" } } }, @@ -10341,47 +11919,68 @@ "x-api-key": [] } ], - "summary": "Delete an Apple MDM", + "summary": "Get Workflow Access Requests", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, - "parameters": [ - { - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], "put": { - "description": "Updates an Apple MDM configuration. This endpoint is used to supply JumpCloud with a signed certificate from Apple in order to finalize the setup and allow JumpCloud to manage your devices. It may also be used to update the DEP Settings.\n\n#### Sample Request\n```\n curl -X PUT https://console.jumpcloud.com/api/v2/applemdms/{ID} \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"name\": \"MDM name\",\n \"appleSignedCert\": \"{CERTIFICATE}\",\n \"encryptedDepServerToken\": \"{SERVER_TOKEN}\",\n \"dep\": {\n \"welcomeScreen\": {\n \"title\": \"Welcome\",\n \"paragraph\": \"In just a few steps, you will be working securely from your Mac.\",\n \"button\": \"continue\",\n },\n },\n }'\n```", - "operationId": "AppleMDM_Set", + "description": "Endpoint that updates the workflow access request by id", + "operationId": "WorkflowAccessRequest_Set", "parameters": [ + { + "in": "path", + "name": "id", + "required": true, + "type": "string" + }, { "in": "body", "name": "body", + "required": true, "schema": { - "$ref": "#/definitions/apple-mdm-patch" + "properties": { + "admin": { + "type": "string" + }, + "approvedDuration": { + "type": "string" + }, + "internalNote": { + "type": "string" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "remarks": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" } } ], "responses": { "200": { - "description": "", + "description": "A successful response.", "schema": { - "$ref": "#/definitions/AppleMDM" + "$ref": "#/definitions/jumpcloud.ingresso.UpdateWorkflowAccessRequestResponse" } } }, @@ -10390,107 +11989,82 @@ "x-api-key": [] } ], - "summary": "Update an Apple MDM", + "summary": "Update Workflow Access Requests", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/applemdms/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/approvalflowrequest/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"admin\":\"string\",\"approvedDuration\":\"string\",\"internalNote\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applemdms/{id}\"\n\npayload = {\n \"ades\": {\n \"ios\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"macos\": {\n \"defaultDeviceGroupObjectIds\": [\"string\"],\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"setupOptions\": [\"accessibility\"],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n }\n },\n \"allowMobileUserEnrollment\": True,\n \"appleCertCreatorAppleID\": \"string\",\n \"appleSignedCert\": \"string\",\n \"defaultIosUserEnrollmentDeviceGroupID\": \"string\",\n \"defaultSystemGroupID\": \"string\",\n \"dep\": {\n \"enableZeroTouchEnrollment\": True,\n \"setupAssistantOptions\": [{\"option\": \"accessibility\"}],\n \"welcomeScreen\": {\n \"button\": \"string\",\n \"paragraph\": \"string\",\n \"title\": \"string\"\n }\n },\n \"encryptedDepServerToken\": \"string\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}\"\n\npayload = {\n \"admin\": \"string\",\n \"approvedDuration\": \"string\",\n \"internalNote\": \"string\",\n \"organizationObjectId\": \"string\",\n \"remarks\": \"string\",\n \"status\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applemdms/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"ades\":{\"ios\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"macos\":{\"defaultDeviceGroupObjectIds\":[\"string\"],\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"setupOptions\":[\"accessibility\"],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}}},\"allowMobileUserEnrollment\":true,\"appleCertCreatorAppleID\":\"string\",\"appleSignedCert\":\"string\",\"defaultIosUserEnrollmentDeviceGroupID\":\"string\",\"defaultSystemGroupID\":\"string\",\"dep\":{\"enableZeroTouchEnrollment\":true,\"setupAssistantOptions\":[{\"option\":\"accessibility\"}],\"welcomeScreen\":{\"button\":\"string\",\"paragraph\":\"string\",\"title\":\"string\"}},\"encryptedDepServerToken\":\"string\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"admin\":\"string\",\"approvedDuration\":\"string\",\"internalNote\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" } ] - }, - "x-functionalities-tags": [ - "mdm" - ] - }, - "/applemdms/{organizationObjectId}/account-driven-service-discovery": {}, - "/applemdms/{organizationObjectId}/account-driven-service-discovery/config": {}, - "/applevpp/locations": { - "x-functionalities-tags": [ - "vpp" - ] - }, - "/applevpp/locations/{id}": { - "parameters": [ - { - "description": "The Location's Object ID", - "in": "path", - "name": "id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "vpp" - ] - }, - "/application/catalog": { - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/application/catalog/{item_id}": { - "parameters": [ - { - "in": "path", - "name": "item_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications": { - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/import/{job_id}/detailedresults": { - "parameters": [ - { - "description": "ObjectID of the Import Job.", - "in": "path", - "name": "job_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/associations": { + "/approvalflows": { "get": { - "description": "This endpoint will return the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Applications and User Groups.\n\n\n#### Sample Request\n```\ncurl -X GET 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations?targets=user_group \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ApplicationAssociation_Get", + "description": "Endpoint for getting all access workflows ", + "operationId": "Workflow_List", "parameters": [ { - "$ref": "#/parameters/trait:graphTargetsApplication:targets" + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" }, { - "$ref": "#/parameters/trait:limit:limit" + "format": "int64", + "in": "query", + "name": "limit", + "required": false, + "type": "string" }, { - "$ref": "#/parameters/trait:skip:skip" + "format": "int64", + "in": "query", + "name": "skip", + "required": false, + "type": "string" + }, + { + "in": "query", + "name": "sort", + "required": false, + "type": "string" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "fields", + "required": false, + "type": "array" + }, + { + "collectionFormat": "multi", + "in": "query", + "items": { + "type": "string" + }, + "name": "filter", + "required": false, + "type": "array" } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/GraphConnection" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.GetAllAccessWorkFlowsResponse" } } }, @@ -10499,46 +12073,42 @@ "x-api-key": [] } ], - "summary": "List the associations of an Application", + "summary": "Get all Access workflows", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflows?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\",\"limit\":\"SOME_STRING_VALUE\",\"skip\":\"SOME_STRING_VALUE\",\"sort\":\"SOME_STRING_VALUE\",\"fields\":\"SOME_ARRAY_VALUE\",\"filter\":\"SOME_ARRAY_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' -Method GET -Headers $headers" } ] }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], "post": { - "description": "This endpoint allows you to manage the _direct_ associations of an Application. A direct association can be a non-homogeneous relationship between 2 different objects, for example Application and User Groups.\n\n#### Sample Request\n```\ncurl -X POST 'https://console.jumpcloud.com/api/v2/applications/{Application_ID}/associations' \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}' \\\n -d '{\n \"op\": \"add\",\n \"type\": \"user_group\",\n \"id\": \"{Group_ID}\"\n }'\n```", - "operationId": "ApplicationAssociation_Set", + "description": "Endpoint for adding a new access workflow", + "operationId": "Workflow_Create", "parameters": [ { "in": "body", "name": "body", + "required": true, "schema": { - "$ref": "#/definitions/GraphOperation-Application" + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowRequest" } } ], "responses": { - "204": { - "description": "OK" + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowResponse" + } } }, "security": [ @@ -10546,127 +12116,214 @@ "x-api-key": [] } ], - "summary": "Manage the associations of an Application", + "summary": "Create Access Workflow", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflows \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"category\":\"string\",\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"resourceType\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows\"\n\npayload = {\n \"approvalType\": \"string\",\n \"approverRequirement\": \"string\",\n \"approverResources\": [\n {\n \"requireAll\": True,\n \"resourceId\": \"string\",\n \"resourceName\": \"string\",\n \"resourceOrder\": 0,\n \"resourceType\": \"string\"\n }\n ],\n \"category\": \"string\",\n \"description\": \"string\",\n \"fixedDuration\": \"string\",\n \"iconColor\": \"string\",\n \"iconUrl\": \"string\",\n \"multiSelectDuration\": [\"string\"],\n \"name\": \"string\",\n \"nonAdminApproval\": True,\n \"organizationObjectId\": \"string\",\n \"resourceId\": \"string\",\n \"resourceType\": \"string\",\n \"slackConfig\": [{\"slackResourceId\": \"string\"}],\n \"slackEnabled\": True,\n \"status\": \"string\",\n \"timeBasedAccess\": True,\n \"ttlConfig\": \"TTL_CONFIG_UNSPECIFIED\",\n \"visibleTo\": [\"string\"]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"category\":\"string\",\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"resourceType\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" } ] - }, - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/import/jobs": { - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/import/users": { - "get": { - "description": "Get a list of users to import from an Application IdM service provider.", - "operationId": "SCIM_Import", + "/approvalflows/{approvalFlowId}": { + "delete": { + "description": "Endpoint for deleting accessworkflow by id", + "operationId": "Workflow_Delete", "parameters": [ { - "default": "", - "description": "Filter users by a search term", - "in": "query", - "name": "filter", + "in": "path", + "name": "approvalFlowId", + "required": true, "type": "string" }, { - "default": "", - "description": "URL query to merge with the service provider request", + "format": "byte", "in": "query", - "name": "query", + "name": "organizationObjectId", + "required": false, "type": "string" - }, - { - "default": "", - "description": "Sort users by supported fields", - "enum": [ - "firstname", - "lastname", - "email" - ], - "in": "query", - "name": "sort", - "type": "string", - "x-ms-enum": { - "name": "sort" + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.DeleteAccessWorkflowResponse" } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Delete access workflow", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request DELETE \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { - "default": "asc", - "enum": [ - "asc", - "desc" - ], - "in": "query", - "name": "sortOrder", - "type": "string", - "x-ms-enum": { - "name": "sortOrder1" - } + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { - "default": "", - "description": "Import sessionId for manual select and view user", - "in": "query", - "name": "sessionId", + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' -Method DELETE -Headers $headers" + } + ] + }, + "get": { + "description": "Endpoint for getting workflow by id", + "operationId": "Workflow_Get", + "parameters": [ + { + "in": "path", + "name": "approvalFlowId", + "required": true, "type": "string" }, { - "default": false, - "description": "IsCount indicates if the request is only for getting the total count of users.", + "format": "byte", "in": "query", - "name": "isCount", - "type": "boolean" - }, + "name": "organizationObjectId", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflow" + } + } + }, + "security": [ { - "default": false, - "description": "Enable cursor-based pagination", - "in": "query", - "name": "isCursor", - "type": "boolean" + "x-api-key": [] + } + ], + "summary": "Get AccessWorkflow by id", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { - "default": "", - "description": "Cursor token for pagination", - "in": "query", - "name": "cursor", - "type": "string" + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { - "$ref": "#/parameters/trait:limit:limit" + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" + } + ] + }, + "put": { + "description": "Endpoint for updating a new access workflow", + "operationId": "Workflow_Set", + "parameters": [ + { + "in": "path", + "name": "approvalFlowId", + "required": true, + "type": "string" }, { - "$ref": "#/parameters/trait:skip:skip" + "in": "body", + "name": "body", + "required": true, + "schema": { + "properties": { + "approvalType": { + "type": "string" + }, + "approverRequirement": { + "type": "string" + }, + "approverResources": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.ApproverResource" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "fixedDuration": { + "type": "string" + }, + "iconColor": { + "type": "string" + }, + "iconUrl": { + "type": "string" + }, + "multiSelectDuration": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "nonAdminApproval": { + "type": "boolean" + }, + "organizationObjectId": { + "format": "byte", + "type": "string" + }, + "resourceId": { + "type": "string" + }, + "slackConfig": { + "items": { + "$ref": "#/definitions/jumpcloud.ingresso.SlackConfig" + }, + "type": "array" + }, + "slackEnabled": { + "type": "boolean" + }, + "status": { + "type": "string" + }, + "timeBasedAccess": { + "type": "boolean" + }, + "ttlConfig": { + "$ref": "#/definitions/jumpcloud.ingresso.TtlConfig" + }, + "visibleTo": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "$ref": "#/definitions/importUsersResponse" + "$ref": "#/definitions/jumpcloud.ingresso.UpdateAccessWorkflowResponse" } } }, @@ -10675,50 +12332,86 @@ "x-api-key": [] } ], - "summary": "Get a list of users to import from an Application IdM service provider", + "summary": "Update Access Workflow", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users\"\n\nquerystring = {\"filter\":\"\",\"query\":\"\",\"sort\":\"\",\"sortOrder\":\"asc\",\"sessionId\":\"\",\"isCount\":\"false\",\"isCursor\":\"false\",\"cursor\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}\"\n\npayload = {\n \"approvalType\": \"string\",\n \"approverRequirement\": \"string\",\n \"approverResources\": [\n {\n \"requireAll\": True,\n \"resourceId\": \"string\",\n \"resourceName\": \"string\",\n \"resourceOrder\": 0,\n \"resourceType\": \"string\"\n }\n ],\n \"description\": \"string\",\n \"fixedDuration\": \"string\",\n \"iconColor\": \"string\",\n \"iconUrl\": \"string\",\n \"multiSelectDuration\": [\"string\"],\n \"name\": \"string\",\n \"nonAdminApproval\": True,\n \"organizationObjectId\": \"string\",\n \"resourceId\": \"string\",\n \"slackConfig\": [{\"slackResourceId\": \"string\"}],\n \"slackEnabled\": True,\n \"status\": \"string\",\n \"timeBasedAccess\": True,\n \"ttlConfig\": \"TTL_CONFIG_UNSPECIFIED\",\n \"visibleTo\": [\"string\"]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/import/users?filter=&query=&sort=&sortOrder=asc&sessionId=&isCount=false&isCursor=false&cursor=&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflows/{approvalFlowId}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"approvalType\":\"string\",\"approverRequirement\":\"string\",\"approverResources\":[{\"requireAll\":true,\"resourceId\":\"string\",\"resourceName\":\"string\",\"resourceOrder\":0,\"resourceType\":\"string\"}],\"description\":\"string\",\"fixedDuration\":\"string\",\"iconColor\":\"string\",\"iconUrl\":\"string\",\"multiSelectDuration\":[\"string\"],\"name\":\"string\",\"nonAdminApproval\":true,\"organizationObjectId\":\"string\",\"resourceId\":\"string\",\"slackConfig\":[{\"slackResourceId\":\"string\"}],\"slackEnabled\":true,\"status\":\"string\",\"timeBasedAccess\":true,\"ttlConfig\":\"TTL_CONFIG_UNSPECIFIED\",\"visibleTo\":[\"string\"]}'" } ] - }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/logo": { - "delete": { - "description": "Deletes the specified image from an application", - "operationId": "ApplicationLogo_Delete", + "/approvalflowsettings": { + "get": { + "description": "Endpoint for getting workflow settings for an organisation", + "operationId": "WorkflowSettings_Get", + "parameters": [ + { + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.AccessWorkflowSettings" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "Get AccessWorkflow settings for an organisation", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approvalflowsettings?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" + } + ] + }, + "post": { + "description": "Endpoint for adding a new access workflow Settings", + "operationId": "WorkflowSettings_Create", "parameters": [ { - "in": "path", - "name": "application_id", + "in": "body", + "name": "body", "required": true, - "type": "string" + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest" + } } ], "responses": { - "204": { - "description": "NO_CONTENT" + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse" + } } }, "security": [ @@ -10726,113 +12419,41 @@ "x-api-key": [] } ], - "summary": "Delete application image", + "summary": "Create Access Workflow Settings for an organization", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/applications/{application_id}/logo \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowsettings \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/logo\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\npayload = {\n \"adminApprovalEmail\": True,\n \"channelEvents\": [\n {\n \"channelObjectId\": \"string\",\n \"eventTypes\": [\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]\n }\n ],\n \"exposeApprovalProgress\": True,\n \"organizationObjectId\": \"string\",\n \"resourceRequest\": True,\n \"userApprovalEmail\": True,\n \"userRequestEmail\": True\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/logo' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" } ] }, - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/provision": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/provision/activate": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - }, - { - "in": "header", - "name": "X-Requested-With", - "required": false, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/provision/reactivate": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - }, - { - "in": "header", - "name": "X-Requested-With", - "required": false, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/sso": { - "parameters": [ - { - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] - }, - "/applications/{application_id}/usergroups": { - "get": { - "description": "This endpoint will return all Users Groups bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the group's type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User Group; this array represents all grouping and/or associations that would have to be removed to deprovision the User Group from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/usergroups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ApplicationTraverseUserGroup_Get", + "put": { + "description": "Endpoint for updating a access workflow settings for an organization", + "operationId": "WorkflowSettings_Set", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" - }, - { - "$ref": "#/parameters/trait:filter:filter" + "in": "body", + "name": "body", + "required": true, + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.UpdateAccessWorkflowSettingsRequest" + } } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/GraphObjectWithPaths" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.UpdateAccessWorkflowSettingsResponse" } } }, @@ -10841,58 +12462,48 @@ "x-api-key": [] } ], - "summary": "List the User Groups bound to an Application", + "summary": "Update Access Workflow Settings", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/approvalflowsettings \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\npayload = {\n \"adminApprovalEmail\": True,\n \"channelEvents\": [\n {\n \"channelObjectId\": \"string\",\n \"eventTypes\": [\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]\n }\n ],\n \"exposeApprovalProgress\": True,\n \"organizationObjectId\": \"string\",\n \"resourceRequest\": True,\n \"userApprovalEmail\": True,\n \"userRequestEmail\": True\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" } ] - }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/applications/{application_id}/users": { + "/approversprogress/{id}": { "get": { - "description": "This endpoint will return all Users bound to an Application, either directly or indirectly, essentially traversing the JumpCloud Graph for your Organization.\n\nEach element will contain the type, id, attributes and paths.\n\nThe `attributes` object is a key/value hash of compiled graph attributes for all paths followed.\n\nThe `paths` array enumerates each path from this Application to the corresponding User; this array represents all grouping and/or associations that would have to be removed to deprovision the User from this Application.\n\nSee `/members` and `/associations` endpoints to manage those collections.\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/users \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", - "operationId": "ApplicationTraverseUser_Get", + "description": "Endpoint for getting the approval progress of a access request", + "operationId": "WorkflowAccessRequestProgress_Get", "parameters": [ { - "$ref": "#/parameters/trait:limit:limit" - }, - { - "$ref": "#/parameters/trait:skip:skip" + "in": "path", + "name": "id", + "required": true, + "type": "string" }, { - "$ref": "#/parameters/trait:filter:filter" + "format": "byte", + "in": "query", + "name": "organizationObjectId", + "required": false, + "type": "string" } ], "responses": { "200": { - "description": "OK", + "description": "A successful response.", "schema": { - "items": { - "$ref": "#/definitions/GraphObjectWithPaths" - }, - "type": "array" + "$ref": "#/definitions/jumpcloud.ingresso.GetAccessRequestApprovalProgressResponse" } } }, @@ -10901,41 +12512,24 @@ "x-api-key": [] } ], - "summary": "List the Users bound to an Application", + "summary": "Get Approval flow progress by id for admin portal", + "x-dynamic-gateway": true, "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/approversprogress/{id}?organizationObjectId=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/applications/{application_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approversprogress/{id}\"\n\nquerystring = {\"organizationObjectId\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/applications/{application_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approversprogress/{id}?organizationObjectId=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] - }, - "parameters": [ - { - "description": "ObjectID of the Application.", - "in": "path", - "name": "application_id", - "required": true, - "type": "string" - } - ], - "x-functionalities-tags": [ - "user-portal-applications" - ] + } }, - "/approvalflowrequest": {}, - "/approvalflowrequest/{id}": {}, - "/approvalflows": {}, - "/approvalflows/{approvalFlowId}": {}, - "/approvalflowsettings": {}, - "/approversprogress/{id}": {}, "/assets/accessories": {}, "/assets/accessories/batch": {}, "/assets/accessories/{id}": {}, @@ -10990,15 +12584,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0&filter=&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0&filter=&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11031,15 +12625,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/authn/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/authn/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" } ] }, @@ -11069,15 +12663,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method DELETE -Headers $headers" } ] }, @@ -11102,15 +12696,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method GET -Headers $headers" } ] }, @@ -11152,15 +12746,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/authn/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/authn/policies/{id}\"\n\npayload = {\n \"conditions\": {},\n \"description\": \"string\",\n \"disabled\": True,\n \"effect\": {\n \"action\": \"allow\",\n \"custom_error_message\": {\n \"enabled\": True,\n \"message\": \"string\",\n \"primary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n },\n \"secondary_help\": {\n \"text\": \"string\",\n \"url\": \"string\"\n }\n },\n \"obligations\": {\n \"mfa\": {\"required\": True},\n \"mfaFactors\": [{\"type\": \"DURT\"}],\n \"userVerification\": {\"requirement\": \"none\"}\n }\n },\n \"name\": \"string\",\n \"targets\": {\n \"resources\": [\n {\n \"id\": \"string\",\n \"type\": \"admin_portal\"\n }\n ],\n \"userAttributes\": {\n \"exclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ],\n \"inclusions\": [\n {\n \"field\": \"string\",\n \"operator\": \"EQ\",\n \"value\": None\n }\n ]\n },\n \"userGroups\": {\n \"exclusions\": [\"string\"],\n \"inclusions\": [\"string\"]\n },\n \"users\": {\"inclusions\": [\"string\"]}\n },\n \"type\": \"user_portal\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/authn/policies/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"conditions\":{},\"description\":\"string\",\"disabled\":true,\"effect\":{\"action\":\"allow\",\"custom_error_message\":{\"enabled\":true,\"message\":\"string\",\"primary_help\":{\"text\":\"string\",\"url\":\"string\"},\"secondary_help\":{\"text\":\"string\",\"url\":\"string\"}},\"obligations\":{\"mfa\":{\"required\":true},\"mfaFactors\":[{\"type\":\"DURT\"}],\"userVerification\":{\"requirement\":\"none\"}}},\"name\":\"string\",\"targets\":{\"resources\":[{\"id\":\"string\",\"type\":\"admin_portal\"}],\"userAttributes\":{\"exclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}],\"inclusions\":[{\"field\":\"string\",\"operator\":\"EQ\",\"value\":null}]},\"userGroups\":{\"exclusions\":[\"string\"],\"inclusions\":[\"string\"]},\"users\":{\"inclusions\":[\"string\"]}},\"type\":\"user_portal\"}'" } ] }, @@ -11216,15 +12810,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" + "source": "curl --request PATCH \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"id\": \"string\",\n \"lastname\": \"string\",\n \"organization\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"id\": \"string\",\n \"lastname\": \"string\",\n \"organization\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"id\":\"string\",\"lastname\":\"string\",\"organization\":\"string\",\"username\":\"string\"}]'" } ] }, @@ -11281,15 +12875,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'creation-source: jumpcloud:bulk' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "curl --request POST \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'creation-source: jumpcloud:bulk' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"creation-source\": \"jumpcloud:bulk\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users\"\n\nquerystring = {\"suppressEmail\":\"SOME_BOOLEAN_VALUE\"}\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"creation-source\": \"jumpcloud:bulk\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"creation-source\", \"jumpcloud:bulk\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"creation-source\", \"jumpcloud:bulk\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users?suppressEmail=SOME_BOOLEAN_VALUE' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" } ] }, @@ -11330,15 +12924,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/users/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11396,15 +12990,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&filter=&skip=0&userid=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&skip=0&userid=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\nquerystring = {\"limit\":\"10\",\"filter\":\"\",\"skip\":\"0\",\"userid\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"userid\":\"SOME_STRING_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&filter=&skip=0&userid=SOME_STRING_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates?limit=10&skip=0&userid=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, @@ -11441,15 +13035,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\npayload = {\n \"activation_email_override\": \"string\",\n \"send_activation_emails\": True,\n \"start_date\": \"2019-08-24T14:15:22Z\",\n \"state\": \"ACTIVATED\",\n \"user_ids\": [\"string\"]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates\"\n\npayload = {\n \"activation_email_override\": \"string\",\n \"send_activation_emails\": True,\n \"start_date\": \"2019-08-24T14:15:22Z\",\n \"state\": \"ACTIVATED\",\n \"user_ids\": [\"string\"]\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"activation_email_override\":\"string\",\"send_activation_emails\":true,\"start_date\":\"2019-08-24T14:15:22Z\",\"state\":\"ACTIVATED\",\"user_ids\":[\"string\"]}'" } ] }, @@ -11549,15 +13143,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/bulk/userstates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/bulk/userstates/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/bulk/userstates/{id}' -Method DELETE -Headers $headers" } ] }, @@ -11620,15 +13214,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11667,15 +13261,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/commands/{command_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/commands/{command_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -11718,15 +13312,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11779,15 +13373,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/commands/{command_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/commands/{command_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -11876,15 +13470,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/customemails \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/customemails \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" } ] } @@ -11908,15 +13502,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method DELETE -Headers $headers" } ] }, @@ -11941,15 +13535,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method GET -Headers $headers" } ] }, @@ -11990,15 +13584,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/customemails/{custom_email_type} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}\"\n\npayload = {\n \"body\": \"string\",\n \"button\": \"string\",\n \"header\": \"string\",\n \"nextStepContactInfo\": \"string\",\n \"subject\": \"string\",\n \"title\": \"string\",\n \"type\": \"activate_gapps_user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/customemails/{custom_email_type}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"body\":\"string\",\"button\":\"string\",\"header\":\"string\",\"nextStepContactInfo\":\"string\",\"subject\":\"string\",\"title\":\"string\",\"type\":\"activate_gapps_user\"}'" } ] }, @@ -12084,15 +13678,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/directories?fields=&limit=10&sort=&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/directories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/directories\"\n\nquerystring = {\"fields\":\"\",\"limit\":\"10\",\"sort\":\"\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/directories?fields=&limit=10&sort=&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/directories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -12188,15 +13782,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method GET -Headers $headers" } ] }, @@ -12221,15 +13815,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"POST\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method POST -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts' -Method POST -Headers $headers" } ] }, @@ -12262,15 +13856,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method GET -Headers $headers" } ] }, @@ -12311,15 +13905,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" } ] }, @@ -12350,15 +13944,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method DELETE -Headers $headers" } ] }, @@ -12383,15 +13977,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method GET -Headers $headers" } ] }, @@ -12438,15 +14032,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}\"\n\npayload = {\n \"apiHost\": \"string\",\n \"integrationKey\": \"string\",\n \"name\": \"string\",\n \"secretKey\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{account_id}/applications/{application_id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"apiHost\":\"string\",\"integrationKey\":\"string\",\"name\":\"string\",\"secretKey\":\"string\"}'" } ] }, @@ -12477,15 +14071,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method DELETE -Headers $headers" } ] }, @@ -12510,15 +14104,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/duo/accounts/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/duo/accounts/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/duo/accounts/{id}' -Method GET -Headers $headers" } ] }, @@ -12535,6 +14129,8 @@ "duo" ] }, + "/feature-settings": {}, + "/feature-settings/{feature_name}/{setting_name}": {}, "/featureTrials/{feature_code}": {}, "/geolocation/countries": { "x-functionalities-tags": [ @@ -12553,13 +14149,14 @@ "/google-emm/enterprises/{enterpriseId}": {}, "/google-emm/enterprises/{enterpriseId}/connection-status": {}, "/google-emm/enterprises/{enterpriseId}/enrollment-tokens/{tokenId}": {}, + "/google-emm/enterprises/{enterpriseId}/generate-upgrade-url": {}, "/google-emm/enterprises/{enterpriseObjectId}/devices": {}, "/google-emm/enterprises/{enterpriseObjectId}/enrollment-tokens": {}, "/google-emm/signup-urls": {}, "/google-emm/web-tokens": {}, "/groups": { "get": { - "description": "This endpoint returns all Groups that exist in your organization.\n\n#### Available filter fields:\n - `name`\n - `disabled`\n - `type`\n\n#### Sample Request\n\n```\n curl -X GET \\\n https://console.jumpcloud.com/api/v2/groups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "description": "This endpoint returns all Groups that exist in your organization.\n\n#### Available filter fields:\n - `name`\n - `disabled`\n - `type`\n - `memberQueryErrorFlags`\n\n#### Sample Request\n\n```\n curl -X GET \\\n https://console.jumpcloud.com/api/v2/groups \\\n -H 'accept: application/json' \\\n -H 'content-type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", "operationId": "Group_List", "parameters": [ { @@ -12601,15 +14198,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/groups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/groups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-unfiltered-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/groups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/groups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-unfiltered-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/groups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-unfiltered-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/groups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -12658,15 +14255,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -12705,15 +14302,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -12938,15 +14535,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/translationrules?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13118,15 +14715,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13178,15 +14775,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{gsuite_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13225,15 +14822,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method GET -Headers $headers" } ] }, @@ -13270,15 +14867,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'content-type: application/json' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/gsuites/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"importFilter\": \"string\",\n \"name\": \"string\",\n \"organizationObjectId\": \"string\",\n \"userLockoutAction\": \"suspend\",\n \"userPasswordExpirationAction\": \"suspend\"\n}\nheaders = {\"content-type\": \"application/json\"}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/gsuites/{id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"importFilter\": \"string\",\n \"name\": \"string\",\n \"organizationObjectId\": \"string\",\n \"userLockoutAction\": \"suspend\",\n \"userPasswordExpirationAction\": \"suspend\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/gsuites/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"importFilter\":\"string\",\"name\":\"string\",\"organizationObjectId\":\"string\",\"userLockoutAction\":\"suspend\",\"userPasswordExpirationAction\":\"suspend\"}'" } ] }, @@ -13429,15 +15026,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0&filter=&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --header 'x-total-count: SOME_INTEGER_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-total-count\": \"SOME_INTEGER_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0&filter=&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-total-count\", \"SOME_INTEGER_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13470,15 +15067,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/iplists \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/iplists \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" } ] }, @@ -13508,15 +15105,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method DELETE -Headers $headers" } ] }, @@ -13541,15 +15138,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method GET -Headers $headers" } ] }, @@ -13590,15 +15187,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" } ] }, @@ -13631,15 +15228,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/iplists/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/iplists/{id}\"\n\npayload = {\n \"description\": \"string\",\n \"ips\": [\"string\"],\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/iplists/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"description\":\"string\",\"ips\":[\"string\"],\"name\":\"string\"}'" } ] }, @@ -13719,15 +15316,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13760,15 +15357,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method GET -Headers $headers" } ] }, @@ -13838,15 +15435,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\npayload = {\n \"id\": \"string\",\n \"userLockoutAction\": \"disable\",\n \"userPasswordExpirationAction\": \"disable\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{id}\"\n\npayload = {\n \"id\": \"string\",\n \"userLockoutAction\": \"disable\",\n \"userPasswordExpirationAction\": \"disable\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"userLockoutAction\":\"disable\",\"userPasswordExpirationAction\":\"disable\"}'" } ] } @@ -13889,15 +15486,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -13939,15 +15536,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -13999,15 +15596,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14049,15 +15646,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"sid\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"sid\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\npayload = {\n \"name\": \"string\",\n \"sid\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains\"\n\npayload = {\n \"name\": \"string\",\n \"sid\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"sid\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"sid\":\"string\"}'" } ] }, @@ -14093,15 +15690,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method DELETE -Headers $headers" } ] }, @@ -14129,15 +15726,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/sambadomains/{id}' -Method GET -Headers $headers" } ] }, @@ -14272,15 +15869,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14335,15 +15932,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/ldapservers/{ldapserver_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14424,15 +16021,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method GET -Headers $headers" } ] }, @@ -14477,15 +16074,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}\"\n\npayload = {\n \"defaultDomain\": {\"id\": \"string\"},\n \"groupsEnabled\": True,\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"defaultDomain\":{\"id\":\"string\"},\"groupsEnabled\":true,\"name\":\"string\"}'" } ] } @@ -14525,15 +16122,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14572,15 +16169,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -14680,15 +16277,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' \\\n --header 'ConsistencyLevel: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users\"\n\nquerystring = {\"top\":\"SOME_INTEGER_VALUE\",\"skipToken\":\"SOME_STRING_VALUE\",\"filter\":\"SOME_STRING_VALUE\",\"search\":\"SOME_STRING_VALUE\",\"orderby\":\"SOME_STRING_VALUE\",\"count\":\"SOME_BOOLEAN_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users\"\n\nquerystring = {\"top\":\"SOME_INTEGER_VALUE\",\"skipToken\":\"SOME_STRING_VALUE\",\"filter\":\"SOME_STRING_VALUE\",\"search\":\"SOME_STRING_VALUE\",\"orderby\":\"SOME_STRING_VALUE\",\"count\":\"SOME_BOOLEAN_VALUE\"}\n\nheaders = {\n \"ConsistencyLevel\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"ConsistencyLevel\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/import/users?top=SOME_INTEGER_VALUE&skipToken=SOME_STRING_VALUE&filter=SOME_STRING_VALUE&search=SOME_STRING_VALUE&orderby=SOME_STRING_VALUE&count=SOME_BOOLEAN_VALUE' -Method GET -Headers $headers" } ] }, @@ -14754,15 +16351,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/translationrules?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14934,15 +16531,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -14972,6 +16569,12 @@ }, { "$ref": "#/parameters/trait:filter:filter" + }, + { + "description": "Include sync status for users", + "in": "query", + "name": "syncStatus", + "type": "boolean" } ], "responses": { @@ -14994,15 +16597,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&syncStatus=SOME_BOOLEAN_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"syncStatus\":\"SOME_BOOLEAN_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/office365s/{office365_id}/users?limit=10&skip=0&syncStatus=SOME_BOOLEAN_VALUE' -Method GET -Headers $headers" } ] }, @@ -15321,15 +16924,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15362,15 +16965,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"template\": {\"id\": \"string\"},\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"template\": {\"id\": \"string\"},\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"template\":{\"id\":\"string\"},\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" } ] }, @@ -15400,15 +17003,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method DELETE -Headers $headers" } ] }, @@ -15433,15 +17036,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method GET -Headers $headers" } ] }, @@ -15483,15 +17086,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policies/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"notes\": \"string\",\n \"values\": [\n {\n \"configFieldID\": \"string\",\n \"sensitive\": True,\n \"value\": \"string\"\n }\n ]\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"notes\":\"string\",\"values\":[{\"configFieldID\":\"string\",\"sensitive\":true,\"value\":\"string\"}]}'" } ] }, @@ -15537,15 +17140,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15584,15 +17187,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -15644,15 +17247,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/memberof?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15710,15 +17313,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policyresults?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15775,15 +17378,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/policystatuses?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15834,15 +17437,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15897,15 +17500,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policies/{policy_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -15966,15 +17569,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16007,15 +17610,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" } ] }, @@ -16058,15 +17661,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16105,15 +17708,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -16169,15 +17772,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16216,15 +17819,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"policy\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"policy\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"policy\"}'" } ] }, @@ -16271,15 +17874,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/membership?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16332,15 +17935,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16392,15 +17995,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{group_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16442,15 +18045,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method DELETE -Headers $headers" } ] }, @@ -16475,15 +18078,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method GET -Headers $headers" } ] }, @@ -16525,15 +18128,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/policygroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policygroups/{id}\"\n\npayload = {\"name\": \"string\"}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policygroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\"}'" } ] }, @@ -16582,15 +18185,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policyresults?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policyresults?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16620,15 +18223,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policyresults/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policyresults/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policyresults/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policyresults/{id}' -Method GET -Headers $headers" } ] }, @@ -16686,15 +18289,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policytemplates?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/policytemplates?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -16724,15 +18327,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policytemplates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/policytemplates/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/policytemplates/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/policytemplates/{id}' -Method GET -Headers $headers" } ] }, @@ -16864,15 +18467,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"sortIgnoreCase\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/administrators?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17156,15 +18759,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&sort=&limit=10&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&sort=&limit=10&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/invoices?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -17254,15 +18857,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"sortIgnoreCase\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?fields=&filter=&limit=10&skip=0&sort=&sortIgnoreCase=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/providers/{provider_id}/organizations?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17301,6 +18904,28 @@ "mtp-billing-information" ] }, + "/providers/{provider_id}/policygroups/{group_id}/associations": { + "parameters": [ + { + "description": "The ID of the provider", + "in": "path", + "name": "provider_id", + "required": true, + "type": "string" + }, + { + "description": "The ID of the policy group", + "in": "path", + "name": "group_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "groups", + "mtp-account-overview" + ] + }, "/providers/{provider_id}/policygrouptemplates": { "parameters": [ { @@ -17352,6 +18977,50 @@ "policy-group-templates" ] }, + "/providers/{provider_id}/systemgroups/{group_id}/associations": { + "parameters": [ + { + "description": "The ID of the provider", + "in": "path", + "name": "provider_id", + "required": true, + "type": "string" + }, + { + "description": "The ID of the system group", + "in": "path", + "name": "group_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "groups", + "mtp-account-overview" + ] + }, + "/providers/{provider_id}/usergroups/{group_id}/associations": { + "parameters": [ + { + "description": "The ID of the provider", + "in": "path", + "name": "provider_id", + "required": true, + "type": "string" + }, + { + "description": "The ID of the user group", + "in": "path", + "name": "group_id", + "required": true, + "type": "string" + } + ], + "x-functionalities-tags": [ + "groups", + "mtp-account-overview" + ] + }, "/provision/client/verify": { "x-functionalities-tags": [ "mtp-validate-config" @@ -17437,15 +19106,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17484,15 +19153,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -17535,15 +19204,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17595,15 +19264,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/radiusservers/{radiusserver_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17643,6 +19312,8 @@ ] }, "/saas-management/application-catalog/{catalog_application_id}": {}, + "/saas-management/application-licenses": {}, + "/saas-management/application-licenses/{application_id}": {}, "/saas-management/applications": {}, "/saas-management/applications/{application_id}": {}, "/saas-management/applications/{application_id}/accounts": {}, @@ -17653,6 +19324,8 @@ "sample-data" ] }, + "/saved-views": {}, + "/saved-views/{id}": {}, "/scope-groups": {}, "/service-accounts": {}, "/service-accounts/{service_account_id}": {}, @@ -17704,15 +19377,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -17745,15 +19418,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" } ] }, @@ -17787,15 +19460,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method DELETE -Headers $headers" } ] }, @@ -17820,15 +19493,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method GET -Headers $headers" } ] }, @@ -17910,15 +19583,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{id}\"\n\npayload = {\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"displayName\": \"string\",\n \"id\": \"string\",\n \"settings\": [\n {\n \"allowUpdateDelay\": False,\n \"appCatalogInstallableObjectId\": \"string\",\n \"appFileName\": \"string\",\n \"appleVpp\": {\n \"appConfiguration\": \"string\",\n \"assignedLicenses\": 0,\n \"availableLicenses\": 0,\n \"details\": {},\n \"isConfigEnabled\": True,\n \"supportedDeviceFamilies\": [\"IPAD\"],\n \"totalLicenses\": 0\n },\n \"architectures\": [\"string\"],\n \"assetKind\": \"string\",\n \"assetSha256Size\": 0,\n \"assetSha256Strings\": [\"string\"],\n \"autoUpdate\": False,\n \"bundleId\": \"string\",\n \"commandLineArguments\": \"string\",\n \"createdAt\": \"2019-08-24T14:15:22Z\",\n \"description\": \"string\",\n \"desiredState\": \"string\",\n \"downloadUrl\": \"string\",\n \"enterpriseObjectId\": \"string\",\n \"format\": \"string\",\n \"googleAndroid\": {\n \"androidFeatures\": [\"string\"],\n \"appPricing\": \"string\",\n \"appVersion\": \"string\",\n \"author\": \"string\",\n \"autoUpdateMode\": \"AUTO_UPDATE_DEFAULT\",\n \"category\": \"string\",\n \"contentRating\": \"string\",\n \"displayMode\": \"string\",\n \"distributionChannel\": \"string\",\n \"fullDescription\": \"string\",\n \"iconUrl\": \"string\",\n \"installType\": \"AVAILABLE\",\n \"managedConfigurationTemplateId\": \"string\",\n \"managedProperties\": True,\n \"minSdkVersion\": 0,\n \"name\": \"string\",\n \"permissionGrants\": [\n {\n \"id\": \"string\",\n \"policy\": \"PROMPT\"\n }\n ],\n \"runtimePermission\": \"PROMPT\",\n \"startUrl\": \"string\",\n \"type\": \"APP_TYPE_UNSPECIFIED\",\n \"updateTime\": \"string\",\n \"versionCode\": 0\n },\n \"iconUrl\": \"string\",\n \"location\": \"string\",\n \"locationObjectId\": \"string\",\n \"microsoftStore\": {\n \"doNotUpdate\": True,\n \"nonRemovable\": True,\n \"packageFamilyName\": \"string\"\n },\n \"packageId\": \"string\",\n \"packageKind\": \"string\",\n \"packageManager\": \"string\",\n \"packageSubtitle\": \"string\",\n \"packageVersion\": \"string\",\n \"packageVersionUpdatedAt\": \"2019-08-24T14:15:22Z\",\n \"scope\": \"string\",\n \"shortVersion\": \"string\",\n \"storedPackage\": {\n \"objectId\": \"string\",\n \"versions\": [\n {\n \"metadata\": {},\n \"name\": \"string\",\n \"rejectedReason\": \"string\",\n \"sha256sum\": \"string\",\n \"size\": 0,\n \"status\": \"string\",\n \"version\": 0\n }\n ]\n },\n \"storedPackageObjectId\": \"string\",\n \"teamId\": \"string\",\n \"updateTool\": \"string\",\n \"updateToolArguments\": \"string\",\n \"updatedAt\": \"2019-08-24T14:15:22Z\",\n \"versionlessDownloadUrl\": True\n }\n ],\n \"updatedAt\": \"2019-08-24T14:15:22Z\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"createdAt\":\"2019-08-24T14:15:22Z\",\"displayName\":\"string\",\"id\":\"string\",\"settings\":[{\"allowUpdateDelay\":false,\"appCatalogInstallableObjectId\":\"string\",\"appFileName\":\"string\",\"appleVpp\":{\"appConfiguration\":\"string\",\"assignedLicenses\":0,\"availableLicenses\":0,\"details\":{},\"isConfigEnabled\":true,\"supportedDeviceFamilies\":[\"IPAD\"],\"totalLicenses\":0},\"architectures\":[\"string\"],\"assetKind\":\"string\",\"assetSha256Size\":0,\"assetSha256Strings\":[\"string\"],\"autoUpdate\":false,\"bundleId\":\"string\",\"commandLineArguments\":\"string\",\"createdAt\":\"2019-08-24T14:15:22Z\",\"description\":\"string\",\"desiredState\":\"string\",\"downloadUrl\":\"string\",\"enterpriseObjectId\":\"string\",\"format\":\"string\",\"googleAndroid\":{\"androidFeatures\":[\"string\"],\"appPricing\":\"string\",\"appVersion\":\"string\",\"author\":\"string\",\"autoUpdateMode\":\"AUTO_UPDATE_DEFAULT\",\"category\":\"string\",\"contentRating\":\"string\",\"displayMode\":\"string\",\"distributionChannel\":\"string\",\"fullDescription\":\"string\",\"iconUrl\":\"string\",\"installType\":\"AVAILABLE\",\"managedConfigurationTemplateId\":\"string\",\"managedProperties\":true,\"minSdkVersion\":0,\"name\":\"string\",\"permissionGrants\":[{\"id\":\"string\",\"policy\":\"PROMPT\"}],\"runtimePermission\":\"PROMPT\",\"startUrl\":\"string\",\"type\":\"APP_TYPE_UNSPECIFIED\",\"updateTime\":\"string\",\"versionCode\":0},\"iconUrl\":\"string\",\"location\":\"string\",\"locationObjectId\":\"string\",\"microsoftStore\":{\"doNotUpdate\":true,\"nonRemovable\":true,\"packageFamilyName\":\"string\"},\"packageId\":\"string\",\"packageKind\":\"string\",\"packageManager\":\"string\",\"packageSubtitle\":\"string\",\"packageVersion\":\"string\",\"packageVersionUpdatedAt\":\"2019-08-24T14:15:22Z\",\"scope\":\"string\",\"shortVersion\":\"string\",\"storedPackage\":{\"objectId\":\"string\",\"versions\":[{\"metadata\":{},\"name\":\"string\",\"rejectedReason\":\"string\",\"sha256sum\":\"string\",\"size\":0,\"status\":\"string\",\"version\":0}]},\"storedPackageObjectId\":\"string\",\"teamId\":\"string\",\"updateTool\":\"string\",\"updateToolArguments\":\"string\",\"updatedAt\":\"2019-08-24T14:15:22Z\",\"versionlessDownloadUrl\":true}],\"updatedAt\":\"2019-08-24T14:15:22Z\"}'" } ] }, @@ -17962,15 +19635,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18009,15 +19682,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] } @@ -18105,15 +19778,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/statuses?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18166,15 +19839,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18227,15 +19900,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/softwareapps/{software_app_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18316,7 +19989,7 @@ }, "/systemgroups": { "get": { - "description": "This endpoint returns all System Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/systemgroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "description": "This endpoint returns all System Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n - `memberQueryErrorFlags`\n\n#### Sample Request\n\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/systemgroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", "operationId": "SystemGroup_List", "parameters": [ { @@ -18369,15 +20042,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18410,15 +20083,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -18461,15 +20134,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18508,15 +20181,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"command\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"command\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"command\"}'" } ] }, @@ -18562,15 +20235,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, @@ -18634,15 +20307,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18687,15 +20360,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"system\"\n}\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"system\"}'" } ] }, @@ -18741,15 +20414,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0&sort=&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0&sort=&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/membership?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18801,15 +20474,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18861,15 +20534,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/policygroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18926,15 +20599,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -18986,15 +20659,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{group_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -19036,15 +20709,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method DELETE -Headers $headers" } ] }, @@ -19076,15 +20749,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method GET -Headers $headers" } ] }, @@ -19133,15 +20806,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/systemgroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systemgroups/{id}\"\n\npayload = {\n \"attributes\": {},\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systemgroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -19187,15 +20860,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf?filter=&skip=0&sort=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf\"\n\nquerystring = {\"filter\":\"\",\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf?filter=&skip=0&sort=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19241,15 +20914,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?filter=&skip=0&sort=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions\"\n\nquerystring = {\"filter\":\"\",\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?filter=&skip=0&sort=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_exceptions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19295,15 +20968,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?filter=&skip=0&sort=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths\"\n\nquerystring = {\"filter\":\"\",\"skip\":\"0\",\"sort\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?filter=&skip=0&sort=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/alf_explicit_auths?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19349,15 +21022,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/appcompat_shims?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19403,15 +21076,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/apps\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/apps\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/apps?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19457,15 +21130,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/authorized_keys?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19507,15 +21180,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_metadata?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19557,15 +21230,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/azure_instance_tags?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19611,15 +21284,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/battery\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/battery\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/battery?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19665,15 +21338,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/bitlocker_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19719,15 +21392,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/browser_plugins?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19773,15 +21446,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/certificates\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/certificates\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/certificates?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19823,15 +21496,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chassis_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chassis_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chassis_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19877,15 +21550,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/chrome_extensions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19931,15 +21604,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/connectivity\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/connectivity\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/connectivity?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -19985,15 +21658,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/crashes\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/crashes\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/crashes?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20039,15 +21712,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/cups_destinations?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20093,15 +21766,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_encryption?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20147,15 +21820,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/disk_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/disk_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20201,15 +21874,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/dns_resolvers?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20255,15 +21928,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/etc_hosts?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20309,15 +21982,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/firefox_addons?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20363,15 +22036,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/groups\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/groups\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/groups?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20417,15 +22090,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/ie_extensions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20471,15 +22144,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_addresses?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20525,15 +22198,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_details\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/interface_details\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/interface_details?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20579,15 +22252,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/kernel_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/kernel_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/kernel_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20633,15 +22306,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/launchd\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/launchd\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/launchd?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20687,15 +22360,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/linux_packages\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/linux_packages\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/linux_packages?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20742,15 +22415,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logged_in_users?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20796,15 +22469,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logical_drives\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/logical_drives\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/logical_drives?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20850,15 +22523,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/managed_policies\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/managed_policies\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/managed_policies?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20904,15 +22577,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/mounts\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/mounts\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/mounts?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -20958,15 +22631,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/os_version\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/os_version\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/os_version?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21012,15 +22685,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/patches\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/patches\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/patches?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21066,15 +22739,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/programs\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/programs\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/programs?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21120,15 +22793,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/python_packages\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/python_packages\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/python_packages?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21174,15 +22847,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/safari_extensions?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21228,15 +22901,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/scheduled_tasks?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21278,15 +22951,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/secureboot\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/secureboot\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/secureboot?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21332,15 +23005,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/services\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/services\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/services?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21386,15 +23059,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shadow\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shadow\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shadow?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21440,15 +23113,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_folders\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_folders\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_folders?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21489,15 +23162,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_resources\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/shared_resources\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/shared_resources?skip=0&limit=10' -Method GET -Headers $headers" } ] } @@ -21540,15 +23213,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sharing_preferences?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21594,15 +23267,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sip_config\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/sip_config\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/sip_config?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21648,15 +23321,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/startup_items\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/startup_items\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/startup_items?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21702,15 +23375,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_controls\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_controls\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_controls?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21756,15 +23429,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/system_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/system_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21806,15 +23479,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/tpm_info\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/tpm_info\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/tpm_info?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21860,15 +23533,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/uptime\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/uptime\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/uptime?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21914,15 +23587,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/usb_devices\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/usb_devices\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/usb_devices?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -21968,15 +23641,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_groups\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_groups\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_groups?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22022,15 +23695,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/user_ssh_keys?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22072,15 +23745,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/userassist\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/userassist\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/userassist?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22126,15 +23799,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/users\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/users\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/users?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22180,15 +23853,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_networks?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22234,15 +23907,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_status\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/wifi_status\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/wifi_status?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22289,15 +23962,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&sort=&filter=&limit=10'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&limit=10' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nresponse = requests.request(\"GET\", url, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\"x-org-id\": \"SOME_STRING_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&sort=&filter=&limit=10' -Method GET " + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_center?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22343,15 +24016,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&sort=&filter=&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&limit=10' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products\"\n\nquerystring = {\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\",\"limit\":\"10\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products\"\n\nquerystring = {\"skip\":\"0\",\"limit\":\"10\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&sort=&filter=&limit=10' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systeminsights/windows_security_products?skip=0&limit=10' -Method GET -Headers $headers" } ] }, @@ -22647,6 +24320,7 @@ }, "/systems/views": {}, "/systems/{systemObjectId}/aggregated-policy-stats": {}, + "/systems/{systemObjectId}/transfer": {}, "/systems/{system_id}/associations": { "get": { "description": "This endpoint returns the _direct_ associations of a System.\n\nA direct association can be a non-homogeneous relationship between 2 different objects, for example Systems and Users.\n\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/systems/{System_ID}/associations?targets=user \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n\n```", @@ -22688,15 +24362,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -22741,15 +24415,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/associations \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"command\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"command\"\n}\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"command\"}'" } ] }, @@ -22795,15 +24469,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/commands\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"details\":\"SOME_STRING_VALUE\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&filter=&details=SOME_STRING_VALUE' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/commands?limit=10&skip=0&details=SOME_STRING_VALUE' -Method GET -Headers $headers" } ] }, @@ -22848,15 +24522,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/fdekey' -Method GET -Headers $headers" } ] }, @@ -22916,15 +24590,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/memberof?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -22973,15 +24647,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policies\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policies?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23040,15 +24714,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policygroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23107,15 +24781,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/policystatuses?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23174,15 +24848,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23241,15 +24915,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0' \\\n --header 'Authorization: SOME_STRING_VALUE' \\\n --header 'Date: SOME_STRING_VALUE' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/systems/{system_id}/users\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"Date\": \"SOME_STRING_VALUE\",\n \"Authorization\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Date\", \"SOME_STRING_VALUE\")\n$headers.Add(\"Authorization\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/systems/{system_id}/users?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23273,10 +24947,54 @@ "settings-feature-trial" ] }, - "/userapprovalrequest": {}, + "/userapprovalrequest": { + "post": { + "description": "Endpoint for user approval", + "operationId": "WorkflowUserApprovalRequest_Create", + "parameters": [ + { + "in": "body", + "name": "body", + "required": true, + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.UserApprovalRequestRequest" + } + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/jumpcloud.ingresso.UserApprovalRequestResponse" + } + } + }, + "security": [ + { + "x-api-key": [] + } + ], + "summary": "User Approval Access Request", + "x-dynamic-gateway": true, + "x-codeSamples": [ + { + "lang": "Shell", + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/userapprovalrequest \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"approvedDuration\":\"string\",\"id\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" + }, + { + "lang": "Python", + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/userapprovalrequest\"\n\npayload = {\n \"approvedDuration\": \"string\",\n \"id\": \"string\",\n \"organizationObjectId\": \"string\",\n \"remarks\": \"string\",\n \"status\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + }, + { + "lang": "Powershell", + "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/userapprovalrequest' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"approvedDuration\":\"string\",\"id\":\"string\",\"organizationObjectId\":\"string\",\"remarks\":\"string\",\"status\":\"string\"}'" + } + ] + } + }, "/usergroups": { "get": { - "description": "This endpoint returns all User Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n - `suggestionCounts.add`\n - `suggestionCounts.remove`\n - `suggestionCounts.total`\n - `attributes.sudo.enabled`\n - `attributes.sudo.withoutPassword`\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/usergroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", + "description": "This endpoint returns all User Groups.\n\nAvailable filter fields:\n - `name`\n - `disabled`\n - `type`\n - `membershipMethod`\n - `memberQueryErrorFlags`\n - `suggestionCounts.add`\n - `suggestionCounts.remove`\n - `suggestionCounts.total`\n - `attributes.sudo.enabled`\n - `attributes.sudo.withoutPassword`\n\n#### Sample Request\n```\ncurl -X GET https://console.jumpcloud.com/api/v2/usergroups \\\n -H 'Accept: application/json' \\\n -H 'Content-Type: application/json' \\\n -H 'x-api-key: {API_KEY}'\n```", "operationId": "UserGroup_List", "parameters": [ { @@ -23315,15 +25033,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups?fields=&filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\nquerystring = {\"fields\":\"\",\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups?fields=&filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23356,15 +25074,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -23407,15 +25125,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/activedirectories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23468,15 +25186,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/applications?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23525,15 +25243,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23572,15 +25290,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"active_directory\"}'" } ] }, @@ -23624,15 +25342,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/directories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23685,15 +25403,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/gsuites?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23746,15 +25464,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/ldapservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23818,15 +25536,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23865,15 +25583,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {},\n \"type\": \"user\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/members' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{},\"type\":\"user\"}'" } ] }, @@ -23887,7 +25605,7 @@ "operationId": "UserGroupMembership_Get", "parameters": [ { - "$ref": "#/parameters/trait:filter:filter" + "$ref": "#/parameters/trait:filter:filterUserGroupMembership" }, { "$ref": "#/parameters/trait:limit:limit" @@ -23919,15 +25637,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/membership?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -23979,15 +25697,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/office365s?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24040,15 +25758,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/radiusservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24106,15 +25824,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24167,15 +25885,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{group_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24218,15 +25936,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method DELETE -Headers $headers" } ] }, @@ -24251,15 +25969,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method GET -Headers $headers" } ] }, @@ -24301,15 +26019,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/usergroups/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/usergroups/{id}\"\n\npayload = {\n \"attributes\": {\n \"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n },\n \"ldapGroups\": [{\"name\": \"string\"}],\n \"posixGroups\": [\n {\n \"id\": 0,\n \"name\": \"string\"\n }\n ],\n \"radius\": {\"reply\": [\n {\n \"name\": \"string\",\n \"value\": \"string\"\n }\n ]},\n \"sambaEnabled\": True\n },\n \"description\": \"string\",\n \"email\": \"string\",\n \"memberQuery\": {\n \"queryType\": \"Filter\",\n \"filters\": [None]\n },\n \"memberQueryExemptions\": [\n {\n \"attributes\": {},\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ],\n \"memberSuggestionsNotify\": True,\n \"membershipMethod\": \"NOTSET\",\n \"name\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/usergroups/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true},\"ldapGroups\":[{\"name\":\"string\"}],\"posixGroups\":[{\"id\":0,\"name\":\"string\"}],\"radius\":{\"reply\":[{\"name\":\"string\",\"value\":\"string\"}]},\"sambaEnabled\":true},\"description\":\"string\",\"email\":\"string\",\"memberQuery\":{\"queryType\":\"Filter\",\"filters\":[null]},\"memberQueryExemptions\":[{\"attributes\":{},\"id\":\"string\",\"type\":\"string\"}],\"memberSuggestionsNotify\":true,\"membershipMethod\":\"NOTSET\",\"name\":\"string\"}'" } ] }, @@ -24353,15 +26071,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?filter=&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?filter=&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/activedirectories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24413,15 +26131,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/applications\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/applications?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24473,15 +26191,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\nquerystring = {\"targets\":\"SOME_ARRAY_VALUE\",\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations?targets=SOME_ARRAY_VALUE&limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24520,15 +26238,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/associations \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/associations\"\n\npayload = {\n \"id\": \"string\",\n \"op\": \"add\",\n \"attributes\": {\"sudo\": {\n \"enabled\": True,\n \"withoutPassword\": True\n }},\n \"type\": \"active_directory\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/associations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"op\":\"add\",\"attributes\":{\"sudo\":{\"enabled\":true,\"withoutPassword\":true}},\"type\":\"active_directory\"}'" } ] }, @@ -24571,15 +26289,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/directories\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/directories?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24642,15 +26360,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/gsuites?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24702,15 +26420,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/ldapservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24733,7 +26451,7 @@ "operationId": "UserMember_Get", "parameters": [ { - "$ref": "#/parameters/trait:filter:filter" + "$ref": "#/parameters/trait:filter:filterUserMemberOf" }, { "$ref": "#/parameters/trait:limit:limit" @@ -24765,15 +26483,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?filter=&limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/memberof\"\n\nquerystring = {\"filter\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/memberof\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?filter=&limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/memberof?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24825,15 +26543,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/office365s\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/office365s?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -24872,15 +26590,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints' -Method GET -Headers $headers" } ] }, @@ -24925,15 +26643,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method DELETE -Headers $headers" } ] }, @@ -24958,15 +26676,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method GET -Headers $headers" } ] }, @@ -25033,15 +26751,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"state\":\"active\"}'" + "source": "curl --request PATCH \\\n --url https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"state\":\"active\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\npayload = {\n \"name\": \"string\",\n \"state\": \"active\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}\"\n\npayload = {\n \"name\": \"string\",\n \"state\": \"active\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PATCH\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"state\":\"active\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/pushendpoints/{push_endpoint_id}' -Method PATCH -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"state\":\"active\"}'" } ] } @@ -25081,15 +26799,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/radiusservers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25141,15 +26859,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systemgroups?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25198,15 +26916,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/users/{user_id}/systems\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/users/{user_id}/systems?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25343,15 +27061,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays?fields=&limit=10&skip=0&sort=&filter=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\nquerystring = {\"fields\":\"\",\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\",\"filter\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays?fields=&limit=10&skip=0&sort=&filter=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25384,15 +27102,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\npayload = {\n \"auth\": {\n \"basic\": {\n \"password\": \"in tempor ipsum quis\",\n \"username\": \"mollit ex\"\n },\n \"oauth\": {\"code\": \"non laborum dolore\"}\n },\n \"name\": \"dolore tempor\",\n \"reportUrl\": \"est sit laboris\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays\"\n\npayload = {\n \"auth\": {\n \"basic\": {\n \"password\": \"in tempor ipsum quis\",\n \"username\": \"mollit ex\"\n },\n \"oauth\": {\"code\": \"non laborum dolore\"}\n },\n \"name\": \"dolore tempor\",\n \"reportUrl\": \"est sit laboris\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"in tempor ipsum quis\",\"username\":\"mollit ex\"},\"oauth\":{\"code\":\"non laborum dolore\"}},\"name\":\"dolore tempor\",\"reportUrl\":\"est sit laboris\"}'" } ] }, @@ -25422,15 +27140,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method GET -Headers $headers" } ] }, @@ -25471,15 +27189,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"name\":\"string\",\"reportUrl\":\"string\"}'" + "source": "curl --request PUT \\\n --url https://console.jumpcloud.com/api/v2/workdays/{id} \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"name\":\"string\",\"reportUrl\":\"string\"}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"reportUrl\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}\"\n\npayload = {\n \"name\": \"string\",\n \"reportUrl\": \"string\"\n}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"PUT\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"reportUrl\":\"string\"}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{\"name\":\"string\",\"reportUrl\":\"string\"}'" } ] }, @@ -25519,15 +27237,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{id}/import/{job_id}/results?limit=10&skip=0' -Method GET -Headers $headers" } ] }, @@ -25568,15 +27286,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request DELETE \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"DELETE\", url, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method DELETE -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method DELETE -Headers $headers" } ] }, @@ -25614,15 +27332,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\npayload = {\"auth\": {\n \"basic\": {\n \"password\": \"mollit cillum\",\n \"username\": \"veniam dolore\"\n },\n \"oauth\": {\"code\": \"minim ad ea dolor\"}\n }}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth\"\n\npayload = {\"auth\": {\n \"basic\": {\n \"password\": \"mollit cillum\",\n \"username\": \"veniam dolore\"\n },\n \"oauth\": {\"code\": \"minim ad ea dolor\"}\n }}\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/auth' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"auth\":{\"basic\":{\"password\":\"mollit cillum\",\"username\":\"veniam dolore\"},\"oauth\":{\"code\":\"minim ad ea dolor\"}}}'" } ] }, @@ -25671,15 +27389,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE' \\\n --data '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import\"\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import\"\n\npayload = [\n {\n \"attributes\": [{}],\n \"email\": \"string\",\n \"firstname\": \"string\",\n \"lastname\": \"string\",\n \"username\": \"string\"\n }\n]\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/import' -Method POST -Headers $headers -ContentType 'application/json' -Body '[{\"attributes\":[{}],\"email\":\"string\",\"firstname\":\"string\",\"lastname\":\"string\",\"username\":\"string\"}]'" } ] }, @@ -25743,15 +27461,15 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0&sort=' \\\n --header 'x-api-key: REPLACE_KEY_VALUE'" + "source": "curl --request GET \\\n --url 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --header 'x-org-id: SOME_STRING_VALUE'" }, { "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\",\"sort\":\"\"}\n\nheaders = {\"x-api-key\": \"REPLACE_KEY_VALUE\"}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" + "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers\"\n\nquerystring = {\"limit\":\"10\",\"skip\":\"0\"}\n\nheaders = {\n \"x-org-id\": \"SOME_STRING_VALUE\",\n \"x-api-key\": \"REPLACE_KEY_VALUE\"\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, params=querystring)\n\nprint(response.text)" }, { "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0&sort=' -Method GET -Headers $headers" + "source": "$headers=@{}\n$headers.Add(\"x-org-id\", \"SOME_STRING_VALUE\")\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/workdays/{workday_id}/workers?limit=10&skip=0' -Method GET -Headers $headers" } ] }, From 1443e1be078d357bb3011782c0e4caedeb7e961e Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 10 Feb 2026 15:47:55 -0700 Subject: [PATCH 05/29] changelog date --- JumpCloud.SDK.V2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 16fa175c2..7dd7470e7 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,5 +1,5 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: Feb 10, 2026 +Release Date: February 10, 2026 #### RELEASE NOTES ``` Add accessRequest workflow functions/ general SDK updates from source From eb17a90d9ce0306ab8f610f826725f8722222ece Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 10 Feb 2026 15:53:34 -0700 Subject: [PATCH 06/29] get examples [skip ci] --- .../examples/Get-JcSdkWorkflow.md | 58 ++++++++++++++++--- .../Get-JcSdkWorkflowAccessRequest.md | 58 ++++++++++++++++--- .../Get-JcSdkWorkflowAccessRequestProgress.md | 21 +------ .../examples/Get-JcSdkWorkflowSetting.md | 28 ++++----- 4 files changed, 115 insertions(+), 50 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md index 0371f56c3..d8698e269 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md @@ -1,22 +1,64 @@ -### Example 1: {{ Add title here }} +### Example 1: Get a Workflow by ApprovalFlowId ```powershell -{{ Add code here }} +Get-JcSdkWorkflow -ApprovalFlowId:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +ApprovalType : automated +ApproverRequirement : +ApproverResources : {} +Category : Application +CreatedBy : 5d643a77600577710a5e6113 +Description : Workflow testing +FixedDuration : +IconColor : #006CAC +IconUrl : +Id : 67c5f44e2d72ba0001b6890b +MultiSelectDuration : {} +Name : Test Workflow +NonAdminApproval : False +OrganizationId : {93, 100, 58, 119…} +Resources : {Radius2} +SlackConfig : {} +SlackEnabled : False +Status : active +TimeBasedAccess : False +TtlConfig : TTL_CONFIG_UNSPECIFIED +UpdatedBy : 5d643a77600577710a5e6113 +VisibleTo : {Default Admin, Radius} ``` -{{ Add description here }} +This function will Get a Workflow by ApprovalFlowId. ApprovalFlowId is a required parameter. -### Example 2: {{ Add title here }} +### Example 2: List Workflows ```powershell -{{ Add code here }} +Get-JcSdkWorkflow -Fields:() -Filter:() -Sort:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +ApprovalType : automated +ApproverRequirement : +ApproverResources : {} +Category : Application +CreatedBy : 5d643a77600577710a5e6113 +Description : Workflow testing +FixedDuration : +IconColor : #006CAC +IconUrl : +Id : 67c5f44e2d72ba0001b6890b +MultiSelectDuration : {} +Name : Test Workflow +NonAdminApproval : False +OrganizationId : {93, 100, 58, 119…} +Resources : {Radius2} +SlackConfig : {} +SlackEnabled : False +Status : active +TimeBasedAccess : False +TtlConfig : TTL_CONFIG_UNSPECIFIED +UpdatedBy : 5d643a77600577710a5e6113 +VisibleTo : {Default Admin, Radius} ``` -{{ Add description here }} +This function will return a list of all Workflows. Fields, Filter, and Sort are optional parameters. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md index 0371f56c3..50ca73872 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md @@ -1,22 +1,64 @@ -### Example 1: {{ Add title here }} +### Example 1: Get a WorkflowAccessRequest by Id ```powershell -{{ Add code here }} +Get-JcSdkWorkflowAccessRequest -Id:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +ApprovalFlowDescription : Workflow Description +ApprovalFlowId : 698b4c92097b6a000175dda8 +ApprovalFlowName : Workflow Name +ApprovalType : manual +ApprovedDuration : +CreatedAt : 2026-02-10T21:22:30.465574Z +Department : Sales +Group : 00-Farmer-Type-Dairy +IconColor : #006CAC +IconUrl : +Id : 698ba196ff5a9e00016c58d4 +Manager : +NonAdminApproval : False +Remarks : User Requested Message +RequestedDuration : +Requestor : 5d67fd481da3c52aa1faa883 +RunId : +Status : granted +UpdatedAt : 2026-02-10T21:25:09.352713Z +UpdatedBy : 5d643a77600577710a5e6113 +UserName : Default Admin +WfMetadata : {123, 125} ``` -{{ Add description here }} +This function will Get a WorkflowAccessRequest by Id. Id is a required parameter. -### Example 2: {{ Add title here }} +### Example 2: List WorkflowAccessRequests ```powershell -{{ Add code here }} +Get-JcSdkWorkflowAccessRequest -Fields:() -Filter:() -Sort:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +ApprovalFlowDescription : Workflow Description +ApprovalFlowId : 698b4c92097b6a000175dda8 +ApprovalFlowName : Workflow Name +ApprovalType : manual +ApprovedDuration : +CreatedAt : 2026-02-10T21:22:30.465574Z +Department : Sales +Group : 00-Farmer-Type-Dairy +IconColor : #006CAC +IconUrl : +Id : 698ba196ff5a9e00016c58d4 +Manager : +NonAdminApproval : False +Remarks : User Requested Message +RequestedDuration : +Requestor : 5d67fd481da3c52aa1faa883 +RunId : +Status : granted +UpdatedAt : 2026-02-10T21:25:09.352713Z +UpdatedBy : 5d643a77600577710a5e6113 +UserName : Default Admin +WfMetadata : {123, 125} ``` -{{ Add description here }} +This function will return a list of all WorkflowAccessRequests. Fields, Filter, and Sort are optional parameters. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md index 0371f56c3..d276ee998 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md @@ -1,22 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Get a WorkflowAccessRequestProgress by Id ```powershell -{{ Add code here }} +Get-JcSdkWorkflowAccessRequestProgress -Id:() ``` -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} +This function will Get a WorkflowAccessRequestProgress by Id. Id is a required parameter. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md index 0371f56c3..0ea24e519 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md @@ -1,22 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Get a WorkflowSetting by ```powershell -{{ Add code here }} +Get-JcSdkWorkflowSetting ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +AdminApprovalEmail : True +ChannelEvents : {} +CreatedBy : 5d643a77600577710a5e6113 +ExposeApprovalProgress : True +Id : 16 +ResourceRequest : True +UpdatedBy : 5d643a77600577710a5e6113 +UserApprovalEmail : True +UserRequestEmail : True ``` -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - +This function will Get a WorkflowSetting \ No newline at end of file From 351036dccf9f2c9212b9ddc47b3b4269351da9d5 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 10 Feb 2026 16:08:40 -0700 Subject: [PATCH 07/29] update gitLeaks --- .gitleaks.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitleaks.toml b/.gitleaks.toml index c7f42a2b2..5f4769270 100644 --- a/.gitleaks.toml +++ b/.gitleaks.toml @@ -12,4 +12,5 @@ regexTarget = "match" description = "ignore REPLACE_KEY_VALUE in curl documentation" regexes = [ '''REPLACE_KEY_VALUE''', + '''SOME_STRING_VALUE''' ] \ No newline at end of file From af594995f314d7fd9139f2cb7033163304764b93 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 11 Feb 2026 12:14:48 -0700 Subject: [PATCH 08/29] remove "new" functions --- .../New-JcSdkWorkflowAccessRequest.ps1 | 163 -------------- .../New-JcSdkWorkflowUserApprovalRequest.ps1 | 170 -------------- .../exports/New-JcSdkWorkflowAccessRequest.md | 195 ---------------- .../New-JcSdkWorkflowUserApprovalRequest.md | 212 ------------------ .../New-JcSdkWorkflowAccessRequest.md | 22 -- .../New-JcSdkWorkflowUserApprovalRequest.md | 22 -- .../New-JcSdkWorkflowAccessRequest.Tests.ps1 | 25 --- ...JcSdkWorkflowUserApprovalRequest.Tests.ps1 | 25 --- 8 files changed, 834 deletions(-) delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 deleted file mode 100644 index 3b447769f..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowAccessRequest.ps1 +++ /dev/null @@ -1,163 +0,0 @@ -<# -.Synopsis -Endpoint for adding a new workflow access request -.Description -Endpoint for adding a new workflow access request -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest -.Outputs -JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequestResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : - [Id ]: - [OrganizationObjectId ]: - [Reason ]: - [RequestedDuration ]: -.Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md -#> - Function New-JcSdkWorkflowAccessRequest -{ - [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequestResponse])] - [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - Param( - [Parameter(Mandatory)] - [JumpCloud.SDK.V2.Category('Uri')] - [System.String] - # Region for JumpCloud API host. - # Use 'console' for US or 'console.eu' for EU. - ${ConsoleHost}, - - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [JumpCloud.SDK.V2.Category('Body')] - [JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest] - # . - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # Input File for OrganizationObjectId (.) - ${OrganizationObjectIdInputFile}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${Reason}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${RequestedDuration}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} - ) - Begin - { - $Results = @() - $PSBoundParameters.Add('HttpPipelineAppend', { - param($req, $callback, $next) - # call the next step in the Pipeline - $ResponseTask = $next.SendAsync($req, $callback) - $global:JCHttpRequest = $req - # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } - $global:JCHttpResponse = $ResponseTask - # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } - Return $ResponseTask - } - ) - } - Process - { - $maxRetries = 4 - $resultCounter = 0 - :retryLoop do { - $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError - If ($sdkError){ - If ($resultCounter -eq $maxRetries){ - throw $sdkError - } - If ($JCHttpResponse.Result.StatusCode -eq "503") { - Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") - } else { - throw $sdkError - } - } else { - break retryLoop - } - Start-Sleep -Seconds ($resultCounter * 5) - } while ($resultCounter -lt $maxRetries) - } - End - { - Write-Debug ('HttpRequest: ' + $JCHttpRequest); - # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); - Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); - # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); - # Clean up global variables - $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') - $GlobalVars | ForEach-Object { - If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { - Remove-Variable -Name:($_) -Scope:('Global') - } - } - Return $Results - } -} - - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 deleted file mode 100644 index 6e28691e5..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowUserApprovalRequest.ps1 +++ /dev/null @@ -1,170 +0,0 @@ -<# -.Synopsis -Endpoint for user approval -.Description -Endpoint for user approval -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest -.Outputs -JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : - [ApprovedDuration ]: - [Id ]: - [OrganizationObjectId ]: - [Remarks ]: - [Status ]: -.Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md -#> - Function New-JcSdkWorkflowUserApprovalRequest -{ - [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse])] - [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - Param( - [Parameter(Mandatory)] - [JumpCloud.SDK.V2.Category('Uri')] - [System.String] - # Region for JumpCloud API host. - # Use 'console' for US or 'console.eu' for EU. - ${ConsoleHost}, - - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [JumpCloud.SDK.V2.Category('Body')] - [JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest] - # . - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${ApprovedDuration}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # Input File for OrganizationObjectId (.) - ${OrganizationObjectIdInputFile}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${Remarks}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # . - ${Status}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} - ) - Begin - { - $Results = @() - $PSBoundParameters.Add('HttpPipelineAppend', { - param($req, $callback, $next) - # call the next step in the Pipeline - $ResponseTask = $next.SendAsync($req, $callback) - $global:JCHttpRequest = $req - # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } - $global:JCHttpResponse = $ResponseTask - # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } - Return $ResponseTask - } - ) - } - Process - { - $maxRetries = 4 - $resultCounter = 0 - :retryLoop do { - $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflowUserApprovalRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError - If ($sdkError){ - If ($resultCounter -eq $maxRetries){ - throw $sdkError - } - If ($JCHttpResponse.Result.StatusCode -eq "503") { - Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") - } else { - throw $sdkError - } - } else { - break retryLoop - } - Start-Sleep -Seconds ($resultCounter * 5) - } while ($resultCounter -lt $maxRetries) - } - End - { - Write-Debug ('HttpRequest: ' + $JCHttpRequest); - # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); - Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); - # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); - # Clean up global variables - $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') - $GlobalVars | ForEach-Object { - If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { - Remove-Variable -Name:($_) -Scope:('Global') - } - } - Return $Results - } -} - - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md deleted file mode 100644 index f768526b8..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md +++ /dev/null @@ -1,195 +0,0 @@ ---- -external help file: -Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowAccessRequest.md -schema: 2.0.0 ---- - -# New-JcSdkWorkflowAccessRequest - -## SYNOPSIS -Endpoint for adding a new workflow access request - -## SYNTAX - -### CreateExpanded (Default) -``` -New-JcSdkWorkflowAccessRequest -ConsoleHost [-Id ] [-OrganizationObjectIdInputFile ] - [-Reason ] [-RequestedDuration ] [-Confirm] [-WhatIf] [] -``` - -### Create -``` -New-JcSdkWorkflowAccessRequest -ConsoleHost -Body - [-Confirm] [-WhatIf] [] -``` - -## DESCRIPTION -Endpoint for adding a new workflow access request - -## EXAMPLES - -### -------------------------- EXAMPLE 1 -------------------------- -```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} -``` - - - -## PARAMETERS - -### -Body -. - -```yaml -Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest -Parameter Sets: Create -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -ConsoleHost -Region for JumpCloud API host. -Use 'console' for US or 'console.eu' for EU. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Id -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -OrganizationObjectIdInputFile -Input File for OrganizationObjectId (.) - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Reason -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -RequestedDuration -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequest - -## OUTPUTS - -### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateWorkflowAccessRequestResponse - -## NOTES - -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - - -`BODY `: . - - `[Id ]`: - - `[OrganizationObjectId ]`: - - `[Reason ]`: - - `[RequestedDuration ]`: - -## RELATED LINKS - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md deleted file mode 100644 index 53feddb69..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md +++ /dev/null @@ -1,212 +0,0 @@ ---- -external help file: -Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowUserApprovalRequest.md -schema: 2.0.0 ---- - -# New-JcSdkWorkflowUserApprovalRequest - -## SYNOPSIS -Endpoint for user approval - -## SYNTAX - -### CreateExpanded (Default) -``` -New-JcSdkWorkflowUserApprovalRequest -ConsoleHost [-ApprovedDuration ] [-Id ] - [-OrganizationObjectIdInputFile ] [-Remarks ] [-Status ] [-Confirm] [-WhatIf] - [] -``` - -### Create -``` -New-JcSdkWorkflowUserApprovalRequest -ConsoleHost -Body - [-Confirm] [-WhatIf] [] -``` - -## DESCRIPTION -Endpoint for user approval - -## EXAMPLES - -### -------------------------- EXAMPLE 1 -------------------------- -```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} -``` - - - -## PARAMETERS - -### -ApprovedDuration -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Body -. - -```yaml -Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest -Parameter Sets: Create -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -ConsoleHost -Region for JumpCloud API host. -Use 'console' for US or 'console.eu' for EU. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Id -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -OrganizationObjectIdInputFile -Input File for OrganizationObjectId (.) - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Remarks -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Status -. - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest - -## OUTPUTS - -### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse - -## NOTES - -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - - -`BODY `: . - - `[ApprovedDuration ]`: - - `[Id ]`: - - `[OrganizationObjectId ]`: - - `[Remarks ]`: - - `[Status ]`: - -## RELATED LINKS - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md deleted file mode 100644 index 0371f56c3..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowAccessRequest.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md deleted file mode 100644 index 0371f56c3..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowUserApprovalRequest.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 deleted file mode 100644 index a57be98b6..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowAccessRequest.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowAccessRequest')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflowAccessRequest.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'New-JcSdkWorkflowAccessRequest' { - It 'CreateExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'Create' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 deleted file mode 100644 index bfd9f928e..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowUserApprovalRequest.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowUserApprovalRequest')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflowUserApprovalRequest.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'New-JcSdkWorkflowUserApprovalRequest' { - It 'CreateExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'Create' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} From da897e65d77aae2e9253242b98467f787346a2a2 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 11 Feb 2026 12:16:19 -0700 Subject: [PATCH 09/29] examples on generated --- ApiTransform.ps1 | 4 +- .../custom/JumpCloud.SDK.V2.json | 71 +------- .../custom/generated/Get-JcSdkWorkflow.ps1 | 4 +- .../Get-JcSdkWorkflowAccessRequest.ps1 | 4 +- ...Get-JcSdkWorkflowAccessRequestProgress.ps1 | 4 +- .../generated/Get-JcSdkWorkflowSetting.ps1 | 4 +- .../custom/generated/New-JcSdkWorkflow.ps1 | 4 +- .../generated/New-JcSdkWorkflowSetting.ps1 | 4 +- .../custom/generated/Remove-JcSdkWorkflow.ps1 | 2 +- .../custom/generated/Set-JcSdkWorkflow.ps1 | 4 +- .../Set-JcSdkWorkflowAccessRequest.ps1 | 4 +- .../generated/Set-JcSdkWorkflowSetting.ps1 | 4 +- .../Set-JcSdkWorkflowUserApprovalRequest.ps1 | 170 ++++++++++++++++++ SwaggerSpecs/JumpCloud.SDK.V2.json | 71 +------- 14 files changed, 191 insertions(+), 163 deletions(-) create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index 1d44ceb0e..5c22a7d9f 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -458,10 +458,10 @@ $TransformConfig = [Ordered]@{ # 'AccessRequestApi_GetAccessRequest' = 'WorkflowUserRequest_Get'; # 'AccessRequestApi_UpdateAccessRequest' = 'WorkflowUserRequest_Set'; # 'AccessRequestApi_RevokeAccessRequest' = 'WorkflowUserRequest_Delete'; - 'WorkflowAccessRequestApi_UserApprovalRequest' = 'WorkflowUserApprovalRequest_Create' + 'WorkflowAccessRequestApi_UserApprovalRequest' = 'WorkflowUserApprovalRequest_Set' 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'WorkflowAccessRequest_List' 'WorkflowAccessRequestApi_GetWorkflowAccessRequests' = 'WorkflowAccessRequest_Get'; - 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'WorkflowAccessRequest_Create' + # 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'WorkflowAccessRequest_Create' # unsure how this endpoint works/ removing from CUT-4022 'WorkflowAccessRequestApi_UpdateWorkflowAccessRequests' = 'WorkflowAccessRequest_Set' 'WorkflowAccessRequestApi_GetAccessRequestApprovalProgressAdminPortal' = 'WorkflowAccessRequestProgress_Get' 'AccessWorkflowApi_GetAllAccessWorkFlows' = 'Workflow_List' diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json index f720a604e..7085a9cee 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json @@ -5061,32 +5061,6 @@ }, "type": "object" }, - "jumpcloud.ingresso.CreateWorkflowAccessRequestRequest": { - "properties": { - "id": { - "type": "string" - }, - "organizationObjectId": { - "format": "byte", - "type": "string" - }, - "reason": { - "type": "string" - }, - "requestedDuration": { - "type": "string" - } - }, - "type": "object" - }, - "jumpcloud.ingresso.CreateWorkflowAccessRequestResponse": { - "properties": { - "id": { - "type": "string" - } - }, - "type": "object" - }, "jumpcloud.ingresso.DeleteAccessWorkflowResponse": { "type": "object", "additionalProperties": true @@ -11842,49 +11816,6 @@ "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' -Method GET -Headers $headers" } ] - }, - "post": { - "description": "Endpoint for adding a new workflow access request", - "operationId": "WorkflowAccessRequest_Create", - "parameters": [ - { - "in": "body", - "name": "body", - "required": true, - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestRequest" - } - } - ], - "responses": { - "200": { - "description": "A successful response.", - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestResponse" - } - } - }, - "security": [ - { - "x-api-key": [] - } - ], - "summary": "Create Workflow Access Request", - "x-dynamic-gateway": true, - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowrequest \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" - }, - { - "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest\"\n\npayload = {\n \"id\": \"string\",\n \"organizationObjectId\": \"string\",\n \"reason\": \"string\",\n \"requestedDuration\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" - }, - { - "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" - } - ] } }, "/approvalflowrequest/{id}": { @@ -24950,7 +24881,7 @@ "/userapprovalrequest": { "post": { "description": "Endpoint for user approval", - "operationId": "WorkflowUserApprovalRequest_Create", + "operationId": "WorkflowUserApprovalRequest_Set", "parameters": [ { "in": "body", diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 index 9e1a7d566..595ec809c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 @@ -4,9 +4,9 @@ Endpoint for getting workflow by id .Description Endpoint for getting workflow by id .Example -{{ Add code here }} +Get-JcSdkWorkflow -ApprovalFlowId:() .Example -{{ Add code here }} +Get-JcSdkWorkflow -Fields:() -Filter:() -Sort:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 index 8f58d4bc9..0154f07ce 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 @@ -4,9 +4,9 @@ Endpoint that returns the workflow access request by id .Description Endpoint that returns the workflow access request by id .Example -{{ Add code here }} +Get-JcSdkWorkflowAccessRequest -Id:() .Example -{{ Add code here }} +Get-JcSdkWorkflowAccessRequest -Fields:() -Filter:() -Sort:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 index b3f07bb75..0b7d3a1a0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 @@ -4,9 +4,7 @@ Endpoint for getting the approval progress of a access request .Description Endpoint for getting the approval progress of a access request .Example -{{ Add code here }} -.Example -{{ Add code here }} +Get-JcSdkWorkflowAccessRequestProgress -Id:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 index 31866db0a..d1d8c81bf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 @@ -4,9 +4,7 @@ Endpoint for getting workflow settings for an organisation .Description Endpoint for getting workflow settings for an organisation .Example -{{ Add code here }} -.Example -{{ Add code here }} +Get-JcSdkWorkflowSetting .Outputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 index c0fffcfa6..1b19875ab 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 @@ -4,9 +4,9 @@ Endpoint for adding a new access workflow .Description Endpoint for adding a new access workflow .Example -{{ Add code here }} +New-JcSdkWorkflow -Body:() .Example -{{ Add code here }} +New-JcSdkWorkflow -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Category:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -ResourceType:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 index 49902bced..b8b289fa8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 @@ -4,9 +4,9 @@ Endpoint for adding a new access workflow Settings .Description Endpoint for adding a new access workflow Settings .Example -{{ Add code here }} +New-JcSdkWorkflowSetting -Body:() .Example -{{ Add code here }} +New-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 index 403427556..ffa666dcb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 @@ -4,7 +4,7 @@ Endpoint for deleting accessworkflow by id .Description Endpoint for deleting accessworkflow by id .Example -{{ Add code here }} +Remove-JcSdkWorkflow -ApprovalFlowId:() .Example {{ Add code here }} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 index 20a390b3a..98bfbebb4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 @@ -4,9 +4,9 @@ Endpoint for updating a new access workflow .Description Endpoint for updating a new access workflow .Example -{{ Add code here }} +Set-JcSdkWorkflow -ApprovalFlowId:() -Body:() .Example -{{ Add code here }} +Set-JcSdkWorkflow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 index 07d71f753..c4267ceb4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 @@ -4,9 +4,9 @@ Endpoint that set the workflow access request by id .Description Endpoint that set the workflow access request by id .Example -{{ Add code here }} +Set-JcSdkWorkflowAccessRequest -Id:() -Body:() .Example -{{ Add code here }} +Set-JcSdkWorkflowAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 index d0d42e4ff..218eabfad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 @@ -4,9 +4,9 @@ Endpoint for updating a access workflow settings for an organization .Description Endpoint for updating a access workflow settings for an organization .Example -{{ Add code here }} +Set-JcSdkWorkflowSetting -Body:() .Example -{{ Add code here }} +Set-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 new file mode 100644 index 000000000..b12803d4f --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 @@ -0,0 +1,170 @@ +<# +.Synopsis +Endpoint for user approval +.Description +Endpoint for user approval +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest +.Outputs +JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : + [ApprovedDuration ]: + [Id ]: + [OrganizationObjectId ]: + [Remarks ]: + [Status ]: +.Link +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md +#> + Function Set-JcSdkWorkflowUserApprovalRequest +{ + [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse])] + [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + Param( + [Parameter(Mandatory)] + [JumpCloud.SDK.V2.Category('Uri')] + [System.String] + # Region for JumpCloud API host. + # Use 'console' for US or 'console.eu' for EU. + ${ConsoleHost}, + + [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] + [JumpCloud.SDK.V2.Category('Body')] + [JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest] + # . + ${Body}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${ApprovedDuration}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Id}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # Input File for OrganizationObjectId (.) + ${OrganizationObjectIdInputFile}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Remarks}, + + [Parameter(ParameterSetName='SetExpanded')] + [JumpCloud.SDK.V2.Category('Body')] + [System.String] + # . + ${Status}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [JumpCloud.SDK.V2.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + Begin + { + $Results = @() + $PSBoundParameters.Add('HttpPipelineAppend', { + param($req, $callback, $next) + # call the next step in the Pipeline + $ResponseTask = $next.SendAsync($req, $callback) + $global:JCHttpRequest = $req + # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } + $global:JCHttpResponse = $ResponseTask + # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } + Return $ResponseTask + } + ) + } + Process + { + $maxRetries = 4 + $resultCounter = 0 + :retryLoop do { + $resultCounter++ + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflowUserApprovalRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + If ($sdkError){ + If ($resultCounter -eq $maxRetries){ + throw $sdkError + } + If ($JCHttpResponse.Result.StatusCode -eq "503") { + Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") + } else { + throw $sdkError + } + } else { + break retryLoop + } + Start-Sleep -Seconds ($resultCounter * 5) + } while ($resultCounter -lt $maxRetries) + } + End + { + Write-Debug ('HttpRequest: ' + $JCHttpRequest); + # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); + Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); + # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); + # Clean up global variables + $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') + $GlobalVars | ForEach-Object { + If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { + Remove-Variable -Name:($_) -Scope:('Global') + } + } + Return $Results + } +} + + diff --git a/SwaggerSpecs/JumpCloud.SDK.V2.json b/SwaggerSpecs/JumpCloud.SDK.V2.json index f720a604e..7085a9cee 100644 --- a/SwaggerSpecs/JumpCloud.SDK.V2.json +++ b/SwaggerSpecs/JumpCloud.SDK.V2.json @@ -5061,32 +5061,6 @@ }, "type": "object" }, - "jumpcloud.ingresso.CreateWorkflowAccessRequestRequest": { - "properties": { - "id": { - "type": "string" - }, - "organizationObjectId": { - "format": "byte", - "type": "string" - }, - "reason": { - "type": "string" - }, - "requestedDuration": { - "type": "string" - } - }, - "type": "object" - }, - "jumpcloud.ingresso.CreateWorkflowAccessRequestResponse": { - "properties": { - "id": { - "type": "string" - } - }, - "type": "object" - }, "jumpcloud.ingresso.DeleteAccessWorkflowResponse": { "type": "object", "additionalProperties": true @@ -11842,49 +11816,6 @@ "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest?organizationObjectId=SOME_STRING_VALUE&limit=SOME_STRING_VALUE&skip=SOME_STRING_VALUE&sort=SOME_STRING_VALUE&fields=SOME_ARRAY_VALUE&filter=SOME_ARRAY_VALUE' -Method GET -Headers $headers" } ] - }, - "post": { - "description": "Endpoint for adding a new workflow access request", - "operationId": "WorkflowAccessRequest_Create", - "parameters": [ - { - "in": "body", - "name": "body", - "required": true, - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestRequest" - } - } - ], - "responses": { - "200": { - "description": "A successful response.", - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateWorkflowAccessRequestResponse" - } - } - }, - "security": [ - { - "x-api-key": [] - } - ], - "summary": "Create Workflow Access Request", - "x-dynamic-gateway": true, - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowrequest \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" - }, - { - "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowrequest\"\n\npayload = {\n \"id\": \"string\",\n \"organizationObjectId\": \"string\",\n \"reason\": \"string\",\n \"requestedDuration\": \"string\"\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" - }, - { - "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowrequest' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"id\":\"string\",\"organizationObjectId\":\"string\",\"reason\":\"string\",\"requestedDuration\":\"string\"}'" - } - ] } }, "/approvalflowrequest/{id}": { @@ -24950,7 +24881,7 @@ "/userapprovalrequest": { "post": { "description": "Endpoint for user approval", - "operationId": "WorkflowUserApprovalRequest_Create", + "operationId": "WorkflowUserApprovalRequest_Set", "parameters": [ { "in": "body", From 45a1af3048000bc591406a4e4c208be09ccc8ef6 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 11 Feb 2026 14:10:51 -0700 Subject: [PATCH 10/29] get function tests --- ApiTransform.ps1 | 2 +- .../JumpCloud.SDK.V2.format.ps1xml | 136 ------------- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 9 +- .../custom/JumpCloud.SDK.V2.json | 82 -------- .../custom/generated/New-JcSdkWorkflow.ps1 | 4 +- .../generated/New-JcSdkWorkflowSetting.ps1 | 191 ------------------ .../Set-JcSdkWorkflowUserApprovalRequest.ps1 | 4 +- .../docs/exports/Get-JcSdkWorkflow.md | 4 +- .../exports/Get-JcSdkWorkflowAccessRequest.md | 4 +- .../Get-JcSdkWorkflowAccessRequestProgress.md | 9 +- .../docs/exports/Get-JcSdkWorkflowSetting.md | 9 +- .../docs/exports/JumpCloud.SDK.V2.md | 12 +- .../docs/exports/New-JcSdkWorkflow.md | 9 +- .../docs/exports/Remove-JcSdkWorkflow.md | 2 +- .../docs/exports/Set-JcSdkWorkflow.md | 4 +- .../exports/Set-JcSdkWorkflowAccessRequest.md | 4 +- .../docs/exports/Set-JcSdkWorkflowSetting.md | 4 +- ...> Set-JcSdkWorkflowUserApprovalRequest.md} | 107 ++++------ .../examples/New-JcSdkWorkflow.md | 22 +- .../examples/New-JcSdkWorkflowSetting.md | 13 +- .../examples/Remove-JcSdkWorkflow.md | 6 +- .../examples/Set-JcSdkWorkflow.md | 12 +- .../Set-JcSdkWorkflowAccessRequest.md | 12 +- .../examples/Set-JcSdkWorkflowSetting.md | 12 +- .../Set-JcSdkWorkflowUserApprovalRequest.md | 22 ++ .../test/Get-JcSdkWorkflow.Tests.ps1 | 33 ++- .../Get-JcSdkWorkflowAccessRequest.Tests.ps1 | 20 +- ...SdkWorkflowAccessRequestProgress.Tests.ps1 | 17 +- .../test/Get-JcSdkWorkflowSetting.Tests.ps1 | 9 +- ...cSdkWorkflowUserApprovalRequest.Tests.ps1} | 11 +- SwaggerSpecs/JumpCloud.SDK.V2.json | 82 -------- 31 files changed, 177 insertions(+), 690 deletions(-) delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{New-JcSdkWorkflowSetting.md => Set-JcSdkWorkflowUserApprovalRequest.md} (55%) create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{New-JcSdkWorkflowSetting.Tests.ps1 => Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1} (62%) diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index 5c22a7d9f..a130ecbb3 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -470,7 +470,7 @@ $TransformConfig = [Ordered]@{ 'AccessWorkflowApi_GetAccessWorkflow' = 'Workflow_Get' 'AccessWorkflowApi_UpdateAccessWorkflow' = 'Workflow_Set' 'AccessWorkflowSettingsApi_GetAccessWorkflowSettings' = 'WorkflowSettings_Get' - 'AccessWorkflowSettingsApi_CreateAccessWorkflowSettings' = 'WorkflowSettings_Create' + # 'AccessWorkflowSettingsApi_CreateAccessWorkflowSettings' = 'WorkflowSettings_Create' # this should be created automatically, no need to include the function in the SDK 'AccessWorkflowSettingsApi_UpdateAccessWorkflowSettings' = 'WorkflowSettings_Set' }; ExcludedList = @( diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml index 2d6f6c270..fc29d47d9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml @@ -5133,142 +5133,6 @@ - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsRequest - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsRequest#Multiple - - - - - - - - - - - - - - - - - - - - - - - - - - - AdminApprovalEmail - - - ExposeApprovalProgress - - - OrganizationObjectId - - - ResourceRequest - - - UserApprovalEmail - - - UserRequestEmail - - - - - - - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsResponse - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateAccessWorkflowSettingsResponse#Multiple - - - - - - - - - - - - Id - - - - - - - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequest - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequest#Multiple - - - - - - - - - - - - - - - - - - - - - Id - - - OrganizationObjectId - - - Reason - - - RequestedDuration - - - - - - - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequestResponse - - JumpCloud.SDK.V2.Models.JumpcloudIngressoCreateWorkflowAccessRequestResponse#Multiple - - - - - - - - - - - - Id - - - - - - JumpCloud.SDK.V2.Models.JumpcloudIngressoGetAccessRequestApprovalProgressResponse diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index 463b3ba16..f8f6eec63 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 2/10/2026 +# Generated on: 2/11/2026 # @{ @@ -209,7 +209,7 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'New-JcSdkOffice365TranslationRule', 'New-JcSdkPolicy', 'New-JcSdkPolicyGroup', 'New-JcSdkProviderAdministrator', 'New-JcSdkSoftwareApp', 'New-JcSdkSystemGroup', 'New-JcSdkUserGroup', - 'New-JcSdkWorkday', 'New-JcSdkWorkflow', 'New-JcSdkWorkflowSetting', + 'New-JcSdkWorkday', 'New-JcSdkWorkflow', 'Remove-JcSdkActiveDirectory', 'Remove-JcSdkActiveDirectoryAgent', 'Remove-JcSdkAdministratorOrganization', 'Remove-JcSdkAppleMdm', 'Remove-JcSdkAppleMdmDevice', 'Remove-JcSdkApplicationLogo', @@ -245,9 +245,8 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Update-JcSdkOffice365', 'Update-JcSdkUserPushEndpoint', 'Get-JcSdkWorkflowAccessRequest', 'Get-JcSdkWorkflowAccessRequestProgress', - 'New-JcSdkWorkflowAccessRequest', - 'New-JcSdkWorkflowUserApprovalRequest', - 'Set-JcSdkWorkflowAccessRequest' + 'Set-JcSdkWorkflowAccessRequest', + 'Set-JcSdkWorkflowUserApprovalRequest' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json index 7085a9cee..6b00b3a73 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json @@ -5022,45 +5022,6 @@ }, "type": "object" }, - "jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest": { - "properties": { - "adminApprovalEmail": { - "type": "boolean" - }, - "channelEvents": { - "items": { - "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" - }, - "type": "array" - }, - "exposeApprovalProgress": { - "type": "boolean" - }, - "organizationObjectId": { - "format": "byte", - "type": "string" - }, - "resourceRequest": { - "type": "boolean" - }, - "userApprovalEmail": { - "type": "boolean" - }, - "userRequestEmail": { - "type": "boolean" - } - }, - "type": "object" - }, - "jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse": { - "properties": { - "id": { - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, "jumpcloud.ingresso.DeleteAccessWorkflowResponse": { "type": "object", "additionalProperties": true @@ -12324,49 +12285,6 @@ } ] }, - "post": { - "description": "Endpoint for adding a new access workflow Settings", - "operationId": "WorkflowSettings_Create", - "parameters": [ - { - "in": "body", - "name": "body", - "required": true, - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest" - } - } - ], - "responses": { - "200": { - "description": "A successful response.", - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse" - } - } - }, - "security": [ - { - "x-api-key": [] - } - ], - "summary": "Create Access Workflow Settings for an organization", - "x-dynamic-gateway": true, - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowsettings \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" - }, - { - "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\npayload = {\n \"adminApprovalEmail\": True,\n \"channelEvents\": [\n {\n \"channelObjectId\": \"string\",\n \"eventTypes\": [\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]\n }\n ],\n \"exposeApprovalProgress\": True,\n \"organizationObjectId\": \"string\",\n \"resourceRequest\": True,\n \"userApprovalEmail\": True,\n \"userRequestEmail\": True\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" - }, - { - "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" - } - ] - }, "put": { "description": "Endpoint for updating a access workflow settings for an organization", "operationId": "WorkflowSettings_Set", diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 index 1b19875ab..6952758ed 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 @@ -4,9 +4,7 @@ Endpoint for adding a new access workflow .Description Endpoint for adding a new access workflow .Example -New-JcSdkWorkflow -Body:() -.Example -New-JcSdkWorkflow -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Category:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -ResourceType:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() +New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 deleted file mode 100644 index b8b289fa8..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflowSetting.ps1 +++ /dev/null @@ -1,191 +0,0 @@ -<# -.Synopsis -Endpoint for adding a new access workflow Settings -.Description -Endpoint for adding a new access workflow Settings -.Example -New-JcSdkWorkflowSetting -Body:() -.Example -New-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() - -.Inputs -JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest -.Outputs -JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : - [AdminApprovalEmail ]: - [ChannelEvents >]: - [ChannelObjectId ]: - [EventTypes >]: - [ExposeApprovalProgress ]: - [OrganizationObjectId ]: - [ResourceRequest ]: - [UserApprovalEmail ]: - [UserRequestEmail ]: - -CHANNELEVENTS : - [ChannelObjectId ]: - [EventTypes >]: -.Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md -#> - Function New-JcSdkWorkflowSetting -{ - [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsResponse])] - [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - Param( - [Parameter(Mandatory)] - [JumpCloud.SDK.V2.Category('Uri')] - [System.String] - # Region for JumpCloud API host. - # Use 'console' for US or 'console.eu' for EU. - ${ConsoleHost}, - - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [JumpCloud.SDK.V2.Category('Body')] - [JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest] - # . - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AdminApprovalEmail}, - - [Parameter(ParameterSetName='CreateExpanded')] - [AllowEmptyCollection()] - [JumpCloud.SDK.V2.Category('Body')] - [JumpCloud.SDK.V2.Models.IJumpcloudIngressoChannelEvent[]] - # . - ${ChannelEvents}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ExposeApprovalProgress}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.String] - # Input File for OrganizationObjectId (.) - ${OrganizationObjectIdInputFile}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ResourceRequest}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${UserApprovalEmail}, - - [Parameter(ParameterSetName='CreateExpanded')] - [JumpCloud.SDK.V2.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${UserRequestEmail}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [JumpCloud.SDK.V2.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [JumpCloud.SDK.V2.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} - ) - Begin - { - $Results = @() - $PSBoundParameters.Add('HttpPipelineAppend', { - param($req, $callback, $next) - # call the next step in the Pipeline - $ResponseTask = $next.SendAsync($req, $callback) - $global:JCHttpRequest = $req - # $global:JCHttpRequestContent = If (-not [System.String]::IsNullOrEmpty($req.Content)) { $req.Content.ReadAsStringAsync() } - $global:JCHttpResponse = $ResponseTask - # $global:JCHttpResponseContent = If (-not [System.String]::IsNullOrEmpty($ResponseTask.Result.Content)) { $ResponseTask.Result.Content.ReadAsStringAsync() } - Return $ResponseTask - } - ) - } - Process - { - $maxRetries = 4 - $resultCounter = 0 - :retryLoop do { - $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError - If ($sdkError){ - If ($resultCounter -eq $maxRetries){ - throw $sdkError - } - If ($JCHttpResponse.Result.StatusCode -eq "503") { - Write-Warning ("503: Service Unavailable - retrying in " + ($resultCounter * 5) + " seconds.") - } else { - throw $sdkError - } - } else { - break retryLoop - } - Start-Sleep -Seconds ($resultCounter * 5) - } while ($resultCounter -lt $maxRetries) - } - End - { - Write-Debug ('HttpRequest: ' + $JCHttpRequest); - # Write-Debug ('HttpRequestContent: ' + $JCHttpRequestContent.Result); - Write-Debug ('HttpResponse: ' + $JCHttpResponse.Result); - # Write-Debug ('HttpResponseContent: ' + $JCHttpResponseContent.Result); - # Clean up global variables - $GlobalVars = @('JCHttpRequest', 'JCHttpRequestContent', 'JCHttpResponse', 'JCHttpResponseContent') - $GlobalVars | ForEach-Object { - If ((Get-Variable -Scope:('Global')).Where( { $_.Name -eq $_ })) { - Remove-Variable -Name:($_) -Scope:('Global') - } - } - Return $Results - } -} - - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 index b12803d4f..e4202b105 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 @@ -4,9 +4,9 @@ Endpoint for user approval .Description Endpoint for user approval .Example -{{ Add code here }} +Set-JcSdkWorkflowUserApprovalRequest -Body:() .Example -{{ Add code here }} +Set-JcSdkWorkflowUserApprovalRequest -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md index 38d2fcc5f..2f89bf5ad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md @@ -37,14 +37,14 @@ Endpoint for getting workflow by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +) -Filter:() -Sort:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md index 529b8ba21..44a2e3bb1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md @@ -37,14 +37,14 @@ Endpoint that returns the workflow access request by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +) -Filter:() -Sort:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md index 7641895f5..84e9777d0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md @@ -31,14 +31,7 @@ Endpoint for getting the approval progress of a access request ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} +) ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md index 665d31940..ef2e58e1c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md @@ -23,14 +23,7 @@ Endpoint for getting workflow settings for an organisation ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} +Get-JcSdkWorkflowSetting ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md index b51b05f2d..78e1d9fdf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md @@ -2329,15 +2329,6 @@ curl -X POST https://console.jumpcloud.com/api/v2/workdays/ \\ ### [New-JcSdkWorkflow](New-JcSdkWorkflow.md) Endpoint for adding a new access workflow -### [New-JcSdkWorkflowAccessRequest](New-JcSdkWorkflowAccessRequest.md) -Endpoint for adding a new workflow access request - -### [New-JcSdkWorkflowSetting](New-JcSdkWorkflowSetting.md) -Endpoint for adding a new access workflow Settings - -### [New-JcSdkWorkflowUserApprovalRequest](New-JcSdkWorkflowUserApprovalRequest.md) -Endpoint for user approval - ### [Remove-JcSdkActiveDirectory](Remove-JcSdkActiveDirectory.md) This endpoint allows you to delete an Active Directory Instance. @@ -3123,6 +3114,9 @@ Endpoint that set the workflow access request by id ### [Set-JcSdkWorkflowSetting](Set-JcSdkWorkflowSetting.md) Endpoint for updating a access workflow settings for an organization +### [Set-JcSdkWorkflowUserApprovalRequest](Set-JcSdkWorkflowUserApprovalRequest.md) +Endpoint for user approval + ### [Stop-JcSdkAppleMdmDevice](Stop-JcSdkAppleMdmDevice.md) Shuts down a DEP-enrolled device. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md index d4eb6a5c4..cb7e4ef5d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md @@ -35,14 +35,7 @@ Endpoint for adding a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} +New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md index 5eccf65bb..54b896d9a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md @@ -31,7 +31,7 @@ Endpoint for deleting accessworkflow by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md index 9e1a2a045..dfc19854c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md @@ -55,14 +55,14 @@ Endpoint for updating a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) -Body:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +) -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md index ff3e2da1f..5bfbf9968 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md @@ -47,14 +47,14 @@ Endpoint that set the workflow access request by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) -Body:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +) -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md index d6d2bfa02..193a89109 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md @@ -33,14 +33,14 @@ Endpoint for updating a access workflow settings for an organization ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +) -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md similarity index 55% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md index b72e83f14..ddddb4bab 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md @@ -1,58 +1,57 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflowSetting.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md schema: 2.0.0 --- -# New-JcSdkWorkflowSetting +# Set-JcSdkWorkflowUserApprovalRequest ## SYNOPSIS -Endpoint for adding a new access workflow Settings +Endpoint for user approval ## SYNTAX -### CreateExpanded (Default) +### SetExpanded (Default) ``` -New-JcSdkWorkflowSetting -ConsoleHost [-AdminApprovalEmail] - [-ChannelEvents ] [-ExposeApprovalProgress] - [-OrganizationObjectIdInputFile ] [-ResourceRequest] [-UserApprovalEmail] [-UserRequestEmail] - [-Confirm] [-WhatIf] [] +Set-JcSdkWorkflowUserApprovalRequest -ConsoleHost [-ApprovedDuration ] [-Id ] + [-OrganizationObjectIdInputFile ] [-Remarks ] [-Status ] [-Confirm] [-WhatIf] + [] ``` -### Create +### Set ``` -New-JcSdkWorkflowSetting -ConsoleHost -Body +Set-JcSdkWorkflowUserApprovalRequest -ConsoleHost -Body [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION -Endpoint for adding a new access workflow Settings +Endpoint for user approval ## EXAMPLES ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +) ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +) -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` ## PARAMETERS -### -AdminApprovalEmail +### -ApprovedDuration . ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: CreateExpanded +Type: System.String +Parameter Sets: SetExpanded Aliases: Required: False @@ -66,8 +65,8 @@ Accept wildcard characters: False . ```yaml -Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest -Parameter Sets: Create +Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest +Parameter Sets: Set Aliases: Required: True @@ -77,21 +76,6 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -ChannelEvents -. - -```yaml -Type: JumpCloud.SDK.V2.Models.IJumpcloudIngressoChannelEvent[] -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ConsoleHost Region for JumpCloud API host. Use 'console' for US or 'console.eu' for EU. @@ -108,12 +92,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ExposeApprovalProgress +### -Id . ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: CreateExpanded +Type: System.String +Parameter Sets: SetExpanded Aliases: Required: False @@ -128,7 +112,7 @@ Input File for OrganizationObjectId (.) ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: SetExpanded Aliases: Required: False @@ -138,27 +122,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceRequest +### -Remarks . ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UserApprovalEmail -. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: CreateExpanded +Type: System.String +Parameter Sets: SetExpanded Aliases: Required: False @@ -168,12 +137,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -UserRequestEmail +### -Status . ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: CreateExpanded +Type: System.String +Parameter Sets: SetExpanded Aliases: Required: False @@ -219,11 +188,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsRequest +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest ## OUTPUTS -### JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowSettingsResponse +### JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse ## NOTES @@ -232,20 +201,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -`BODY `: . - - `[AdminApprovalEmail ]`: - - `[ChannelEvents >]`: - - `[ChannelObjectId ]`: - - `[EventTypes >]`: - - `[ExposeApprovalProgress ]`: +`BODY `: . + - `[ApprovedDuration ]`: + - `[Id ]`: - `[OrganizationObjectId ]`: - - `[ResourceRequest ]`: - - `[UserApprovalEmail ]`: - - `[UserRequestEmail ]`: - -`CHANNELEVENTS `: . - - `[ChannelObjectId ]`: - - `[EventTypes >]`: + - `[Remarks ]`: + - `[Status ]`: ## RELATED LINKS diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md index 0371f56c3..7df454ed8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md @@ -1,22 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Create a Workflow ```powershell -{{ Add code here }} +New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +Id +-- +698cba2ed5a55800019f4aae ``` -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -{{ Add code here }} -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -{{ Add description here }} - +This function will Create a Workflow \ No newline at end of file diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md index 0371f56c3..992e5ee19 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md @@ -1,22 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Create a WorkflowSetting ```powershell -{{ Add code here }} +New-JcSdkWorkflowSetting -Body:() ``` - ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Create a WorkflowSetting by Body. Body is a required parameter. -### Example 2: {{ Add title here }} +### Example 2: Create a WorkflowSetting by ```powershell -{{ Add code here }} +New-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Create a WorkflowSetting by . diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md index 0371f56c3..35f60952d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md @@ -1,13 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Remove a Workflow by ApprovalFlowId ```powershell -{{ Add code here }} +Remove-JcSdkWorkflow -ApprovalFlowId:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Remove a Workflow by ApprovalFlowId. ApprovalFlowId is a required parameter. ### Example 2: {{ Add title here }} ```powershell diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md index 0371f56c3..b2f4e667c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set a Workflow by ApprovalFlowId, and Body ```powershell -{{ Add code here }} +Set-JcSdkWorkflow -ApprovalFlowId:() -Body:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Set a Workflow by ApprovalFlowId Body. ApprovalFlowId, and Body are required parameters. -### Example 2: {{ Add title here }} +### Example 2: Set a Workflow by ApprovalFlowId ```powershell -{{ Add code here }} +Set-JcSdkWorkflow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Set a Workflow by ApprovalFlowId. ApprovalFlowId is a required parameter. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md index 0371f56c3..fcf43cb0b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set a WorkflowAccessRequest by Id, and Body ```powershell -{{ Add code here }} +Set-JcSdkWorkflowAccessRequest -Id:() -Body:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Set a WorkflowAccessRequest by Id Body. Id, and Body are required parameters. -### Example 2: {{ Add title here }} +### Example 2: Set a WorkflowAccessRequest by Id ```powershell -{{ Add code here }} +Set-JcSdkWorkflowAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Set a WorkflowAccessRequest by Id. Id is a required parameter. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md index 0371f56c3..ccbd50eb8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set a WorkflowSetting by Body ```powershell -{{ Add code here }} +Set-JcSdkWorkflowSetting -Body:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Set a WorkflowSetting by Body. Body is a required parameter. -### Example 2: {{ Add title here }} +### Example 2: Set a WorkflowSetting by ```powershell -{{ Add code here }} +Set-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -{{ Add description here }} +This function will Set a WorkflowSetting by . diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md new file mode 100644 index 000000000..15505a084 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md @@ -0,0 +1,22 @@ +### Example 1: Set a WorkflowUserApprovalRequest by Body +```powershell +Set-JcSdkWorkflowUserApprovalRequest -Body:() +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +This function will Set a WorkflowUserApprovalRequest by Body. Body is a required parameter. + +### Example 2: Set a WorkflowUserApprovalRequest by +```powershell +Set-JcSdkWorkflowUserApprovalRequest -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +This function will Set a WorkflowUserApprovalRequest by . + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 index c4167d965..3ab16bdc0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 @@ -15,15 +15,36 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflow')) } Describe 'Get-JcSdkWorkflow' { - It 'List' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'List' { + { Get-JcSdkWorkflow } | Should -Not -Throw } - It 'Get' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'List should return actual workflows if they exist' { + $workflows = Get-JcSdkWorkflow + if ($null -eq $workflows){ + # create a workflow with new-jcsdkworkflow + $userGroups = Get-JcSdkUserGroup + $userGroup = $userGroups | Get-Random -Count 1 + $targetGroup = Get-JcSdkUserGroup | Get-Random -Count 1 + while ($targetGroup.Id -eq $userGroup.Id) { + $targetGroup = Get-JcSdkUserGroup | Get-Random -Count 1 + } + $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId $userGroup.Id -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) + } else { + $workflow = $workflows | Get-Random -Count 1 + } + $workflow | Should -Not -BeNullOrEmpty + $workflow.Count | Should -Be 1 } - It 'GetViaIdentity' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'Get' { + $workflows = Get-JcSdkWorkflow + if ($null -eq $workflows){ + $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId $userGroup.Id -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) + } else { + $workflow = $workflows | Get-Random -Count 1 + } + Get-JcSdkWorkflow -ApprovalFlowId $workflow.Id | Should -Not -BeNullOrEmpty + $workflow.Id | Should -Be $workflow.Id } } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 index f20cec666..895f3be00 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 @@ -15,15 +15,19 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessReques } Describe 'Get-JcSdkWorkflowAccessRequest' { - It 'List' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'List' { + { Get-JcSdkWorkflowAccessRequest } | Should -Not -Throw } - It 'Get' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'GetViaIdentity' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'List should return actual access requests if they exist' { + $accessRequests = Get-JcSdkWorkflowAccessRequest + if ($null -eq $accessRequests){ + # can't create workflows without logging in as a user, skip test + continue + } else { + $accessRequest = $accessRequests | Get-Random -Count 1 + $accessRequest | Should -Not -BeNullOrEmpty + $accessRequest.Count | Should -Be 1 + } } } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 index daf668a48..28e0c397e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 @@ -15,11 +15,16 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessReques } Describe 'Get-JcSdkWorkflowAccessRequestProgress' { - It 'Get' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'GetViaIdentity' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'Get' { + $workflows = Get-JcSdkWorkflow + if ($null -eq $workflows){ + # can't create workflows without logging in as a user, skip test + continue + } else { + $workflow = $workflows | Get-Random -Count 1 + $progress = Get-JcSdkWorkflowAccessRequestProgress -Id $workflow.Id + $progress | Should -Not -BeNullOrEmpty + $progress.Count | Should -Be 1 + } } } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 index 83c3f8768..b66f2cd95 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 @@ -15,7 +15,12 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowSetting')) } Describe 'Get-JcSdkWorkflowSetting' { - It 'Get' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'Get' { + { Get-JcSdkWorkflowSetting } | Should -Not -Throw + } + It 'Get should return actual settings if they exist' { + $settings = Get-JcSdkWorkflowSetting + $settings | Should -Not -BeNullOrEmpty + $settings.Count | Should -Be 1 } } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 similarity index 62% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 index b4d61f5db..f9e033426 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflowSetting.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowSetting')) +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowUserApprovalRequest')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflowSetting.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflowUserApprovalRequest.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,12 +14,13 @@ if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflowSetting')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'New-JcSdkWorkflowSetting' { - It 'CreateExpanded' -skip { +Describe 'Set-JcSdkWorkflowUserApprovalRequest' { + # can't create user approval requests without logging in as a user, skip test + It 'SetExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } - It 'Create' -skip { + It 'Set' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } } diff --git a/SwaggerSpecs/JumpCloud.SDK.V2.json b/SwaggerSpecs/JumpCloud.SDK.V2.json index 7085a9cee..6b00b3a73 100644 --- a/SwaggerSpecs/JumpCloud.SDK.V2.json +++ b/SwaggerSpecs/JumpCloud.SDK.V2.json @@ -5022,45 +5022,6 @@ }, "type": "object" }, - "jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest": { - "properties": { - "adminApprovalEmail": { - "type": "boolean" - }, - "channelEvents": { - "items": { - "$ref": "#/definitions/jumpcloud.ingresso.ChannelEvent" - }, - "type": "array" - }, - "exposeApprovalProgress": { - "type": "boolean" - }, - "organizationObjectId": { - "format": "byte", - "type": "string" - }, - "resourceRequest": { - "type": "boolean" - }, - "userApprovalEmail": { - "type": "boolean" - }, - "userRequestEmail": { - "type": "boolean" - } - }, - "type": "object" - }, - "jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse": { - "properties": { - "id": { - "format": "int32", - "type": "integer" - } - }, - "type": "object" - }, "jumpcloud.ingresso.DeleteAccessWorkflowResponse": { "type": "object", "additionalProperties": true @@ -12324,49 +12285,6 @@ } ] }, - "post": { - "description": "Endpoint for adding a new access workflow Settings", - "operationId": "WorkflowSettings_Create", - "parameters": [ - { - "in": "body", - "name": "body", - "required": true, - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsRequest" - } - } - ], - "responses": { - "200": { - "description": "A successful response.", - "schema": { - "$ref": "#/definitions/jumpcloud.ingresso.CreateAccessWorkflowSettingsResponse" - } - } - }, - "security": [ - { - "x-api-key": [] - } - ], - "summary": "Create Access Workflow Settings for an organization", - "x-dynamic-gateway": true, - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl --request POST \\\n --url https://console.jumpcloud.com/api/v2/approvalflowsettings \\\n --header 'content-type: application/json' \\\n --header 'x-api-key: REPLACE_KEY_VALUE' \\\n --data '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" - }, - { - "lang": "Python", - "source": "import requests\n\nurl = \"https://console.jumpcloud.com/api/v2/approvalflowsettings\"\n\npayload = {\n \"adminApprovalEmail\": True,\n \"channelEvents\": [\n {\n \"channelObjectId\": \"string\",\n \"eventTypes\": [\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]\n }\n ],\n \"exposeApprovalProgress\": True,\n \"organizationObjectId\": \"string\",\n \"resourceRequest\": True,\n \"userApprovalEmail\": True,\n \"userRequestEmail\": True\n}\nheaders = {\n \"x-api-key\": \"REPLACE_KEY_VALUE\",\n \"content-type\": \"application/json\"\n}\n\nresponse = requests.request(\"POST\", url, json=payload, headers=headers)\n\nprint(response.text)" - }, - { - "lang": "Powershell", - "source": "$headers=@{}\n$headers.Add(\"x-api-key\", \"REPLACE_KEY_VALUE\")\n$headers.Add(\"content-type\", \"application/json\")\n$response = Invoke-RestMethod -Uri 'https://console.jumpcloud.com/api/v2/approvalflowsettings' -Method POST -Headers $headers -ContentType 'application/json' -Body '{\"adminApprovalEmail\":true,\"channelEvents\":[{\"channelObjectId\":\"string\",\"eventTypes\":[\"ACCESS_MANAGEMENT_EVENT_TYPE_UNSPECIFIED\"]}],\"exposeApprovalProgress\":true,\"organizationObjectId\":\"string\",\"resourceRequest\":true,\"userApprovalEmail\":true,\"userRequestEmail\":true}'" - } - ] - }, "put": { "description": "Endpoint for updating a access workflow settings for an organization", "operationId": "WorkflowSettings_Set", From 6691fad055cc98da250b745e611fe38a192bd90b Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 11 Feb 2026 14:11:10 -0700 Subject: [PATCH 11/29] changelog date --- JumpCloud.SDK.V2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 7dd7470e7..8d5fc24f8 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,5 +1,5 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: February 10, 2026 +Release Date: February 11, 2026 #### RELEASE NOTES ``` Add accessRequest workflow functions/ general SDK updates from source From 042457b2d3dde4bf3d9e9c8897292f0f32365812 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 11 Feb 2026 14:34:36 -0700 Subject: [PATCH 12/29] update key test --- .../JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 index b0f60e1a0..59540c633 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 @@ -16,7 +16,10 @@ BeforeAll { Describe 'New-JcSdkUserSshKey' -Tag:(""){ It 'CreateExpanded' { $global:PesterDefUserSshKey.Id = $global:PesterTestUser.Id - $global:PesterTestUserSshKey = New-JcSdkUserSshKey @global:PesterDefUserSshKey + # pass in some random values for the name and public key + $name = "newKeyName" + $(Get-Random -Maximum 1000000) + $publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKNyuXv0JBV2Ph7IqvRUI30zRlIHAX1Q7TWePswBCTdG test@test" + $global:PesterTestUserSshKey = New-JcSdkUserSshKey -id @global:PesterDefUserSshKey -Name $name -PublicKey $publicKey $global:PesterTestUserSshKey | Should -Not -BeNullOrEmpty } From ac919f76737eeaecfb7999f623995234024e881a Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 11 Feb 2026 14:48:59 -0700 Subject: [PATCH 13/29] fix for SSH key tests --- .../JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 index 59540c633..a3951b0d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V1/test/New-JcSdkUserSshKey.Tests.ps1 @@ -15,11 +15,11 @@ BeforeAll { Describe 'New-JcSdkUserSshKey' -Tag:(""){ It 'CreateExpanded' { - $global:PesterDefUserSshKey.Id = $global:PesterTestUser.Id + $id = $global:PesterTestUser.Id # pass in some random values for the name and public key $name = "newKeyName" + $(Get-Random -Maximum 1000000) $publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKNyuXv0JBV2Ph7IqvRUI30zRlIHAX1Q7TWePswBCTdG test@test" - $global:PesterTestUserSshKey = New-JcSdkUserSshKey -id @global:PesterDefUserSshKey -Name $name -PublicKey $publicKey + $global:PesterTestUserSshKey = New-JcSdkUserSshKey -id $id -Name $name -PublicKey $publicKey $global:PesterTestUserSshKey | Should -Not -BeNullOrEmpty } From cf0a659656eb4613676cafd7bfb9661675eea139 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 16 Feb 2026 09:32:24 -0700 Subject: [PATCH 14/29] Workflow -> ApprovalFlow --- ApiTransform.ps1 | 34 +++++------ .../JumpCloud.SDK.V2.format.ps1xml | 6 ++ .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 51 ++++++++-------- .../custom/JumpCloud.SDK.V2.json | 27 +++++---- ...Request.ps1 => Get-JcSdkAccessRequest.ps1} | 12 ++-- ...ps1 => Get-JcSdkAccessRequestProgress.ps1} | 10 ++-- ...Workflow.ps1 => Get-JcSdkApprovalFlow.ps1} | 12 ++-- ...g.ps1 => Get-JcSdkApprovalFlowSetting.ps1} | 10 ++-- ...Workflow.ps1 => New-JcSdkApprovalFlow.ps1} | 10 ++-- ...kflow.ps1 => Remove-JcSdkApprovalFlow.ps1} | 8 +-- ...Request.ps1 => Set-JcSdkAccessRequest.ps1} | 10 ++-- ...ps1 => Set-JcSdkAccessRequestApproval.ps1} | 10 ++-- ...Workflow.ps1 => Set-JcSdkApprovalFlow.ps1} | 10 ++-- ...g.ps1 => Set-JcSdkApprovalFlowSetting.ps1} | 10 ++-- ...ssRequest.md => Get-JcSdkAccessRequest.md} | 14 ++--- ...s.md => Get-JcSdkAccessRequestProgress.md} | 17 ++++-- ...dkWorkflow.md => Get-JcSdkApprovalFlow.md} | 16 ++--- ...ing.md => Get-JcSdkApprovalFlowSetting.md} | 15 +++-- .../docs/exports/JumpCloud.SDK.V2.md | 60 +++++++++---------- ...dkWorkflow.md => New-JcSdkApprovalFlow.md} | 17 ++++-- ...orkflow.md => Remove-JcSdkApprovalFlow.md} | 10 ++-- ...ssRequest.md => Set-JcSdkAccessRequest.md} | 20 +++---- ...t.md => Set-JcSdkAccessRequestApproval.md} | 14 ++--- ...dkWorkflow.md => Set-JcSdkApprovalFlow.md} | 16 ++--- ...ing.md => Set-JcSdkApprovalFlowSetting.md} | 14 ++--- ...ssRequest.md => Get-JcSdkAccessRequest.md} | 12 ++-- .../Get-JcSdkAccessRequestProgress.md | 7 +++ ...dkWorkflow.md => Get-JcSdkApprovalFlow.md} | 18 +++--- ...ing.md => Get-JcSdkApprovalFlowSetting.md} | 6 +- .../Get-JcSdkWorkflowAccessRequestProgress.md | 7 --- .../examples/New-JcSdkApprovalFlow.md | 12 ++++ .../examples/New-JcSdkWorkflow.md | 12 ---- .../examples/New-JcSdkWorkflowSetting.md | 21 ------- ...orkflow.md => Remove-JcSdkApprovalFlow.md} | 6 +- .../examples/Set-JcSdkAccessRequest.md | 22 +++++++ .../Set-JcSdkAccessRequestApproval.md | 22 +++++++ .../examples/Set-JcSdkApprovalFlow.md | 22 +++++++ .../examples/Set-JcSdkApprovalFlowSetting.md | 22 +++++++ .../examples/Set-JcSdkWorkflow.md | 22 ------- .../Set-JcSdkWorkflowAccessRequest.md | 22 ------- .../examples/Set-JcSdkWorkflowSetting.md | 22 ------- .../Set-JcSdkWorkflowUserApprovalRequest.md | 22 ------- ...s.ps1 => Get-JcSdkAccessRequest.Tests.ps1} | 10 ++-- ... Get-JcSdkAccessRequestProgress.Tests.ps1} | 10 ++-- ...ts.ps1 => Get-JcSdkApprovalFlow.Tests.ps1} | 14 ++--- ...=> Get-JcSdkApprovalFlowSetting.Tests.ps1} | 10 ++-- ...ts.ps1 => New-JcSdkApprovalFlow.Tests.ps1} | 6 +- ...ps1 => Remove-JcSdkApprovalFlow.Tests.ps1} | 6 +- ...s.ps1 => Set-JcSdkAccessRequest.Tests.ps1} | 6 +- ... Set-JcSdkAccessRequestApproval.Tests.ps1} | 7 +-- ...ts.ps1 => Set-JcSdkApprovalFlow.Tests.ps1} | 6 +- ...=> Set-JcSdkApprovalFlowSetting.Tests.ps1} | 6 +- SwaggerSpecs/JumpCloud.SDK.V2.json | 27 +++++---- 53 files changed, 416 insertions(+), 402 deletions(-) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Get-JcSdkWorkflowAccessRequest.ps1 => Get-JcSdkAccessRequest.ps1} (95%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Get-JcSdkWorkflowAccessRequestProgress.ps1 => Get-JcSdkAccessRequestProgress.ps1} (96%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Get-JcSdkWorkflow.ps1 => Get-JcSdkApprovalFlow.ps1} (96%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Get-JcSdkWorkflowSetting.ps1 => Get-JcSdkApprovalFlowSetting.ps1} (95%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{New-JcSdkWorkflow.ps1 => New-JcSdkApprovalFlow.ps1} (94%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Remove-JcSdkWorkflow.ps1 => Remove-JcSdkApprovalFlow.ps1} (97%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Set-JcSdkWorkflowAccessRequest.ps1 => Set-JcSdkAccessRequest.ps1} (93%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Set-JcSdkWorkflowUserApprovalRequest.ps1 => Set-JcSdkAccessRequestApproval.ps1} (92%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Set-JcSdkWorkflow.ps1 => Set-JcSdkApprovalFlow.ps1} (92%) rename SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/{Set-JcSdkWorkflowSetting.ps1 => Set-JcSdkApprovalFlowSetting.ps1} (92%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Get-JcSdkWorkflowAccessRequest.md => Get-JcSdkAccessRequest.md} (90%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Get-JcSdkWorkflowAccessRequestProgress.md => Get-JcSdkAccessRequestProgress.md} (89%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Get-JcSdkWorkflow.md => Get-JcSdkApprovalFlow.md} (90%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Get-JcSdkWorkflowSetting.md => Get-JcSdkApprovalFlowSetting.md} (82%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{New-JcSdkWorkflow.md => New-JcSdkApprovalFlow.md} (93%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Remove-JcSdkWorkflow.md => Remove-JcSdkApprovalFlow.md} (93%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Set-JcSdkWorkflowAccessRequest.md => Set-JcSdkAccessRequest.md} (88%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Set-JcSdkWorkflowUserApprovalRequest.md => Set-JcSdkAccessRequestApproval.md} (89%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Set-JcSdkWorkflow.md => Set-JcSdkApprovalFlow.md} (91%) rename SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/{Set-JcSdkWorkflowSetting.md => Set-JcSdkApprovalFlowSetting.md} (90%) rename SDKs/PowerShell/JumpCloud.SDK.V2/examples/{Get-JcSdkWorkflowAccessRequest.md => Get-JcSdkAccessRequest.md} (78%) create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md rename SDKs/PowerShell/JumpCloud.SDK.V2/examples/{Get-JcSdkWorkflow.md => Get-JcSdkApprovalFlow.md} (69%) rename SDKs/PowerShell/JumpCloud.SDK.V2/examples/{Get-JcSdkWorkflowSetting.md => Get-JcSdkApprovalFlowSetting.md} (74%) delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md rename SDKs/PowerShell/JumpCloud.SDK.V2/examples/{Remove-JcSdkWorkflow.md => Remove-JcSdkApprovalFlow.md} (62%) create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md create mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md delete mode 100644 SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Get-JcSdkWorkflowAccessRequest.Tests.ps1 => Get-JcSdkAccessRequest.Tests.ps1} (72%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 => Get-JcSdkAccessRequestProgress.Tests.ps1} (68%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Get-JcSdkWorkflow.Tests.ps1 => Get-JcSdkApprovalFlow.Tests.ps1} (83%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Get-JcSdkWorkflowSetting.Tests.ps1 => Get-JcSdkApprovalFlowSetting.Tests.ps1} (66%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{New-JcSdkWorkflow.Tests.ps1 => New-JcSdkApprovalFlow.Tests.ps1} (77%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Remove-JcSdkWorkflow.Tests.ps1 => Remove-JcSdkApprovalFlow.Tests.ps1} (76%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Set-JcSdkWorkflowAccessRequest.Tests.ps1 => Set-JcSdkAccessRequest.Tests.ps1} (80%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 => Set-JcSdkAccessRequestApproval.Tests.ps1} (67%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Set-JcSdkWorkflow.Tests.ps1 => Set-JcSdkApprovalFlow.Tests.ps1} (82%) rename SDKs/PowerShell/JumpCloud.SDK.V2/test/{Set-JcSdkWorkflowSetting.Tests.ps1 => Set-JcSdkApprovalFlowSetting.Tests.ps1} (75%) diff --git a/ApiTransform.ps1 b/ApiTransform.ps1 index a130ecbb3..5bf4711e3 100644 --- a/ApiTransform.ps1 +++ b/ApiTransform.ps1 @@ -454,24 +454,24 @@ $TransformConfig = [Ordered]@{ 'workdays_post' = 'Workday_Create'; 'workdays_put' = 'Workday_Set'; 'workdays_workers' = 'WorkdayWorker_Get'; - # 'AccessRequestApi_CreateAccessRequest' = 'WorkflowUserRequest_Create'; - # 'AccessRequestApi_GetAccessRequest' = 'WorkflowUserRequest_Get'; - # 'AccessRequestApi_UpdateAccessRequest' = 'WorkflowUserRequest_Set'; - # 'AccessRequestApi_RevokeAccessRequest' = 'WorkflowUserRequest_Delete'; - 'WorkflowAccessRequestApi_UserApprovalRequest' = 'WorkflowUserApprovalRequest_Set' - 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'WorkflowAccessRequest_List' - 'WorkflowAccessRequestApi_GetWorkflowAccessRequests' = 'WorkflowAccessRequest_Get'; - # 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'WorkflowAccessRequest_Create' # unsure how this endpoint works/ removing from CUT-4022 - 'WorkflowAccessRequestApi_UpdateWorkflowAccessRequests' = 'WorkflowAccessRequest_Set' - 'WorkflowAccessRequestApi_GetAccessRequestApprovalProgressAdminPortal' = 'WorkflowAccessRequestProgress_Get' - 'AccessWorkflowApi_GetAllAccessWorkFlows' = 'Workflow_List' - 'AccessWorkflowApi_CreateAccessWorkflow' = 'Workflow_Create' - 'AccessWorkflowApi_DeleteAccessWorkflow' = 'Workflow_Delete' - 'AccessWorkflowApi_GetAccessWorkflow' = 'Workflow_Get' - 'AccessWorkflowApi_UpdateAccessWorkflow' = 'Workflow_Set' - 'AccessWorkflowSettingsApi_GetAccessWorkflowSettings' = 'WorkflowSettings_Get' + # 'AccessRequestApi_CreateAccessRequest' = 'UserAccessRequest_Create'; + # 'AccessRequestApi_GetAccessRequest' = 'UserAccessRequest_Get'; + # 'AccessRequestApi_UpdateAccessRequest' = 'UserAccessRequest_Set'; + # 'AccessRequestApi_RevokeAccessRequest' = 'UserAccessRequest_Delete'; + 'WorkflowAccessRequestApi_UserApprovalRequest' = 'AccessRequestApproval_Set' + 'WorkflowAccessRequestApi_GetAllWorkflowAccessRequests' = 'AccessRequest_List' + 'WorkflowAccessRequestApi_GetWorkflowAccessRequests' = 'AccessRequest_Get'; + # 'WorkflowAccessRequestApi_CreateWorkflowAccessRequest' = 'AccessRequest_Create' # unsure how this endpoint works/ removing from CUT-4022 + 'WorkflowAccessRequestApi_UpdateWorkflowAccessRequests' = 'AccessRequest_Set' + 'WorkflowAccessRequestApi_GetAccessRequestApprovalProgressAdminPortal' = 'AccessRequestProgress_Get' + 'AccessWorkflowApi_GetAllAccessWorkFlows' = 'ApprovalFlow_List' + 'AccessWorkflowApi_CreateAccessWorkflow' = 'ApprovalFlow_Create' + 'AccessWorkflowApi_DeleteAccessWorkflow' = 'ApprovalFlow_Delete' + 'AccessWorkflowApi_GetAccessWorkflow' = 'ApprovalFlow_Get' + 'AccessWorkflowApi_UpdateAccessWorkflow' = 'ApprovalFlow_Set' + 'AccessWorkflowSettingsApi_GetAccessWorkflowSettings' = 'ApprovalFlowSettings_Get' # 'AccessWorkflowSettingsApi_CreateAccessWorkflowSettings' = 'WorkflowSettings_Create' # this should be created automatically, no need to include the function in the SDK - 'AccessWorkflowSettingsApi_UpdateAccessWorkflowSettings' = 'WorkflowSettings_Set' + 'AccessWorkflowSettingsApi_UpdateAccessWorkflowSettings' = 'ApprovalFlowSettings_Set' }; ExcludedList = @( # Excluded items are listed by Path and do not include opperation type (put, post, get, etc.) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml index fc29d47d9..49ee32da5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.format.ps1xml @@ -5580,6 +5580,9 @@ + + + @@ -5650,6 +5653,9 @@ Status + + TimeBasedAccess + UpdatedAt diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index f8f6eec63..c27add4a7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 2/11/2026 +# Generated on: 2/16/2026 # @{ @@ -70,8 +70,9 @@ RequiredAssemblies = './bin/JumpCloud.SDK.V2.private.dll' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', - 'Clear-JcSdkAppleMdmDeviceActivationLock', - 'Get-JcSdkActiveDirectory', 'Get-JcSdkActiveDirectoryAgent', + 'Clear-JcSdkAppleMdmDeviceActivationLock', 'Get-JcSdkAccessRequest', + 'Get-JcSdkAccessRequestProgress', 'Get-JcSdkActiveDirectory', + 'Get-JcSdkActiveDirectoryAgent', 'Get-JcSdkActiveDirectoryAssociation', 'Get-JcSdkActiveDirectoryTraverseUser', 'Get-JcSdkActiveDirectoryTraverseUserGroup', @@ -80,10 +81,10 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Get-JcSdkAppleMdmDevice', 'Get-JcSdkAppleMdmEnrollmentProfile', 'Get-JcSdkApplicationAssociation', 'Get-JcSdkApplicationTraverseUser', - 'Get-JcSdkApplicationTraverseUserGroup', - 'Get-JcSdkAuthenticationPolicy', 'Get-JcSdkBulkUsersResult', - 'Get-JcSdkBulkUserState', 'Get-JcSdkCommandAssociation', - 'Get-JcSdkCommandTraverseSystem', + 'Get-JcSdkApplicationTraverseUserGroup', 'Get-JcSdkApprovalFlow', + 'Get-JcSdkApprovalFlowSetting', 'Get-JcSdkAuthenticationPolicy', + 'Get-JcSdkBulkUsersResult', 'Get-JcSdkBulkUserState', + 'Get-JcSdkCommandAssociation', 'Get-JcSdkCommandTraverseSystem', 'Get-JcSdkCommandTraverseSystemGroup', 'Get-JcSdkCustomEmailConfiguration', 'Get-JcSdkCustomEmailTemplate', 'Get-JcSdkDirectory', 'Get-JcSdkDuoAccount', @@ -195,12 +196,11 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Get-JcSdkUserTraverseLdapServer', 'Get-JcSdkUserTraverseOffice365', 'Get-JcSdkUserTraverseRadiusServer', 'Get-JcSdkUserTraverseSystem', 'Get-JcSdkUserTraverseSystemGroup', 'Get-JcSdkWorkday', - 'Get-JcSdkWorkdayWorker', 'Get-JcSdkWorkflow', - 'Get-JcSdkWorkflowSetting', 'Grant-JcSdkWorkday', 'Import-JcSdkScim', + 'Get-JcSdkWorkdayWorker', 'Grant-JcSdkWorkday', 'Import-JcSdkScim', 'Import-JcSdkWorkday', 'Import-JcSdkWorkdayResult', 'Invoke-JcSdkReclaimSoftwareAppLicense', 'Lock-JcSdkAppleMdmDevice', 'New-JcSdkActiveDirectory', 'New-JcSdkActiveDirectoryAgent', - 'New-JcSdkAdministratorOrganization', + 'New-JcSdkAdministratorOrganization', 'New-JcSdkApprovalFlow', 'New-JcSdkAuthenticationPolicy', 'New-JcSdkBulkUser', 'New-JcSdkBulkUserState', 'New-JcSdkCustomEmailConfiguration', 'New-JcSdkDuoAccount', 'New-JcSdkDuoApplication', @@ -209,22 +209,24 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'New-JcSdkOffice365TranslationRule', 'New-JcSdkPolicy', 'New-JcSdkPolicyGroup', 'New-JcSdkProviderAdministrator', 'New-JcSdkSoftwareApp', 'New-JcSdkSystemGroup', 'New-JcSdkUserGroup', - 'New-JcSdkWorkday', 'New-JcSdkWorkflow', - 'Remove-JcSdkActiveDirectory', 'Remove-JcSdkActiveDirectoryAgent', + 'New-JcSdkWorkday', 'Remove-JcSdkActiveDirectory', + 'Remove-JcSdkActiveDirectoryAgent', 'Remove-JcSdkAdministratorOrganization', 'Remove-JcSdkAppleMdm', 'Remove-JcSdkAppleMdmDevice', 'Remove-JcSdkApplicationLogo', - 'Remove-JcSdkAuthenticationPolicy', 'Remove-JcSdkBulkUserState', - 'Remove-JcSdkCustomEmailConfiguration', 'Remove-JcSdkDuoAccount', - 'Remove-JcSdkDuoApplication', 'Remove-JcSdkGSuiteTranslationRule', - 'Remove-JcSdkIPList', 'Remove-JcSdkLdapServerSambaDomain', + 'Remove-JcSdkApprovalFlow', 'Remove-JcSdkAuthenticationPolicy', + 'Remove-JcSdkBulkUserState', 'Remove-JcSdkCustomEmailConfiguration', + 'Remove-JcSdkDuoAccount', 'Remove-JcSdkDuoApplication', + 'Remove-JcSdkGSuiteTranslationRule', 'Remove-JcSdkIPList', + 'Remove-JcSdkLdapServerSambaDomain', 'Remove-JcSdkOffice365TranslationRule', 'Remove-JcSdkPolicy', 'Remove-JcSdkPolicyGroup', 'Remove-JcSdkProviderAdministrator', 'Remove-JcSdkSoftwareApp', 'Remove-JcSdkSystemGroup', 'Remove-JcSdkUserGroup', 'Remove-JcSdkUserPushEndpoint', - 'Remove-JcSdkWorkdayAuthorization', 'Remove-JcSdkWorkflow', - 'Restart-JcSdkAppleMdmDevice', + 'Remove-JcSdkWorkdayAuthorization', 'Restart-JcSdkAppleMdmDevice', + 'Set-JcSdkAccessRequest', 'Set-JcSdkAccessRequestApproval', 'Set-JcSdkActiveDirectoryAssociation', 'Set-JcSdkAppleMdm', - 'Set-JcSdkApplicationAssociation', 'Set-JcSdkCommandAssociation', + 'Set-JcSdkApplicationAssociation', 'Set-JcSdkApprovalFlow', + 'Set-JcSdkApprovalFlowSetting', 'Set-JcSdkCommandAssociation', 'Set-JcSdkCustomEmailConfiguration', 'Set-JcSdkDuoApplication', 'Set-JcSdkGSuiteAssociation', 'Set-JcSdkIPList', 'Set-JcSdkLdapServerAssociation', 'Set-JcSdkLdapServerSambaDomain', @@ -236,17 +238,12 @@ FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', 'Set-JcSdkSystemGroup', 'Set-JcSdkSystemGroupAssociation', 'Set-JcSdkSystemGroupMember', 'Set-JcSdkUserAssociation', 'Set-JcSdkUserGroup', 'Set-JcSdkUserGroupAssociation', - 'Set-JcSdkUserGroupMember', 'Set-JcSdkWorkday', 'Set-JcSdkWorkflow', - 'Set-JcSdkWorkflowSetting', 'Stop-JcSdkAppleMdmDevice', - 'Sync-JcSdkAppleMdmDevice', + 'Set-JcSdkUserGroupMember', 'Set-JcSdkWorkday', + 'Stop-JcSdkAppleMdmDevice', 'Sync-JcSdkAppleMdmDevice', 'Update-JcSdkAppleMdmDeviceLockInformation', 'Update-JcSdkAuthenticationPolicy', 'Update-JcSdkBulkUser', 'Update-JcSdkGSuite', 'Update-JcSdkIPList', 'Update-JcSdkLdapServer', - 'Update-JcSdkOffice365', 'Update-JcSdkUserPushEndpoint', - 'Get-JcSdkWorkflowAccessRequest', - 'Get-JcSdkWorkflowAccessRequestProgress', - 'Set-JcSdkWorkflowAccessRequest', - 'Set-JcSdkWorkflowUserApprovalRequest' + 'Update-JcSdkOffice365', 'Update-JcSdkUserPushEndpoint' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json index 6b00b3a73..89832eb30 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/JumpCloud.SDK.V2.json @@ -5331,6 +5331,9 @@ "status": { "type": "string" }, + "timeBasedAccess": { + "type": "boolean" + }, "updatedAt": { "type": "string" }, @@ -11698,7 +11701,7 @@ "/approvalflowrequest": { "get": { "description": "Endpoint for getting the list of workflows access requests", - "operationId": "WorkflowAccessRequest_List", + "operationId": "AccessRequest_List", "parameters": [ { "format": "byte", @@ -11782,7 +11785,7 @@ "/approvalflowrequest/{id}": { "get": { "description": "Endpoint that returns the workflow access request by id", - "operationId": "WorkflowAccessRequest_Get", + "operationId": "AccessRequest_Get", "parameters": [ { "in": "path", @@ -11830,7 +11833,7 @@ }, "put": { "description": "Endpoint that updates the workflow access request by id", - "operationId": "WorkflowAccessRequest_Set", + "operationId": "AccessRequest_Set", "parameters": [ { "in": "path", @@ -11902,7 +11905,7 @@ "/approvalflows": { "get": { "description": "Endpoint for getting all access workflows ", - "operationId": "Workflow_List", + "operationId": "ApprovalFlow_List", "parameters": [ { "format": "byte", @@ -11984,7 +11987,7 @@ }, "post": { "description": "Endpoint for adding a new access workflow", - "operationId": "Workflow_Create", + "operationId": "ApprovalFlow_Create", "parameters": [ { "in": "body", @@ -12029,7 +12032,7 @@ "/approvalflows/{approvalFlowId}": { "delete": { "description": "Endpoint for deleting accessworkflow by id", - "operationId": "Workflow_Delete", + "operationId": "ApprovalFlow_Delete", "parameters": [ { "in": "path", @@ -12077,7 +12080,7 @@ }, "get": { "description": "Endpoint for getting workflow by id", - "operationId": "Workflow_Get", + "operationId": "ApprovalFlow_Get", "parameters": [ { "in": "path", @@ -12125,7 +12128,7 @@ }, "put": { "description": "Endpoint for updating a new access workflow", - "operationId": "Workflow_Set", + "operationId": "ApprovalFlow_Set", "parameters": [ { "in": "path", @@ -12245,7 +12248,7 @@ "/approvalflowsettings": { "get": { "description": "Endpoint for getting workflow settings for an organisation", - "operationId": "WorkflowSettings_Get", + "operationId": "ApprovalFlowSettings_Get", "parameters": [ { "format": "byte", @@ -12287,7 +12290,7 @@ }, "put": { "description": "Endpoint for updating a access workflow settings for an organization", - "operationId": "WorkflowSettings_Set", + "operationId": "ApprovalFlowSettings_Set", "parameters": [ { "in": "body", @@ -12332,7 +12335,7 @@ "/approversprogress/{id}": { "get": { "description": "Endpoint for getting the approval progress of a access request", - "operationId": "WorkflowAccessRequestProgress_Get", + "operationId": "AccessRequestProgress_Get", "parameters": [ { "in": "path", @@ -24799,7 +24802,7 @@ "/userapprovalrequest": { "post": { "description": "Endpoint for user approval", - "operationId": "WorkflowUserApprovalRequest_Set", + "operationId": "AccessRequestApproval_Set", "parameters": [ { "in": "body", diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 similarity index 95% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 index 0154f07ce..8220d6521 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 @@ -4,9 +4,9 @@ Endpoint that returns the workflow access request by id .Description Endpoint that returns the workflow access request by id .Example -Get-JcSdkWorkflowAccessRequest -Id:() +{{ Add code here }} .Example -Get-JcSdkWorkflowAccessRequest -Fields:() -Filter:() -Sort:() +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity @@ -45,9 +45,9 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md #> - Function Get-JcSdkWorkflowAccessRequest + Function Get-JcSdkAccessRequest { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetWorkflowAccessRequestResponse], [JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllWorkflowAccessRequestResponse])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] @@ -176,7 +176,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError @@ -214,7 +214,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 similarity index 96% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 index 0b7d3a1a0..d01caa4e6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowAccessRequestProgress.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 @@ -4,7 +4,9 @@ Endpoint for getting the approval progress of a access request .Description Endpoint for getting the approval progress of a access request .Example -Get-JcSdkWorkflowAccessRequestProgress -Id:() +{{ Add code here }} +.Example +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity @@ -41,9 +43,9 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md #> - Function Get-JcSdkWorkflowAccessRequestProgress + Function Get-JcSdkAccessRequestProgress { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAccessRequestApprovalProgressResponse])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] @@ -134,7 +136,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowAccessRequestProgress @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalAccessRequestProgress @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 similarity index 96% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 index 595ec809c..c80aa7861 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 @@ -4,9 +4,9 @@ Endpoint for getting workflow by id .Description Endpoint for getting workflow by id .Example -Get-JcSdkWorkflow -ApprovalFlowId:() +{{ Add code here }} .Example -Get-JcSdkWorkflow -Fields:() -Filter:() -Sort:() +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity @@ -45,9 +45,9 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md #> - Function Get-JcSdkWorkflow + Function Get-JcSdkApprovalFlow { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflow], [JumpCloud.SDK.V2.Models.IJumpcloudIngressoGetAllAccessWorkFlowsResponse])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] @@ -176,7 +176,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalApprovalFlow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError @@ -214,7 +214,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalApprovalFlow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 similarity index 95% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 index d1d8c81bf..858370c36 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkflowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 @@ -4,14 +4,16 @@ Endpoint for getting workflow settings for an organisation .Description Endpoint for getting workflow settings for an organisation .Example -Get-JcSdkWorkflowSetting +{{ Add code here }} +.Example +{{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md #> - Function Get-JcSdkWorkflowSetting + Function Get-JcSdkApprovalFlowSetting { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] @@ -90,7 +92,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalWorkflowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Result = JumpCloud.SDK.V2.internal\Get-JcSdkInternalApprovalFlowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 similarity index 94% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 index 6952758ed..53b6c93f7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 @@ -4,7 +4,9 @@ Endpoint for adding a new access workflow .Description Endpoint for adding a new access workflow .Example -New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +{{ Add code here }} +.Example +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest @@ -53,9 +55,9 @@ BODY : SLACKCONFIG : [SlackResourceId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md #> - Function New-JcSdkWorkflow + Function New-JcSdkApprovalFlow { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowResponse])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] @@ -257,7 +259,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Results = JumpCloud.SDK.V2.internal\New-JcSdkInternalApprovalFlow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 similarity index 97% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 index ffa666dcb..5cfc4fea1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 @@ -4,7 +4,7 @@ Endpoint for deleting accessworkflow by id .Description Endpoint for deleting accessworkflow by id .Example -Remove-JcSdkWorkflow -ApprovalFlowId:() +{{ Add code here }} .Example {{ Add code here }} @@ -43,9 +43,9 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md #> - Function Remove-JcSdkWorkflow + Function Remove-JcSdkApprovalFlow { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoDeleteAccessWorkflowResponse])] [CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] @@ -136,7 +136,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\Remove-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Results = JumpCloud.SDK.V2.internal\Remove-JcSdkInternalApprovalFlow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 similarity index 93% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 index c4267ceb4..d8e801486 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 @@ -4,9 +4,9 @@ Endpoint that set the workflow access request by id .Description Endpoint that set the workflow access request by id .Example -Set-JcSdkWorkflowAccessRequest -Id:() -Body:() +{{ Add code here }} .Example -Set-JcSdkWorkflowAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity @@ -53,9 +53,9 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md #> - Function Set-JcSdkWorkflowAccessRequest + Function Set-JcSdkAccessRequest { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateWorkflowAccessRequestResponse])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] @@ -190,7 +190,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflowAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalAccessRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 similarity index 92% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 index e4202b105..3a032ff34 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowUserApprovalRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 @@ -4,9 +4,9 @@ Endpoint for user approval .Description Endpoint for user approval .Example -Set-JcSdkWorkflowUserApprovalRequest -Body:() +{{ Add code here }} .Example -Set-JcSdkWorkflowUserApprovalRequest -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest @@ -24,9 +24,9 @@ BODY : [Remarks ]: [Status ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md #> - Function Set-JcSdkWorkflowUserApprovalRequest + Function Set-JcSdkAccessRequestApproval { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequestResponse])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] @@ -134,7 +134,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflowUserApprovalRequest @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalAccessRequestApproval @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 similarity index 92% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 index 98bfbebb4..e27194fef 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 @@ -4,9 +4,9 @@ Endpoint for updating a new access workflow .Description Endpoint for updating a new access workflow .Example -Set-JcSdkWorkflow -ApprovalFlowId:() -Body:() +{{ Add code here }} .Example -Set-JcSdkWorkflow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity @@ -81,9 +81,9 @@ INPUTOBJECT : SLACKCONFIG : [SlackResourceId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md #> - Function Set-JcSdkWorkflow + Function Set-JcSdkApprovalFlow { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowResponse])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] @@ -306,7 +306,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalApprovalFlow @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 similarity index 92% rename from SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 index 218eabfad..5caae90eb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkflowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 @@ -4,9 +4,9 @@ Endpoint for updating a access workflow settings for an organization .Description Endpoint for updating a access workflow settings for an organization .Example -Set-JcSdkWorkflowSetting -Body:() +{{ Add code here }} .Example -Set-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() +{{ Add code here }} .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest @@ -32,9 +32,9 @@ CHANNELEVENTS : [ChannelObjectId ]: [EventTypes >]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md #> - Function Set-JcSdkWorkflowSetting + Function Set-JcSdkApprovalFlowSetting { [OutputType([JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsResponse])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] @@ -155,7 +155,7 @@ https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SD $resultCounter = 0 :retryLoop do { $resultCounter++ - $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalWorkflowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError + $Results = JumpCloud.SDK.V2.internal\Set-JcSdkInternalApprovalFlowSetting @PSBoundParameters -errorAction SilentlyContinue -errorVariable sdkError If ($sdkError){ If ($resultCounter -eq $maxRetries){ throw $sdkError diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md similarity index 90% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md index 44a2e3bb1..dd42a595a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequest.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md schema: 2.0.0 --- -# Get-JcSdkWorkflowAccessRequest +# Get-JcSdkAccessRequest ## SYNOPSIS Endpoint that returns the workflow access request by id @@ -14,19 +14,19 @@ Endpoint that returns the workflow access request by id ### List (Default) ``` -Get-JcSdkWorkflowAccessRequest -ConsoleHost [-Fields >] [-Filter >] +Get-JcSdkAccessRequest -ConsoleHost [-Fields >] [-Filter >] [-OrganizationObjectId ] [-Sort ] [] ``` ### Get ``` -Get-JcSdkWorkflowAccessRequest -ConsoleHost -Id [-OrganizationObjectId ] +Get-JcSdkAccessRequest -ConsoleHost -Id [-OrganizationObjectId ] [] ``` ### GetViaIdentity ``` -Get-JcSdkWorkflowAccessRequest -ConsoleHost -InputObject +Get-JcSdkAccessRequest -ConsoleHost -InputObject [-OrganizationObjectId ] [] ``` @@ -37,14 +37,14 @@ Endpoint that returns the workflow access request by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) +{{ Add code here }} ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -) -Filter:() -Sort:() +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md similarity index 89% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md index 84e9777d0..920a067d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowAccessRequestProgress.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md schema: 2.0.0 --- -# Get-JcSdkWorkflowAccessRequestProgress +# Get-JcSdkAccessRequestProgress ## SYNOPSIS Endpoint for getting the approval progress of a access request @@ -14,13 +14,13 @@ Endpoint for getting the approval progress of a access request ### Get (Default) ``` -Get-JcSdkWorkflowAccessRequestProgress -ConsoleHost -Id [-OrganizationObjectId ] +Get-JcSdkAccessRequestProgress -ConsoleHost -Id [-OrganizationObjectId ] [] ``` ### GetViaIdentity ``` -Get-JcSdkWorkflowAccessRequestProgress -ConsoleHost -InputObject +Get-JcSdkAccessRequestProgress -ConsoleHost -InputObject [-OrganizationObjectId ] [] ``` @@ -31,7 +31,14 @@ Endpoint for getting the approval progress of a access request ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md similarity index 90% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md index 2f89bf5ad..40a55cf91 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md schema: 2.0.0 --- -# Get-JcSdkWorkflow +# Get-JcSdkApprovalFlow ## SYNOPSIS Endpoint for getting workflow by id @@ -14,20 +14,20 @@ Endpoint for getting workflow by id ### List (Default) ``` -Get-JcSdkWorkflow -ConsoleHost [-Fields >] [-Filter >] +Get-JcSdkApprovalFlow -ConsoleHost [-Fields >] [-Filter >] [-OrganizationObjectId ] [-Sort ] [] ``` ### Get ``` -Get-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-OrganizationObjectId ] +Get-JcSdkApprovalFlow -ConsoleHost -ApprovalFlowId [-OrganizationObjectId ] [] ``` ### GetViaIdentity ``` -Get-JcSdkWorkflow -ConsoleHost -InputObject [-OrganizationObjectId ] - [] +Get-JcSdkApprovalFlow -ConsoleHost -InputObject + [-OrganizationObjectId ] [] ``` ## DESCRIPTION @@ -37,14 +37,14 @@ Endpoint for getting workflow by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) +{{ Add code here }} ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -) -Filter:() -Sort:() +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md similarity index 82% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md index ef2e58e1c..64fc77bf7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkflowSetting.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md schema: 2.0.0 --- -# Get-JcSdkWorkflowSetting +# Get-JcSdkApprovalFlowSetting ## SYNOPSIS Endpoint for getting workflow settings for an organisation @@ -13,7 +13,7 @@ Endpoint for getting workflow settings for an organisation ## SYNTAX ``` -Get-JcSdkWorkflowSetting -ConsoleHost [-OrganizationObjectId ] [] +Get-JcSdkApprovalFlowSetting -ConsoleHost [-OrganizationObjectId ] [] ``` ## DESCRIPTION @@ -23,7 +23,14 @@ Endpoint for getting workflow settings for an organisation ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -Get-JcSdkWorkflowSetting +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md index 78e1d9fdf..cbbf705b1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md @@ -35,6 +35,12 @@ Clears the activation lock on the specified device. -d '{}' ``` +### [Get-JcSdkAccessRequest](Get-JcSdkAccessRequest.md) +Endpoint that returns the workflow access request by id + +### [Get-JcSdkAccessRequestProgress](Get-JcSdkAccessRequestProgress.md) +Endpoint for getting the approval progress of a access request + ### [Get-JcSdkActiveDirectory](Get-JcSdkActiveDirectory.md) This endpoint returns a specific Active Directory. @@ -204,6 +210,12 @@ curl -X GET https://console.jumpcloud.com/api/v2/applications/{Application_ID}/u -H 'x-api-key: {API_KEY}' ``` +### [Get-JcSdkApprovalFlow](Get-JcSdkApprovalFlow.md) +Endpoint for getting workflow by id + +### [Get-JcSdkApprovalFlowSetting](Get-JcSdkApprovalFlowSetting.md) +Endpoint for getting workflow settings for an organisation + ### [Get-JcSdkAuthenticationPolicy](Get-JcSdkAuthenticationPolicy.md) Return a specific authentication policy. @@ -1888,18 +1900,6 @@ curl -X GET https://console.jumpcloud.com/api/v2/workdays/{WorkDayID}/workers \\ ``` -### [Get-JcSdkWorkflow](Get-JcSdkWorkflow.md) -Endpoint for getting workflow by id - -### [Get-JcSdkWorkflowAccessRequest](Get-JcSdkWorkflowAccessRequest.md) -Endpoint that returns the workflow access request by id - -### [Get-JcSdkWorkflowAccessRequestProgress](Get-JcSdkWorkflowAccessRequestProgress.md) -Endpoint for getting the approval progress of a access request - -### [Get-JcSdkWorkflowSetting](Get-JcSdkWorkflowSetting.md) -Endpoint for getting workflow settings for an organisation - ### [Grant-JcSdkWorkday](Grant-JcSdkWorkday.md) This endpoint adds an authorization method to a workday instance. @@ -2019,6 +2019,9 @@ curl -X POST https://console.jumpcloud.com/api/v2/activedirectories/{activedirec ### [New-JcSdkAdministratorOrganization](New-JcSdkAdministratorOrganization.md) This endpoint allows you to grant Administrator access to an Organization. +### [New-JcSdkApprovalFlow](New-JcSdkApprovalFlow.md) +Endpoint for adding a new access workflow + ### [New-JcSdkAuthenticationPolicy](New-JcSdkAuthenticationPolicy.md) Create an authentication policy. @@ -2326,9 +2329,6 @@ curl -X POST https://console.jumpcloud.com/api/v2/workdays/ \\ }' ``` -### [New-JcSdkWorkflow](New-JcSdkWorkflow.md) -Endpoint for adding a new access workflow - ### [Remove-JcSdkActiveDirectory](Remove-JcSdkActiveDirectory.md) This endpoint allows you to delete an Active Directory Instance. @@ -2381,6 +2381,9 @@ Remove a single Apple MDM device from MDM enrollment. ### [Remove-JcSdkApplicationLogo](Remove-JcSdkApplicationLogo.md) Deletes the specified image from an application +### [Remove-JcSdkApprovalFlow](Remove-JcSdkApprovalFlow.md) +Endpoint for deleting accessworkflow by id + ### [Remove-JcSdkAuthenticationPolicy](Remove-JcSdkAuthenticationPolicy.md) Delete the specified authentication policy. @@ -2554,9 +2557,6 @@ curl -X DELETE https://console.jumpcloud.com/api/v2/workdays/{WorkDayID}/auth \\ -H 'x-api-key: {API_KEY}' ``` -### [Remove-JcSdkWorkflow](Remove-JcSdkWorkflow.md) -Endpoint for deleting accessworkflow by id - ### [Restart-JcSdkAppleMdmDevice](Restart-JcSdkAppleMdmDevice.md) Restarts a DEP-enrolled device. @@ -2569,6 +2569,12 @@ Restarts a DEP-enrolled device. -d '{\"kextPaths\": [\"Path1\", \"Path2\"]}' ``` +### [Set-JcSdkAccessRequest](Set-JcSdkAccessRequest.md) +Endpoint that set the workflow access request by id + +### [Set-JcSdkAccessRequestApproval](Set-JcSdkAccessRequestApproval.md) +Endpoint for user approval + ### [Set-JcSdkActiveDirectoryAssociation](Set-JcSdkActiveDirectoryAssociation.md) This endpoint allows you to manage the _direct_ associations of an Active Directory instance. @@ -2629,6 +2635,12 @@ curl -X POST 'https://console.jumpcloud.com/api/v2/applications/{Application_ID} }' ``` +### [Set-JcSdkApprovalFlow](Set-JcSdkApprovalFlow.md) +Endpoint for updating a new access workflow + +### [Set-JcSdkApprovalFlowSetting](Set-JcSdkApprovalFlowSetting.md) +Endpoint for updating a access workflow settings for an organization + ### [Set-JcSdkCommandAssociation](Set-JcSdkCommandAssociation.md) This endpoint will allow you to manage the _direct_ associations of this Command. @@ -3105,18 +3117,6 @@ curl -X PUT https://console.jumpcloud.com/api/v2/workdays/{WorkdayID} \\ }\t' ``` -### [Set-JcSdkWorkflow](Set-JcSdkWorkflow.md) -Endpoint for updating a new access workflow - -### [Set-JcSdkWorkflowAccessRequest](Set-JcSdkWorkflowAccessRequest.md) -Endpoint that set the workflow access request by id - -### [Set-JcSdkWorkflowSetting](Set-JcSdkWorkflowSetting.md) -Endpoint for updating a access workflow settings for an organization - -### [Set-JcSdkWorkflowUserApprovalRequest](Set-JcSdkWorkflowUserApprovalRequest.md) -Endpoint for user approval - ### [Stop-JcSdkAppleMdmDevice](Stop-JcSdkAppleMdmDevice.md) Shuts down a DEP-enrolled device. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md similarity index 93% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md index cb7e4ef5d..ed009bd6f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkflow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md schema: 2.0.0 --- -# New-JcSdkWorkflow +# New-JcSdkApprovalFlow ## SYNOPSIS Endpoint for adding a new access workflow @@ -14,7 +14,7 @@ Endpoint for adding a new access workflow ### CreateExpanded (Default) ``` -New-JcSdkWorkflow -ConsoleHost [-ApprovalType ] [-ApproverRequirement ] +New-JcSdkApprovalFlow -ConsoleHost [-ApprovalType ] [-ApproverRequirement ] [-ApproverResources ] [-Category ] [-Description ] [-FixedDuration ] [-IconColor ] [-IconUrl ] [-MultiSelectDuration ] [-Name ] [-NonAdminApproval] [-OrganizationObjectIdInputFile ] [-ResourceId ] @@ -24,7 +24,7 @@ New-JcSdkWorkflow -ConsoleHost [-ApprovalType ] [-ApproverRequi ### Create ``` -New-JcSdkWorkflow -ConsoleHost -Body [-Confirm] +New-JcSdkApprovalFlow -ConsoleHost -Body [-Confirm] [-WhatIf] [] ``` @@ -35,7 +35,14 @@ Endpoint for adding a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +{{ Add code here }} +``` + + + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md similarity index 93% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md index 54b896d9a..5ef2f8c10 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkflow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md schema: 2.0.0 --- -# Remove-JcSdkWorkflow +# Remove-JcSdkApprovalFlow ## SYNOPSIS Endpoint for deleting accessworkflow by id @@ -14,13 +14,13 @@ Endpoint for deleting accessworkflow by id ### Delete (Default) ``` -Remove-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-OrganizationObjectId ] +Remove-JcSdkApprovalFlow -ConsoleHost -ApprovalFlowId [-OrganizationObjectId ] [-Confirm] [-WhatIf] [] ``` ### DeleteViaIdentity ``` -Remove-JcSdkWorkflow -ConsoleHost -InputObject +Remove-JcSdkApprovalFlow -ConsoleHost -InputObject [-OrganizationObjectId ] [-Confirm] [-WhatIf] [] ``` @@ -31,7 +31,7 @@ Endpoint for deleting accessworkflow by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md similarity index 88% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md index 5bfbf9968..dc782ca79 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowAccessRequest.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md schema: 2.0.0 --- -# Set-JcSdkWorkflowAccessRequest +# Set-JcSdkAccessRequest ## SYNOPSIS Endpoint that set the workflow access request by id @@ -14,28 +14,28 @@ Endpoint that set the workflow access request by id ### SetExpanded (Default) ``` -Set-JcSdkWorkflowAccessRequest -ConsoleHost -Id [-Admin ] - [-ApprovedDuration ] [-InternalNote ] [-OrganizationObjectIdInputFile ] - [-Remarks ] [-Status ] [-Confirm] [-WhatIf] [] +Set-JcSdkAccessRequest -ConsoleHost -Id [-Admin ] [-ApprovedDuration ] + [-InternalNote ] [-OrganizationObjectIdInputFile ] [-Remarks ] [-Status ] + [-Confirm] [-WhatIf] [] ``` ### Set ``` -Set-JcSdkWorkflowAccessRequest -ConsoleHost -Id +Set-JcSdkAccessRequest -ConsoleHost -Id -Body [-Confirm] [-WhatIf] [] ``` ### SetViaIdentity ``` -Set-JcSdkWorkflowAccessRequest -ConsoleHost -InputObject +Set-JcSdkAccessRequest -ConsoleHost -InputObject -Body [-Confirm] [-WhatIf] [] ``` ### SetViaIdentityExpanded ``` -Set-JcSdkWorkflowAccessRequest -ConsoleHost -InputObject [-Admin ] +Set-JcSdkAccessRequest -ConsoleHost -InputObject [-Admin ] [-ApprovedDuration ] [-InternalNote ] [-OrganizationObjectIdInputFile ] [-Remarks ] [-Status ] [-Confirm] [-WhatIf] [] ``` @@ -47,14 +47,14 @@ Endpoint that set the workflow access request by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) -Body:() +{{ Add code here }} ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -) -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md similarity index 89% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md index ddddb4bab..918cd3e1b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowUserApprovalRequest.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md schema: 2.0.0 --- -# Set-JcSdkWorkflowUserApprovalRequest +# Set-JcSdkAccessRequestApproval ## SYNOPSIS Endpoint for user approval @@ -14,15 +14,15 @@ Endpoint for user approval ### SetExpanded (Default) ``` -Set-JcSdkWorkflowUserApprovalRequest -ConsoleHost [-ApprovedDuration ] [-Id ] +Set-JcSdkAccessRequestApproval -ConsoleHost [-ApprovedDuration ] [-Id ] [-OrganizationObjectIdInputFile ] [-Remarks ] [-Status ] [-Confirm] [-WhatIf] [] ``` ### Set ``` -Set-JcSdkWorkflowUserApprovalRequest -ConsoleHost -Body - [-Confirm] [-WhatIf] [] +Set-JcSdkAccessRequestApproval -ConsoleHost -Body [-Confirm] + [-WhatIf] [] ``` ## DESCRIPTION @@ -32,14 +32,14 @@ Endpoint for user approval ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) +{{ Add code here }} ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -) -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md similarity index 91% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md index dfc19854c..f6f21be0b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md schema: 2.0.0 --- -# Set-JcSdkWorkflow +# Set-JcSdkApprovalFlow ## SYNOPSIS Endpoint for updating a new access workflow @@ -14,7 +14,7 @@ Endpoint for updating a new access workflow ### SetExpanded (Default) ``` -Set-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-ApprovalType ] +Set-JcSdkApprovalFlow -ConsoleHost -ApprovalFlowId [-ApprovalType ] [-ApproverRequirement ] [-ApproverResources ] [-Description ] [-FixedDuration ] [-IconColor ] [-IconUrl ] [-MultiSelectDuration ] [-Name ] [-NonAdminApproval] @@ -25,21 +25,21 @@ Set-JcSdkWorkflow -ConsoleHost -ApprovalFlowId [-ApprovalType ### Set ``` -Set-JcSdkWorkflow -ConsoleHost -ApprovalFlowId +Set-JcSdkApprovalFlow -ConsoleHost -ApprovalFlowId -Body [-Confirm] [-WhatIf] [] ``` ### SetViaIdentity ``` -Set-JcSdkWorkflow -ConsoleHost -InputObject +Set-JcSdkApprovalFlow -ConsoleHost -InputObject -Body [-Confirm] [-WhatIf] [] ``` ### SetViaIdentityExpanded ``` -Set-JcSdkWorkflow -ConsoleHost -InputObject [-ApprovalType ] +Set-JcSdkApprovalFlow -ConsoleHost -InputObject [-ApprovalType ] [-ApproverRequirement ] [-ApproverResources ] [-Description ] [-FixedDuration ] [-IconColor ] [-IconUrl ] [-MultiSelectDuration ] [-Name ] [-NonAdminApproval] @@ -55,14 +55,14 @@ Endpoint for updating a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) -Body:() +{{ Add code here }} ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -) -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md similarity index 90% rename from SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md index 193a89109..7f66a0735 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md @@ -1,11 +1,11 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkflowSetting.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md schema: 2.0.0 --- -# Set-JcSdkWorkflowSetting +# Set-JcSdkApprovalFlowSetting ## SYNOPSIS Endpoint for updating a access workflow settings for an organization @@ -14,7 +14,7 @@ Endpoint for updating a access workflow settings for an organization ### SetExpanded (Default) ``` -Set-JcSdkWorkflowSetting -ConsoleHost [-AdminApprovalEmail] +Set-JcSdkApprovalFlowSetting -ConsoleHost [-AdminApprovalEmail] [-ChannelEvents ] [-ExposeApprovalProgress] [-OrganizationObjectIdInputFile ] [-ResourceRequest] [-UserApprovalEmail] [-UserRequestEmail] [-Confirm] [-WhatIf] [] @@ -22,8 +22,8 @@ Set-JcSdkWorkflowSetting -ConsoleHost [-AdminApprovalEmail] ### Set ``` -Set-JcSdkWorkflowSetting -ConsoleHost -Body - [-Confirm] [-WhatIf] [] +Set-JcSdkApprovalFlowSetting -ConsoleHost + -Body [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -33,14 +33,14 @@ Endpoint for updating a access workflow settings for an organization ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -) +{{ Add code here }} ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -) -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() +{{ Add code here }} ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md similarity index 78% rename from SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md index 50ca73872..762ee50a6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md @@ -1,6 +1,6 @@ -### Example 1: Get a WorkflowAccessRequest by Id +### Example 1: Get an AccessRequest by Id ```powershell -Get-JcSdkWorkflowAccessRequest -Id:() +Get-JcSdkAccessRequest -Id:() ``` ```output @@ -28,11 +28,11 @@ UserName : Default Admin WfMetadata : {123, 125} ``` -This function will Get a WorkflowAccessRequest by Id. Id is a required parameter. +This function will Get an AccessRequest by Id. Id is a required parameter. -### Example 2: List WorkflowAccessRequests +### Example 2: List AccessRequests ```powershell -Get-JcSdkWorkflowAccessRequest -Fields:() -Filter:() -Sort:() +Get-JcSdkAccessRequest -Fields:() -Filter:() -Sort:() ``` ```output @@ -60,5 +60,5 @@ UserName : Default Admin WfMetadata : {123, 125} ``` -This function will return a list of all WorkflowAccessRequests. Fields, Filter, and Sort are optional parameters. +This function will return a list of all AccessRequests. Fields, Filter, and Sort are optional parameters. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md new file mode 100644 index 000000000..e6bb08311 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md @@ -0,0 +1,7 @@ +### Example 1: Get an AccessRequestProgress by Id +```powershell +Get-JcSdkAccessRequestProgress -Id:() +``` + +This function will Get an AccessRequestProgress by Id. Id is a required parameter. + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md similarity index 69% rename from SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md index d8698e269..7cc6640a0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md @@ -1,6 +1,6 @@ -### Example 1: Get a Workflow by ApprovalFlowId +### Example 1: Get an ApprovalFlow by ApprovalFlowId ```powershell -Get-JcSdkWorkflow -ApprovalFlowId:() +Get-JcSdkApprovalFlow -ApprovalFlowId:() ``` ```output @@ -9,7 +9,7 @@ ApproverRequirement : ApproverResources : {} Category : Application CreatedBy : 5d643a77600577710a5e6113 -Description : Workflow testing +Description : Approval Flow testing FixedDuration : IconColor : #006CAC IconUrl : @@ -28,11 +28,11 @@ UpdatedBy : 5d643a77600577710a5e6113 VisibleTo : {Default Admin, Radius} ``` -This function will Get a Workflow by ApprovalFlowId. ApprovalFlowId is a required parameter. +This function will Get an ApprovalFlow by ApprovalFlowId. ApprovalFlowId is a required parameter. -### Example 2: List Workflows +### Example 2: List ApprovalFlow ```powershell -Get-JcSdkWorkflow -Fields:() -Filter:() -Sort:() +Get-JcSdkApprovalFlow -Fields:() -Filter:() -Sort:() ``` ```output @@ -41,13 +41,13 @@ ApproverRequirement : ApproverResources : {} Category : Application CreatedBy : 5d643a77600577710a5e6113 -Description : Workflow testing +Description : Approval Flow testing FixedDuration : IconColor : #006CAC IconUrl : Id : 67c5f44e2d72ba0001b6890b MultiSelectDuration : {} -Name : Test Workflow +Name : Test Approval Flow NonAdminApproval : False OrganizationId : {93, 100, 58, 119…} Resources : {Radius2} @@ -60,5 +60,5 @@ UpdatedBy : 5d643a77600577710a5e6113 VisibleTo : {Default Admin, Radius} ``` -This function will return a list of all Workflows. Fields, Filter, and Sort are optional parameters. +This function will return a list of all ApprovalFlows. Fields, Filter, and Sort are optional parameters. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md similarity index 74% rename from SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md index 0ea24e519..5b187ffe3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md @@ -1,6 +1,6 @@ -### Example 1: Get a WorkflowSetting by +### Example 1: Get an ApprovalFlowSetting by ```powershell -Get-JcSdkWorkflowSetting +Get-JcSdkApprovalFlowSetting ``` ```output @@ -15,4 +15,4 @@ UserApprovalEmail : True UserRequestEmail : True ``` -This function will Get a WorkflowSetting \ No newline at end of file +This function will Get an ApprovalFlowSetting \ No newline at end of file diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md deleted file mode 100644 index d276ee998..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkWorkflowAccessRequestProgress.md +++ /dev/null @@ -1,7 +0,0 @@ -### Example 1: Get a WorkflowAccessRequestProgress by Id -```powershell -Get-JcSdkWorkflowAccessRequestProgress -Id:() -``` - -This function will Get a WorkflowAccessRequestProgress by Id. Id is a required parameter. - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md new file mode 100644 index 000000000..c9eff83a0 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md @@ -0,0 +1,12 @@ +### Example 1: Create an ApprovalFlow +```powershell +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +``` + +```output +Id +-- +698cba2ed5a55800019f4aae +``` + +This function will Create an Approval Flow \ No newline at end of file diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md deleted file mode 100644 index 7df454ed8..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflow.md +++ /dev/null @@ -1,12 +0,0 @@ -### Example 1: Create a Workflow -```powershell -New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') -``` - -```output -Id --- -698cba2ed5a55800019f4aae -``` - -This function will Create a Workflow \ No newline at end of file diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md deleted file mode 100644 index 992e5ee19..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkWorkflowSetting.md +++ /dev/null @@ -1,21 +0,0 @@ -### Example 1: Create a WorkflowSetting -```powershell -New-JcSdkWorkflowSetting -Body:() -``` -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Create a WorkflowSetting by Body. Body is a required parameter. - -### Example 2: Create a WorkflowSetting by -```powershell -New-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Create a WorkflowSetting by . - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md similarity index 62% rename from SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md rename to SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md index 35f60952d..0371f56c3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkWorkflow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md @@ -1,13 +1,13 @@ -### Example 1: Remove a Workflow by ApprovalFlowId +### Example 1: {{ Add title here }} ```powershell -Remove-JcSdkWorkflow -ApprovalFlowId:() +{{ Add code here }} ``` ```output {{ Add output here (remove the output block if the example doesn't have an output) }} ``` -This function will Remove a Workflow by ApprovalFlowId. ApprovalFlowId is a required parameter. +{{ Add description here }} ### Example 2: {{ Add title here }} ```powershell diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md new file mode 100644 index 000000000..0371f56c3 --- /dev/null +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md @@ -0,0 +1,22 @@ +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md deleted file mode 100644 index b2f4e667c..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflow.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: Set a Workflow by ApprovalFlowId, and Body -```powershell -Set-JcSdkWorkflow -ApprovalFlowId:() -Body:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a Workflow by ApprovalFlowId Body. ApprovalFlowId, and Body are required parameters. - -### Example 2: Set a Workflow by ApprovalFlowId -```powershell -Set-JcSdkWorkflow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a Workflow by ApprovalFlowId. ApprovalFlowId is a required parameter. - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md deleted file mode 100644 index fcf43cb0b..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowAccessRequest.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: Set a WorkflowAccessRequest by Id, and Body -```powershell -Set-JcSdkWorkflowAccessRequest -Id:() -Body:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a WorkflowAccessRequest by Id Body. Id, and Body are required parameters. - -### Example 2: Set a WorkflowAccessRequest by Id -```powershell -Set-JcSdkWorkflowAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a WorkflowAccessRequest by Id. Id is a required parameter. - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md deleted file mode 100644 index ccbd50eb8..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowSetting.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: Set a WorkflowSetting by Body -```powershell -Set-JcSdkWorkflowSetting -Body:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a WorkflowSetting by Body. Body is a required parameter. - -### Example 2: Set a WorkflowSetting by -```powershell -Set-JcSdkWorkflowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a WorkflowSetting by . - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md deleted file mode 100644 index 15505a084..000000000 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkWorkflowUserApprovalRequest.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: Set a WorkflowUserApprovalRequest by Body -```powershell -Set-JcSdkWorkflowUserApprovalRequest -Body:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a WorkflowUserApprovalRequest by Body. Body is a required parameter. - -### Example 2: Set a WorkflowUserApprovalRequest by -```powershell -Set-JcSdkWorkflowUserApprovalRequest -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() -``` - -```output -{{ Add output here (remove the output block if the example doesn't have an output) }} -``` - -This function will Set a WorkflowUserApprovalRequest by . - diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkAccessRequest.Tests.ps1 similarity index 72% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkAccessRequest.Tests.ps1 index 895f3be00..59e7f392b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequest.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkAccessRequest.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessRequest')) +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkAccessRequest')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflowAccessRequest.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkAccessRequest.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,13 +14,13 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessReques . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Get-JcSdkWorkflowAccessRequest' { +Describe 'Get-JcSdkAccessRequest' { It 'List' { - { Get-JcSdkWorkflowAccessRequest } | Should -Not -Throw + { Get-JcSdkAccessRequest } | Should -Not -Throw } It 'List should return actual access requests if they exist' { - $accessRequests = Get-JcSdkWorkflowAccessRequest + $accessRequests = Get-JcSdkAccessRequest if ($null -eq $accessRequests){ # can't create workflows without logging in as a user, skip test continue diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkAccessRequestProgress.Tests.ps1 similarity index 68% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkAccessRequestProgress.Tests.ps1 index 28e0c397e..f39f6dd0b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowAccessRequestProgress.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkAccessRequestProgress.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessRequestProgress')) +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkAccessRequestProgress')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflowAccessRequestProgress.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkAccessRequestProgress.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,15 +14,15 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowAccessReques . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Get-JcSdkWorkflowAccessRequestProgress' { +Describe 'Get-JcSdkAccessRequestProgress' { It 'Get' { - $workflows = Get-JcSdkWorkflow + $workflows = Get-JcSdkApprovalFlow if ($null -eq $workflows){ # can't create workflows without logging in as a user, skip test continue } else { $workflow = $workflows | Get-Random -Count 1 - $progress = Get-JcSdkWorkflowAccessRequestProgress -Id $workflow.Id + $progress = Get-JcSdkAccessRequestProgress -Id $workflow.Id $progress | Should -Not -BeNullOrEmpty $progress.Count | Should -Be 1 } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 similarity index 83% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 index 3ab16bdc0..ad79f7f2d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflow')) +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkApprovalFlow')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflow.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkApprovalFlow.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,13 +14,13 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Get-JcSdkWorkflow' { +Describe 'Get-JcSdkApprovalFlow' { It 'List' { - { Get-JcSdkWorkflow } | Should -Not -Throw + { Get-JcSdkApprovalFlow } | Should -Not -Throw } It 'List should return actual workflows if they exist' { - $workflows = Get-JcSdkWorkflow + $workflows = Get-JcSdkApprovalFlow if ($null -eq $workflows){ # create a workflow with new-jcsdkworkflow $userGroups = Get-JcSdkUserGroup @@ -38,13 +38,13 @@ Describe 'Get-JcSdkWorkflow' { } It 'Get' { - $workflows = Get-JcSdkWorkflow + $workflows = Get-JcSdkApprovalFlow if ($null -eq $workflows){ $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId $userGroup.Id -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) } else { $workflow = $workflows | Get-Random -Count 1 } - Get-JcSdkWorkflow -ApprovalFlowId $workflow.Id | Should -Not -BeNullOrEmpty + Get-JcSdkApprovalFlow -ApprovalFlowId $workflow.Id | Should -Not -BeNullOrEmpty $workflow.Id | Should -Be $workflow.Id } } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlowSetting.Tests.ps1 similarity index 66% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlowSetting.Tests.ps1 index b66f2cd95..979c9591e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkWorkflowSetting.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlowSetting.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowSetting')) +if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkApprovalFlowSetting')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkWorkflowSetting.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-JcSdkApprovalFlowSetting.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,12 +14,12 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-JcSdkWorkflowSetting')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Get-JcSdkWorkflowSetting' { +Describe 'Get-JcSdkApprovalFlowSetting' { It 'Get' { - { Get-JcSdkWorkflowSetting } | Should -Not -Throw + { Get-JcSdkApprovalFlowSetting } | Should -Not -Throw } It 'Get should return actual settings if they exist' { - $settings = Get-JcSdkWorkflowSetting + $settings = Get-JcSdkApprovalFlowSetting $settings | Should -Not -BeNullOrEmpty $settings.Count | Should -Be 1 } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 similarity index 77% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 index 28cfc756f..21898a7ea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkWorkflow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflow')) +if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkApprovalFlow')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkWorkflow.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'New-JcSdkApprovalFlow.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,7 +14,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkWorkflow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'New-JcSdkWorkflow' { +Describe 'New-JcSdkApprovalFlow' { It 'CreateExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 similarity index 76% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 index ac4a99571..82c17c3de 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkWorkflow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Remove-JcSdkWorkflow')) +if(($null -eq $TestName) -or ($TestName -contains 'Remove-JcSdkApprovalFlow')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-JcSdkWorkflow.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-JcSdkApprovalFlow.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,7 +14,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Remove-JcSdkWorkflow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Remove-JcSdkWorkflow' { +Describe 'Remove-JcSdkApprovalFlow' { It 'Delete' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkAccessRequest.Tests.ps1 similarity index 80% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkAccessRequest.Tests.ps1 index 43dc97bb4..7493e4d9c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowAccessRequest.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkAccessRequest.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowAccessRequest')) +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkAccessRequest')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflowAccessRequest.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkAccessRequest.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,7 +14,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowAccessReques . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Set-JcSdkWorkflowAccessRequest' { +Describe 'Set-JcSdkAccessRequest' { It 'SetExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkAccessRequestApproval.Tests.ps1 similarity index 67% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkAccessRequestApproval.Tests.ps1 index f9e033426..0d48653a2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowUserApprovalRequest.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkAccessRequestApproval.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowUserApprovalRequest')) +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkAccessRequestApproval')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflowUserApprovalRequest.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkAccessRequestApproval.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,8 +14,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowUserApproval . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Set-JcSdkWorkflowUserApprovalRequest' { - # can't create user approval requests without logging in as a user, skip test +Describe 'Set-JcSdkAccessRequestApproval' { It 'SetExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 similarity index 82% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 index a1fbbcea2..bd41567f5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflow')) +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkApprovalFlow')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflow.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkApprovalFlow.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,7 +14,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Set-JcSdkWorkflow' { +Describe 'Set-JcSdkApprovalFlow' { It 'SetExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlowSetting.Tests.ps1 similarity index 75% rename from SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 rename to SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlowSetting.Tests.ps1 index 3ef70cb9b..b912dcb94 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkWorkflowSetting.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlowSetting.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowSetting')) +if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkApprovalFlowSetting')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkWorkflowSetting.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkApprovalFlowSetting.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,7 +14,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkWorkflowSetting')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Set-JcSdkWorkflowSetting' { +Describe 'Set-JcSdkApprovalFlowSetting' { It 'SetExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/SwaggerSpecs/JumpCloud.SDK.V2.json b/SwaggerSpecs/JumpCloud.SDK.V2.json index 6b00b3a73..89832eb30 100644 --- a/SwaggerSpecs/JumpCloud.SDK.V2.json +++ b/SwaggerSpecs/JumpCloud.SDK.V2.json @@ -5331,6 +5331,9 @@ "status": { "type": "string" }, + "timeBasedAccess": { + "type": "boolean" + }, "updatedAt": { "type": "string" }, @@ -11698,7 +11701,7 @@ "/approvalflowrequest": { "get": { "description": "Endpoint for getting the list of workflows access requests", - "operationId": "WorkflowAccessRequest_List", + "operationId": "AccessRequest_List", "parameters": [ { "format": "byte", @@ -11782,7 +11785,7 @@ "/approvalflowrequest/{id}": { "get": { "description": "Endpoint that returns the workflow access request by id", - "operationId": "WorkflowAccessRequest_Get", + "operationId": "AccessRequest_Get", "parameters": [ { "in": "path", @@ -11830,7 +11833,7 @@ }, "put": { "description": "Endpoint that updates the workflow access request by id", - "operationId": "WorkflowAccessRequest_Set", + "operationId": "AccessRequest_Set", "parameters": [ { "in": "path", @@ -11902,7 +11905,7 @@ "/approvalflows": { "get": { "description": "Endpoint for getting all access workflows ", - "operationId": "Workflow_List", + "operationId": "ApprovalFlow_List", "parameters": [ { "format": "byte", @@ -11984,7 +11987,7 @@ }, "post": { "description": "Endpoint for adding a new access workflow", - "operationId": "Workflow_Create", + "operationId": "ApprovalFlow_Create", "parameters": [ { "in": "body", @@ -12029,7 +12032,7 @@ "/approvalflows/{approvalFlowId}": { "delete": { "description": "Endpoint for deleting accessworkflow by id", - "operationId": "Workflow_Delete", + "operationId": "ApprovalFlow_Delete", "parameters": [ { "in": "path", @@ -12077,7 +12080,7 @@ }, "get": { "description": "Endpoint for getting workflow by id", - "operationId": "Workflow_Get", + "operationId": "ApprovalFlow_Get", "parameters": [ { "in": "path", @@ -12125,7 +12128,7 @@ }, "put": { "description": "Endpoint for updating a new access workflow", - "operationId": "Workflow_Set", + "operationId": "ApprovalFlow_Set", "parameters": [ { "in": "path", @@ -12245,7 +12248,7 @@ "/approvalflowsettings": { "get": { "description": "Endpoint for getting workflow settings for an organisation", - "operationId": "WorkflowSettings_Get", + "operationId": "ApprovalFlowSettings_Get", "parameters": [ { "format": "byte", @@ -12287,7 +12290,7 @@ }, "put": { "description": "Endpoint for updating a access workflow settings for an organization", - "operationId": "WorkflowSettings_Set", + "operationId": "ApprovalFlowSettings_Set", "parameters": [ { "in": "body", @@ -12332,7 +12335,7 @@ "/approversprogress/{id}": { "get": { "description": "Endpoint for getting the approval progress of a access request", - "operationId": "WorkflowAccessRequestProgress_Get", + "operationId": "AccessRequestProgress_Get", "parameters": [ { "in": "path", @@ -24799,7 +24802,7 @@ "/userapprovalrequest": { "post": { "description": "Endpoint for user approval", - "operationId": "WorkflowUserApprovalRequest_Set", + "operationId": "AccessRequestApproval_Set", "parameters": [ { "in": "body", From 64885c7bbee606fe2a07cbcd2859d0f67d42cdfd Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 16 Feb 2026 09:49:39 -0700 Subject: [PATCH 15/29] examples generated for Get endpoints --- .../custom/generated/Get-JcSdkAccessRequest.ps1 | 4 ++-- .../custom/generated/Get-JcSdkAccessRequestProgress.ps1 | 4 +--- .../custom/generated/Get-JcSdkApprovalFlow.ps1 | 4 ++-- .../custom/generated/Get-JcSdkApprovalFlowSetting.ps1 | 4 +--- .../custom/generated/New-JcSdkApprovalFlow.ps1 | 4 +--- .../docs/exports/Get-JcSdkAccessRequest.md | 4 ++-- .../docs/exports/Get-JcSdkAccessRequestProgress.md | 9 +-------- .../docs/exports/Get-JcSdkApprovalFlow.md | 4 ++-- .../docs/exports/Get-JcSdkApprovalFlowSetting.md | 9 +-------- .../docs/exports/New-JcSdkApprovalFlow.md | 9 +-------- .../JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md | 4 ++-- .../examples/Get-JcSdkAccessRequestProgress.md | 2 +- .../JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md | 6 +++--- .../examples/Get-JcSdkApprovalFlowSetting.md | 2 +- 14 files changed, 21 insertions(+), 48 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 index 8220d6521..a9dc3631c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 @@ -4,9 +4,9 @@ Endpoint that returns the workflow access request by id .Description Endpoint that returns the workflow access request by id .Example -{{ Add code here }} +PS C:\> Get-JcSdkAccessRequest -Id:() .Example -{{ Add code here }} +PS C:\> Get-JcSdkAccessRequest -Fields:() -Filter:() -Sort:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 index d01caa4e6..afdf86deb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 @@ -4,9 +4,7 @@ Endpoint for getting the approval progress of a access request .Description Endpoint for getting the approval progress of a access request .Example -{{ Add code here }} -.Example -{{ Add code here }} +PS C:\> Get-JcSdkAccessRequestProgress -Id:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 index c80aa7861..0d1185546 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 @@ -4,9 +4,9 @@ Endpoint for getting workflow by id .Description Endpoint for getting workflow by id .Example -{{ Add code here }} +PS C:\> Get-JcSdkApprovalFlow -ApprovalFlowId:() .Example -{{ Add code here }} +PS C:\> Get-JcSdkApprovalFlow -Fields:() -Filter:() -Sort:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 index 858370c36..f3d1f62df 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 @@ -4,9 +4,7 @@ Endpoint for getting workflow settings for an organisation .Description Endpoint for getting workflow settings for an organisation .Example -{{ Add code here }} -.Example -{{ Add code here }} +PS C:\> Get-JcSdkApprovalFlowSetting .Outputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 index 53b6c93f7..804915d4a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 @@ -4,9 +4,7 @@ Endpoint for adding a new access workflow .Description Endpoint for adding a new access workflow .Example -{{ Add code here }} -.Example -{{ Add code here }} +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md index dd42a595a..ad69eaab6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md @@ -37,14 +37,14 @@ Endpoint that returns the workflow access request by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Get-JcSdkAccessRequest -Id:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +Get-JcSdkAccessRequest -Fields:() -Filter:() -Sort:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md index 920a067d6..2ad3b2190 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md @@ -31,14 +31,7 @@ Endpoint for getting the approval progress of a access request ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} +Get-JcSdkAccessRequestProgress -Id:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md index 40a55cf91..5602f4a90 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md @@ -37,14 +37,14 @@ Endpoint for getting workflow by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Get-JcSdkApprovalFlow -ApprovalFlowId:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +Get-JcSdkApprovalFlow -Fields:() -Filter:() -Sort:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md index 64fc77bf7..1a3a72e42 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md @@ -23,14 +23,7 @@ Endpoint for getting workflow settings for an organisation ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} +Get-JcSdkApprovalFlowSetting ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md index ed009bd6f..78e444458 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md @@ -35,14 +35,7 @@ Endpoint for adding a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} -``` - - - -### -------------------------- EXAMPLE 2 -------------------------- -```powershell -{{ Add code here }} +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md index 762ee50a6..c7b4a5599 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequest.md @@ -1,6 +1,6 @@ ### Example 1: Get an AccessRequest by Id ```powershell -Get-JcSdkAccessRequest -Id:() +PS C:\> Get-JcSdkAccessRequest -Id:() ``` ```output @@ -32,7 +32,7 @@ This function will Get an AccessRequest by Id. Id is a required parameter. ### Example 2: List AccessRequests ```powershell -Get-JcSdkAccessRequest -Fields:() -Filter:() -Sort:() +PS C:\> Get-JcSdkAccessRequest -Fields:() -Filter:() -Sort:() ``` ```output diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md index e6bb08311..87c3ea508 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkAccessRequestProgress.md @@ -1,6 +1,6 @@ ### Example 1: Get an AccessRequestProgress by Id ```powershell -Get-JcSdkAccessRequestProgress -Id:() +PS C:\> Get-JcSdkAccessRequestProgress -Id:() ``` This function will Get an AccessRequestProgress by Id. Id is a required parameter. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md index 7cc6640a0..1eea3653c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlow.md @@ -1,6 +1,6 @@ ### Example 1: Get an ApprovalFlow by ApprovalFlowId ```powershell -Get-JcSdkApprovalFlow -ApprovalFlowId:() +PS C:\> Get-JcSdkApprovalFlow -ApprovalFlowId:() ``` ```output @@ -30,9 +30,9 @@ VisibleTo : {Default Admin, Radius} This function will Get an ApprovalFlow by ApprovalFlowId. ApprovalFlowId is a required parameter. -### Example 2: List ApprovalFlow +### Example 2: List all ApprovalFlow(s) ```powershell -Get-JcSdkApprovalFlow -Fields:() -Filter:() -Sort:() +PS C:\> Get-JcSdkApprovalFlow -Fields:() -Filter:() -Sort:() ``` ```output diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md index 5b187ffe3..f95a623fd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Get-JcSdkApprovalFlowSetting.md @@ -1,6 +1,6 @@ ### Example 1: Get an ApprovalFlowSetting by ```powershell -Get-JcSdkApprovalFlowSetting +PS C:\> Get-JcSdkApprovalFlowSetting ``` ```output From 6872200e38a6c6f1754373911584b9d3ad2d5dc0 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 16 Feb 2026 09:58:57 -0700 Subject: [PATCH 16/29] examples --- JumpCloud.SDK.V2.md | 22 +++++++++---------- .../examples/Remove-JcSdkApprovalFlow.md | 10 ++++----- .../examples/Set-JcSdkAccessRequest.md | 16 +++++++------- .../Set-JcSdkAccessRequestApproval.md | 16 +++++++------- .../examples/Set-JcSdkApprovalFlow.md | 16 +++++++------- .../examples/Set-JcSdkApprovalFlowSetting.md | 16 +++++++------- 6 files changed, 48 insertions(+), 48 deletions(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 8d5fc24f8..c03fe7e70 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -9,17 +9,17 @@ Add accessRequest workflow functions/ general SDK updates from source
Functions Added -Get-JcSdkWorkflow -Get-JcSdkWorkflowAccessRequest -Get-JcSdkWorkflowAccessRequestProgress -Get-JcSdkWorkflowSetting -New-JcSdkWorkflow -New-JcSdkWorkflowAccessRequest -New-JcSdkWorkflowSetting -Remove-JcSdkWorkflow -Set-JcSdkWorkflow -Set-JcSdkWorkflowAccessRequest -Set-JcSdkWorkflowSetting +Get-JcSdkApprovalFlow +Get-JcSdkAccessRequest +Get-JcSdkAccessRequestProgress +Get-JcSdkApprovalFlowSetting +New-JcSdkApprovalFlow +New-JcSdkAccessRequest +New-JcSdkApprovalFlowSetting +Remove-JcSdkApprovalFlow +Set-JcSdkApprovalFlow +Set-JcSdkAccessRequest +Set-JcSdkApprovalFlowSetting
diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md index 0371f56c3..86e8dd10b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Remove-JcSdkApprovalFlow.md @@ -1,13 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Remove an ApprovalFlow by ApprovalFlowId ```powershell -{{ Add code here }} +PS C:\> Remove-JcSdkApprovalFlow -ApprovalFlowId:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +{{ Add output here (remove the output block if the example doesnt have an output) }} ``` -{{ Add description here }} +This function will Remove an ApprovalFlow by ApprovalFlowId. ApprovalFlowId is a required parameter. ### Example 2: {{ Add title here }} ```powershell @@ -15,7 +15,7 @@ ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +{{ Add output here (remove the output block if the example doesnt have an output) }} ``` {{ Add description here }} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md index 0371f56c3..509e35d57 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequest.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set an AccessRequest by Id ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +JumpCloud.SDK.V2.Models.JumpcloudIngressoUpdateWorkflowAccessRequestResponse ``` -{{ Add description here }} +This function will Set an AccessRequest by Id. Id is a required parameter. -### Example 2: {{ Add title here }} +### Example 2: Set an AccessRequest by Id, and Body ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequest -Id:() -Body:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +JumpCloud.SDK.V2.Models.JumpcloudIngressoUpdateWorkflowAccessRequestResponse ``` -{{ Add description here }} +This function will Set an AccessRequest by Id Body. Id, and Body are required parameters. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md index 0371f56c3..72703d80b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkAccessRequestApproval.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set an AccessRequestApproval by ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequestApproval -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +JumpCloud.SDK.V2.Models.JumpcloudIngressoUserApprovalRequestResponse ``` -{{ Add description here }} +This function will Set an AccessRequestApproval by . -### Example 2: {{ Add title here }} +### Example 2: Set an AccessRequestApproval by Body ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequestApproval -Body:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +JumpCloud.SDK.V2.Models.JumpcloudIngressoUserApprovalRequestResponse ``` -{{ Add description here }} +This function will Set an AccessRequestApproval by Body. Body is a required parameter. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md index 0371f56c3..fd277354f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlow.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set an ApprovalFlow by ApprovalFlowId ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +{{ Add output here (remove the output block if the example doesnt have an output) }} ``` -{{ Add description here }} +This function will Set an ApprovalFlow by ApprovalFlowId. ApprovalFlowId is a required parameter. -### Example 2: {{ Add title here }} +### Example 2: Set an ApprovalFlow by ApprovalFlowId, and Body ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlow -ApprovalFlowId:() -Body:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +{{ Add output here (remove the output block if the example doesnt have an output) }} ``` -{{ Add description here }} +This function will Set an ApprovalFlow by ApprovalFlowId Body. ApprovalFlowId, and Body are required parameters. diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md index 0371f56c3..94fa73248 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/Set-JcSdkApprovalFlowSetting.md @@ -1,22 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Set an ApprovalFlowSetting by ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +{{ Add output here (remove the output block if the example doesnt have an output) }} ``` -{{ Add description here }} +This function will Set an ApprovalFlowSetting by . -### Example 2: {{ Add title here }} +### Example 2: Set an ApprovalFlowSetting by Body ```powershell -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlowSetting -Body:() ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +{{ Add output here (remove the output block if the example doesnt have an output) }} ``` -{{ Add description here }} +This function will Set an ApprovalFlowSetting by Body. Body is a required parameter. From fb5fd08b862ae12605d26e31d455c763e0b3efc9 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 16 Feb 2026 10:07:23 -0700 Subject: [PATCH 17/29] changelog date --- JumpCloud.SDK.V2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index c03fe7e70..44f5825bc 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,5 +1,5 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: February 11, 2026 +Release Date: February 16, 2026 #### RELEASE NOTES ``` Add accessRequest workflow functions/ general SDK updates from source From 55ae19194d98b3d10e2d58cb4728242d2c3a10a6 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 18 Feb 2026 09:31:36 -0700 Subject: [PATCH 18/29] New-jcSDKApprovalWorkflow example --- .../docs/exports/New-JcSdkApprovalFlow.md | 66 +++++++++---------- .../examples/New-JcSdkApprovalFlow.md | 2 +- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md index 78e444458..4804c5299 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md @@ -35,7 +35,7 @@ Endpoint for adding a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -Status "active" -TimeBasedAccess -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') ``` @@ -423,42 +423,42 @@ To create the parameters described below, construct a hash table containing the `APPROVERRESOURCES `: . - - `[RequireAll ]`: - - `[ResourceId ]`: - - `[ResourceName ]`: - - `[ResourceOrder ]`: - - `[ResourceType ]`: + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: `BODY `: . - - `[ApprovalType ]`: - - `[ApproverRequirement ]`: - - `[ApproverResources >]`: - - `[RequireAll ]`: - - `[ResourceId ]`: - - `[ResourceName ]`: - - `[ResourceOrder ]`: - - `[ResourceType ]`: - - `[Category ]`: - - `[Description ]`: - - `[FixedDuration ]`: - - `[IconColor ]`: - - `[IconUrl ]`: - - `[MultiSelectDuration >]`: - - `[Name ]`: - - `[NonAdminApproval ]`: - - `[OrganizationObjectId ]`: - - `[ResourceId ]`: - - `[ResourceType ]`: - - `[SlackConfig >]`: - - `[SlackResourceId ]`: - - `[SlackEnabled ]`: - - `[Status ]`: - - `[TimeBasedAccess ]`: - - `[TtlConfig ]`: - - `[VisibleTo >]`: + - `[ApprovalType ]`: + - `[ApproverRequirement ]`: + - `[ApproverResources >]`: + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: + - `[Category ]`: + - `[Description ]`: + - `[FixedDuration ]`: + - `[IconColor ]`: + - `[IconUrl ]`: + - `[MultiSelectDuration >]`: + - `[Name ]`: + - `[NonAdminApproval ]`: + - `[OrganizationObjectId ]`: + - `[ResourceId ]`: + - `[ResourceType ]`: + - `[SlackConfig >]`: + - `[SlackResourceId ]`: + - `[SlackEnabled ]`: + - `[Status ]`: + - `[TimeBasedAccess ]`: + - `[TtlConfig ]`: + - `[VisibleTo >]`: `SLACKCONFIG `: . - - `[SlackResourceId ]`: + - `[SlackResourceId ]`: ## RELATED LINKS diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md index c9eff83a0..3b097bbf0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md @@ -1,6 +1,6 @@ ### Example 1: Create an ApprovalFlow ```powershell -New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') ``` ```output From cdde8f05517f747ce37e91bcf37296abfb5cc8ce Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 18 Feb 2026 09:39:12 -0700 Subject: [PATCH 19/29] generated examples --- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 2 +- .../generated/New-JcSdkApprovalFlow.ps1 | 2 +- .../generated/Remove-JcSdkApprovalFlow.ps1 | 2 +- .../generated/Set-JcSdkAccessRequest.ps1 | 4 +- .../Set-JcSdkAccessRequestApproval.ps1 | 4 +- .../generated/Set-JcSdkApprovalFlow.ps1 | 4 +- .../Set-JcSdkApprovalFlowSetting.ps1 | 4 +- .../docs/exports/New-JcSdkApprovalFlow.md | 64 +++++++++---------- .../docs/exports/Remove-JcSdkApprovalFlow.md | 2 +- .../docs/exports/Set-JcSdkAccessRequest.md | 4 +- .../exports/Set-JcSdkAccessRequestApproval.md | 4 +- .../docs/exports/Set-JcSdkApprovalFlow.md | 4 +- .../exports/Set-JcSdkApprovalFlowSetting.md | 4 +- .../examples/New-JcSdkApprovalFlow.md | 2 +- .../test/Get-JcSdkApprovalFlow.Tests.ps1 | 4 +- 15 files changed, 55 insertions(+), 55 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index c27add4a7..1ddafc469 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 2/16/2026 +# Generated on: 2/18/2026 # @{ diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 index 804915d4a..28cab9b36 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 @@ -4,7 +4,7 @@ Endpoint for adding a new access workflow .Description Endpoint for adding a new access workflow .Example -New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -Status "active" -TimeBasedAccess -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoCreateAccessWorkflowRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 index 5cfc4fea1..955b1c5e4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 @@ -4,7 +4,7 @@ Endpoint for deleting accessworkflow by id .Description Endpoint for deleting accessworkflow by id .Example -{{ Add code here }} +PS C:\> Remove-JcSdkApprovalFlow -ApprovalFlowId:() .Example {{ Add code here }} diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 index d8e801486..01310c88f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 @@ -4,9 +4,9 @@ Endpoint that set the workflow access request by id .Description Endpoint that set the workflow access request by id .Example -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() .Example -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequest -Id:() -Body:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 index 3a032ff34..e1566a3c5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 @@ -4,9 +4,9 @@ Endpoint for user approval .Description Endpoint for user approval .Example -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequestApproval -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() .Example -{{ Add code here }} +PS C:\> Set-JcSdkAccessRequestApproval -Body:() .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoUserApprovalRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 index e27194fef..cf6814585 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 @@ -4,9 +4,9 @@ Endpoint for updating a new access workflow .Description Endpoint for updating a new access workflow .Example -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() .Example -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlow -ApprovalFlowId:() -Body:() .Inputs JumpCloud.SDK.V2.Models.IJumpCloudApiIdentity diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 index 5caae90eb..e2fca7ded 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 @@ -4,9 +4,9 @@ Endpoint for updating a access workflow settings for an organization .Description Endpoint for updating a access workflow settings for an organization .Example -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() .Example -{{ Add code here }} +PS C:\> Set-JcSdkApprovalFlowSetting -Body:() .Inputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoUpdateAccessWorkflowSettingsRequest diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md index 4804c5299..591979b11 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md @@ -423,42 +423,42 @@ To create the parameters described below, construct a hash table containing the `APPROVERRESOURCES `: . - - `[RequireAll ]`: - - `[ResourceId ]`: - - `[ResourceName ]`: - - `[ResourceOrder ]`: - - `[ResourceType ]`: + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: `BODY `: . - - `[ApprovalType ]`: - - `[ApproverRequirement ]`: - - `[ApproverResources >]`: - - `[RequireAll ]`: - - `[ResourceId ]`: - - `[ResourceName ]`: - - `[ResourceOrder ]`: - - `[ResourceType ]`: - - `[Category ]`: - - `[Description ]`: - - `[FixedDuration ]`: - - `[IconColor ]`: - - `[IconUrl ]`: - - `[MultiSelectDuration >]`: - - `[Name ]`: - - `[NonAdminApproval ]`: - - `[OrganizationObjectId ]`: - - `[ResourceId ]`: - - `[ResourceType ]`: - - `[SlackConfig >]`: - - `[SlackResourceId ]`: - - `[SlackEnabled ]`: - - `[Status ]`: - - `[TimeBasedAccess ]`: - - `[TtlConfig ]`: - - `[VisibleTo >]`: + - `[ApprovalType ]`: + - `[ApproverRequirement ]`: + - `[ApproverResources >]`: + - `[RequireAll ]`: + - `[ResourceId ]`: + - `[ResourceName ]`: + - `[ResourceOrder ]`: + - `[ResourceType ]`: + - `[Category ]`: + - `[Description ]`: + - `[FixedDuration ]`: + - `[IconColor ]`: + - `[IconUrl ]`: + - `[MultiSelectDuration >]`: + - `[Name ]`: + - `[NonAdminApproval ]`: + - `[OrganizationObjectId ]`: + - `[ResourceId ]`: + - `[ResourceType ]`: + - `[SlackConfig >]`: + - `[SlackResourceId ]`: + - `[SlackEnabled ]`: + - `[Status ]`: + - `[TimeBasedAccess ]`: + - `[TtlConfig ]`: + - `[VisibleTo >]`: `SLACKCONFIG `: . - - `[SlackResourceId ]`: + - `[SlackResourceId ]`: ## RELATED LINKS diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md index 5ef2f8c10..337f108dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md @@ -31,7 +31,7 @@ Endpoint for deleting accessworkflow by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Remove-JcSdkApprovalFlow -ApprovalFlowId:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md index dc782ca79..18d5eaf24 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md @@ -47,14 +47,14 @@ Endpoint that set the workflow access request by id ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkAccessRequest -Id:() -Admin:() -ApprovedDuration:() -InternalNote:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkAccessRequest -Id:() -Body:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md index 918cd3e1b..69168e924 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md @@ -32,14 +32,14 @@ Endpoint for user approval ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkAccessRequestApproval -ApprovedDuration:() -Id:() -OrganizationObjectIdInputFile:() -Remarks:() -Status:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkAccessRequestApproval -Body:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md index f6f21be0b..13cffb6e2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md @@ -55,14 +55,14 @@ Endpoint for updating a new access workflow ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkApprovalFlow -ApprovalFlowId:() -ApprovalType:() -ApproverRequirement:() -ApproverResources:() -Description:() -FixedDuration:() -IconColor:() -IconUrl:() -MultiSelectDuration:() -Name:() -NonAdminApproval:() -OrganizationObjectIdInputFile:() -ResourceId:() -SlackConfig:() -SlackEnabled:() -Status:() -TimeBasedAccess:() -TtlConfig:() -VisibleTo:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkApprovalFlow -ApprovalFlowId:() -Body:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md index 7f66a0735..c4254ae9a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md @@ -33,14 +33,14 @@ Endpoint for updating a access workflow settings for an organization ### -------------------------- EXAMPLE 1 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkApprovalFlowSetting -AdminApprovalEmail:() -ChannelEvents:() -ExposeApprovalProgress:() -OrganizationObjectIdInputFile:() -ResourceRequest:() -UserApprovalEmail:() -UserRequestEmail:() ``` ### -------------------------- EXAMPLE 2 -------------------------- ```powershell -{{ Add code here }} +Set-JcSdkApprovalFlowSetting -Body:() ``` diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md index 3b097bbf0..e500dc430 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/examples/New-JcSdkApprovalFlow.md @@ -1,6 +1,6 @@ ### Example 1: Create an ApprovalFlow ```powershell -New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') +New-JcSdkApprovalFlow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId 5d67fd481da3c52aa1faa883 -ResourceType "user_group" -Status "active" -TimeBasedAccess -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @('6148cd739d38866f0814e874') ``` ```output diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 index ad79f7f2d..1c2bcd0bd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Get-JcSdkApprovalFlow.Tests.ps1 @@ -29,7 +29,7 @@ Describe 'Get-JcSdkApprovalFlow' { while ($targetGroup.Id -eq $userGroup.Id) { $targetGroup = Get-JcSdkUserGroup | Get-Random -Count 1 } - $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId $userGroup.Id -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) + $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId $userGroup.Id -ResourceType "user_group" -Status "active" -TimeBasedAccess -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) } else { $workflow = $workflows | Get-Random -Count 1 } @@ -40,7 +40,7 @@ Describe 'Get-JcSdkApprovalFlow' { It 'Get' { $workflows = Get-JcSdkApprovalFlow if ($null -eq $workflows){ - $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -NonAdminApproval $false -ResourceId $userGroup.Id -ResourceType "user_group" -SlackEnabled $false -Status "active" -TimeBasedAccess $true -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) + $workflow = New-JcSdkWorkflow -ApprovalType 'manual' -Category "Application" -Description "A new workflow" -MultiSelectDuration @("P5D") -Name "New Workflow" -ResourceId $userGroup.Id -ResourceType "user_group" -Status "active" -TimeBasedAccess -TtlConfig "TTL_CONFIG_MULTI_SELECT_DURATIONS" -VisibleTo @($targetGroup.Id) } else { $workflow = $workflows | Get-Random -Count 1 } From a99076363fa1ac11e41fa57fed98aa71f7554f15 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 18 Feb 2026 09:39:21 -0700 Subject: [PATCH 20/29] CI v1, v2 triggers --- .github/workflows/jcapi-powershell-ci.yml | 94 ++++++++++++++++++++--- 1 file changed, 85 insertions(+), 9 deletions(-) diff --git a/.github/workflows/jcapi-powershell-ci.yml b/.github/workflows/jcapi-powershell-ci.yml index 19772d247..cf833988e 100644 --- a/.github/workflows/jcapi-powershell-ci.yml +++ b/.github/workflows/jcapi-powershell-ci.yml @@ -186,7 +186,7 @@ jobs: Build-SDK-V1: needs: ["Setup-Build-Dependencies", "Check-PR-Labels", "Validate-SDK-Module"] - if: contains(github.event.pull_request.labels.*.name, 'v1') || contains(github.event.pull_request.labels.*.name, 'v2') + if: contains(github.event.pull_request.labels.*.name, 'v1') runs-on: ubuntu-latest timeout-minutes: 70 steps: @@ -296,7 +296,7 @@ jobs: Test-SDK-V1: needs: ["Build-SDK-V1", "Check-PR-Labels"] - if: contains(github.event.pull_request.labels.*.name, 'v1') || contains(github.event.pull_request.labels.*.name, 'v2') + if: contains(github.event.pull_request.labels.*.name, 'v1') runs-on: ubuntu-latest timeout-minutes: 70 steps: @@ -324,9 +324,9 @@ jobs: $ErrorActionnPreference = 'Stop' ./Test-Module.ps1 -JCApiKey:($env:PESTER_APIKEY) -JCOrgId:($env:PESTER_ORGID) -JCApiKeyMTP:($env:PESTER_MSP_APIKEY) -JCProviderId:($env:PESTER_PROVIDERID) -ExcludeTagList:("MTP") -IncludeTagList:("*") -testModulePath:("./SDKs/PowerShell/JumpCloud.SDK.V1/test-module.ps1") - Test-SDK-V2: - needs: ["Build-SDK-V1", "Build-SDK-V2", "Check-PR-Labels"] - if: contains(github.event.pull_request.labels.*.name, 'v2') + Test-SDK-V2-Only: + needs: ["Build-SDK-V2", "Check-PR-Labels"] + if: contains(github.event.pull_request.labels.*.name, 'v2') && !contains(github.event.pull_request.labels.*.name, 'v1') runs-on: ubuntu-latest timeout-minutes: 70 steps: @@ -383,13 +383,51 @@ jobs: $ErrorActionnPreference = 'Stop' ./Test-Module.ps1 -JCApiKey:($env:PESTER_APIKEY) -JCOrgId:($env:PESTER_ORGID) -JCApiKeyMTP:($env:PESTER_MSP_APIKEY) -JCProviderId:($env:PESTER_PROVIDERID) -ExcludeTagList:("MTP") -IncludeTagList:("*") -testModulePath:("./SDKs/PowerShell/JumpCloud.SDK.V2/test-module.ps1") + Test-SDK-V2-With-V1: + needs: ["Build-SDK-V1", "Build-SDK-V2", "Check-PR-Labels"] + if: contains(github.event.pull_request.labels.*.name, 'v2') && contains(github.event.pull_request.labels.*.name, 'v1') + runs-on: ubuntu-latest + timeout-minutes: 70 + steps: + - uses: actions/checkout@v4 + - uses: actions/cache@v3 + with: + path: "/home/runner/.local/share/powershell/Modules/" + key: PS-Dependencies + - uses: actions/download-artifact@v4 + with: + name: build-JumpCloud.SDK.V1 + path: /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ + - name: Unzip JumpCloud.SDK.V1 module + shell: pwsh + run: | + Expand-Archive -Path /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/JumpCloud.SDK.V1.zip -DestinationPath /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ -Force + - uses: actions/download-artifact@v4 + with: + name: build-JumpCloud.SDK.V2 + path: /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ + - name: Unzip JumpCloud.SDK.V2 module + shell: pwsh + run: | + Expand-Archive -Path /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/JumpCloud.SDK.V2.zip -DestinationPath /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ -Force + - name: Test JumpCloud.SDK.V2 + shell: pwsh + env: + PESTER_APIKEY: ${{ secrets.PESTER_APIKEY }} + PESTER_ORGID: ${{ secrets.PESTER_ORGID }} + PESTER_MSP_APIKEY: ${{ secrets.PESTER_MSP_APIKEY }} + PESTER_PROVIDERID: ${{ secrets.PESTER_PROVIDERID }} + run: | + $ErrorActionnPreference = 'Stop' + ./Test-Module.ps1 -JCApiKey:($env:PESTER_APIKEY) -JCOrgId:($env:PESTER_ORGID) -JCApiKeyMTP:($env:PESTER_MSP_APIKEY) -JCProviderId:($env:PESTER_PROVIDERID) -ExcludeTagList:("MTP") -IncludeTagList:("*") -testModulePath:("./SDKs/PowerShell/JumpCloud.SDK.V2/test-module.ps1") + ## ---------------------------------------------------------------- ## MTP Test Jobs ## ---------------------------------------------------------------- Test-SDK-MTP-V1: needs: ["Build-SDK-V1", "Check-PR-Labels"] - if: contains(github.event.pull_request.labels.*.name, 'v1') || contains(github.event.pull_request.labels.*.name, 'v2') + if: contains(github.event.pull_request.labels.*.name, 'v1') runs-on: ubuntu-latest timeout-minutes: 70 steps: @@ -417,9 +455,9 @@ jobs: $ErrorActionnPreference = 'Stop' ./Test-Module.ps1 -JCApiKey:($env:PESTER_APIKEY) -JCOrgId:($env:PESTER_ORGID) -JCApiKeyMTP:($env:PESTER_MSP_APIKEY) -JCProviderId:($env:PESTER_PROVIDERID) -ExcludeTagList:("None") -IncludeTagList:("MTP") -testModulePath:("./SDKs/PowerShell/JumpCloud.SDK.V1/test-module.ps1") - Test-SDK-MTP-V2: - needs: ["Build-SDK-V1", "Build-SDK-V2", "Check-PR-Labels"] - if: contains(github.event.pull_request.labels.*.name, 'v2') + Test-SDK-MTP-V2-Only: + needs: ["Build-SDK-V2", "Check-PR-Labels"] + if: contains(github.event.pull_request.labels.*.name, 'v2') && !contains(github.event.pull_request.labels.*.name, 'v1') runs-on: ubuntu-latest timeout-minutes: 70 steps: @@ -465,6 +503,44 @@ jobs: Remove-Item -Path $versionedDir.FullName -Force Write-Host "Module '$moduleName' is now correctly placed at '$moduleDir'." + - name: Test MTP JumpCloud.SDK.V2 + shell: pwsh + env: + PESTER_APIKEY: ${{ secrets.PESTER_APIKEY }} + PESTER_ORGID: ${{ secrets.PESTER_ORGID }} + PESTER_MSP_APIKEY: ${{ secrets.PESTER_MSP_APIKEY }} + PESTER_PROVIDERID: ${{ secrets.PESTER_PROVIDERID }} + run: | + $ErrorActionnPreference = 'Stop' + ./Test-Module.ps1 -JCApiKey:($env:PESTER_APIKEY) -JCOrgId:($env:PESTER_ORGID) -JCApiKeyMTP:($env:PESTER_MSP_APIKEY) -JCProviderId:($env:PESTER_PROVIDERID) -ExcludeTagList:("None") -IncludeTagList:("MTP") -testModulePath:("./SDKs/PowerShell/JumpCloud.SDK.V2/test-module.ps1") + + Test-SDK-MTP-V2-With-V1: + needs: ["Build-SDK-V1", "Build-SDK-V2", "Check-PR-Labels"] + if: contains(github.event.pull_request.labels.*.name, 'v2') && contains(github.event.pull_request.labels.*.name, 'v1') + runs-on: ubuntu-latest + timeout-minutes: 70 + steps: + - uses: actions/checkout@v4 + - uses: actions/cache@v3 + with: + path: "/home/runner/.local/share/powershell/Modules/" + key: PS-Dependencies + - uses: actions/download-artifact@v4 + with: + name: build-JumpCloud.SDK.V1 + path: /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ + - name: Unzip JumpCloud.SDK.V1 module + shell: pwsh + run: | + Expand-Archive -Path /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/JumpCloud.SDK.V1.zip -DestinationPath /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ -Force + - uses: actions/download-artifact@v4 + with: + name: build-JumpCloud.SDK.V2 + path: /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ + - name: Unzip JumpCloud.SDK.V2 module + shell: pwsh + run: | + Expand-Archive -Path /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/JumpCloud.SDK.V2.zip -DestinationPath /home/runner/work/jcapi-powershell/jcapi-powershell/SDKs/PowerShell/ -Force - name: Test MTP JumpCloud.SDK.V2 shell: pwsh env: From 110d1ab87538f9c495d9aa21b91b96c32e280c5a Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 18 Feb 2026 09:39:48 -0700 Subject: [PATCH 21/29] changeLog date --- JumpCloud.SDK.V2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 44f5825bc..3751319be 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,5 +1,5 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: February 16, 2026 +Release Date: February 18, 2026 #### RELEASE NOTES ``` Add accessRequest workflow functions/ general SDK updates from source From 8d99e39798360eab09e5845f7b3ee23e34c39793 Mon Sep 17 00:00:00 2001 From: shashisinghjc Date: Mon, 23 Feb 2026 11:30:39 +0530 Subject: [PATCH 22/29] Tests updated for Set-JcSdkApprovalflow --- .../test/Set-JcSdkApprovalFlow.Tests.ps1 | 74 ++++++++++++++++--- 1 file changed, 62 insertions(+), 12 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 index bd41567f5..82d1fe2c7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Set-JcSdkApprovalFlow.Tests.ps1 @@ -7,6 +7,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkApprovalFlow')) . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Set-JcSdkApprovalFlow.Recording.json' $currentPath = $PSScriptRoot + $mockingPath = $null while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent @@ -14,20 +15,69 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-JcSdkApprovalFlow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Set-JcSdkApprovalFlow' { - It 'SetExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - It 'Set' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } +Describe 'Set-JcSdkApprovalFlow' -Tag:(""){ + It 'Set' { + $workflows = Get-JcSdkApprovalFlow + if (-not $workflows) { + $userGroups = Get-JcSdkUserGroup + $resourceGroup = $null + $visibleGroup = $null + if (-not $userGroups) { + $createdGroups = @() + 1..2 | ForEach-Object { + $groupName = "PesterFlowGroup$_-$([guid]::NewGuid().ToString('N').Substring(0,8))" + $createdGroups += New-JcSdkUserGroup -Name $groupName + } - It 'SetViaIdentity' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } + $userGroups = $createdGroups + $resourceGroup = $createdGroups[0] + $visibleGroup = $createdGroups[1] + } + + $workflowNameSuffix = [guid]::NewGuid().ToString('N').Substring(0,8) + $workflows = @( + New-JcSdkApprovalFlow -ApprovalType 'manual' -Category 'Application' -Description 'A new workflow2' -MultiSelectDuration @('P5D') -Name "New Workflow-$workflowNameSuffix" -ResourceId $resourceGroup.Id -ResourceType 'user_group' -Status 'active' -TimeBasedAccess -TtlConfig 'TTL_CONFIG_MULTI_SELECT_DURATIONS' -VisibleTo @($visibleGroup.Id) + ) + } + + $workflow = $workflows | Get-Random + $newName = "{0}-Updated" -f $workflow.Name + $newDescription = "Updated via Pester on $(Get-Date -Format 'u')" + + $body = @{ + ApprovalType = $workflow.ApprovalType + ApproverRequirement = $workflow.ApproverRequirement + ApproverResources = $workflow.ApproverResources + Description = $newDescription + FixedDuration = $workflow.FixedDuration + IconColor = $workflow.IconColor + IconUrl = $workflow.IconUrl + MultiSelectDuration = $workflow.MultiSelectDuration + Name = $newName + NonAdminApproval = $workflow.NonAdminApproval + ResourceId = $workflow.ResourceId + SlackConfig = $workflow.SlackConfig + SlackEnabled = $workflow.SlackEnabled + Status = $workflow.Status + TimeBasedAccess = $workflow.TimeBasedAccess + TtlConfig = $workflow.TtlConfig + VisibleTo = $workflow.VisibleTo + } + + foreach ($key in @($body.Keys)) { + if ($null -eq $body[$key]) { + $body.Remove($key) | Out-Null + } + } + + $updatedWorkflow = Set-JcSdkApprovalFlow -ApprovalFlowId $workflow.Id -Body $body + + $updatedWorkflow | Should -Not -BeNullOrEmpty - It 'SetViaIdentityExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + $refreshedWorkflow = Get-JcSdkApprovalFlow -ApprovalFlowId $workflow.Id + $refreshedWorkflow | Should -Not -BeNullOrEmpty + $refreshedWorkflow.Name | Should -Be $newName + $refreshedWorkflow.Description | Should -Be $newDescription } } From abe8f4c4e5230613f5df0a8549010eaaed9f8c99 Mon Sep 17 00:00:00 2001 From: shashisinghjc Date: Mon, 23 Feb 2026 11:43:34 +0530 Subject: [PATCH 23/29] changelog updated for v2 --- JumpCloud.SDK.V2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 3751319be..cf8f203fc 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,5 +1,5 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: February 18, 2026 +Release Date: February 23, 2026 #### RELEASE NOTES ``` Add accessRequest workflow functions/ general SDK updates from source From 9f4a1d8a00aba653dadb668de39c9442d1a3f365 Mon Sep 17 00:00:00 2001 From: shashisinghjc Date: Mon, 23 Feb 2026 11:58:33 +0530 Subject: [PATCH 24/29] Tests updated for New-JcSdkApprovalFlow --- .../test/New-JcSdkApprovalFlow.Tests.ps1 | 59 +++++++++++++++++-- 1 file changed, 54 insertions(+), 5 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 index 21898a7ea..de5c3204b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 @@ -14,12 +14,61 @@ if(($null -eq $TestName) -or ($TestName -contains 'New-JcSdkApprovalFlow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'New-JcSdkApprovalFlow' { - It 'CreateExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw +function Get-TestApprovalFlowGroupContext { + $userGroups = @(Get-JcSdkUserGroup | Where-Object { $_ }) + + while ($userGroups.Count -lt 2) { + $suffix = [guid]::NewGuid().ToString('N').Substring(0,8) + $userGroups += New-JcSdkUserGroup -Name "PesterApprovalFlowGroup-$suffix" + } + + $resourceGroup = $userGroups | Get-Random + $visibleGroup = Get-JcSdkUserGroup -Filter @('name:eq:All Activated Users') | Select-Object -First 1 + + if (-not $visibleGroup -or $visibleGroup.Id -eq $resourceGroup.Id) { + $visibleCandidates = $userGroups | Where-Object { $_.Id -ne $resourceGroup.Id } + if ($visibleCandidates) { + $visibleGroup = $visibleCandidates | Get-Random + } + else { + $visibleGroup = $resourceGroup + } } - It 'Create' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + [pscustomobject]@{ + ResourceGroup = $resourceGroup + VisibleGroup = $visibleGroup } } +Describe 'New-JcSdkApprovalFlow' -Tag:(""){ + It 'Create new approval flow with required parameters' { + $context = Get-TestApprovalFlowGroupContext + $flowName = "PesterApprovalFlow-$([guid]::NewGuid().ToString('N').Substring(0,8))" + $description = "Created new approval flow with required parameters on $(Get-Date -Format 'u')" + + $parameters = @{ + ApprovalType = 'manual' + Category = 'Application' + Description = $description + MultiSelectDuration = @('P5D') + Name = $flowName + NonAdminApproval = $false + ResourceId = $context.ResourceGroup.Id + ResourceType = 'user_group' + SlackEnabled = $false + Status = 'active' + TimeBasedAccess = $true + TtlConfig = 'TTL_CONFIG_MULTI_SELECT_DURATIONS' + VisibleTo = @($context.VisibleGroup.Id) + } + + $approvalFlow = New-JcSdkApprovalFlow @parameters + + $approvalFlow | Should -Not -BeNullOrEmpty + $approvalFlow.Name | Should -Be $flowName + $approvalFlow.ResourceId | Should -Be $context.ResourceGroup.Id + $approvalFlow.VisibleTo | Should -Contain $context.VisibleGroup.Id + } + + +} From 63a26eb8eb5d9709a34188a1e22996593a9845e7 Mon Sep 17 00:00:00 2001 From: shashisinghjc Date: Mon, 23 Feb 2026 21:22:05 +0530 Subject: [PATCH 25/29] Remove-JcSdkApprovalFlow & New-JcSdkApprovalFlow test updated. --- .../test/New-JcSdkApprovalFlow.Tests.ps1 | 4 +- .../test/Remove-JcSdkApprovalFlow.Tests.ps1 | 80 +++++++++++++++++-- 2 files changed, 76 insertions(+), 8 deletions(-) diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 index de5c3204b..a578330a3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/New-JcSdkApprovalFlow.Tests.ps1 @@ -65,9 +65,7 @@ Describe 'New-JcSdkApprovalFlow' -Tag:(""){ $approvalFlow = New-JcSdkApprovalFlow @parameters $approvalFlow | Should -Not -BeNullOrEmpty - $approvalFlow.Name | Should -Be $flowName - $approvalFlow.ResourceId | Should -Be $context.ResourceGroup.Id - $approvalFlow.VisibleTo | Should -Contain $context.VisibleGroup.Id + $approvalFlow.ID | Should -Not -BeNullOrEmpty } diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 index 82c17c3de..280446e2e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/test/Remove-JcSdkApprovalFlow.Tests.ps1 @@ -1,3 +1,5 @@ +$script:TestApprovalFlowGroupIds = @() + if(($null -eq $TestName) -or ($TestName -contains 'Remove-JcSdkApprovalFlow')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' @@ -14,12 +16,80 @@ if(($null -eq $TestName) -or ($TestName -contains 'Remove-JcSdkApprovalFlow')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Remove-JcSdkApprovalFlow' { - It 'Delete' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + +function Get-TestApprovalFlowGroupContext { + $userGroups = @(Get-JcSdkUserGroup | Where-Object { $_ }) + + while ($userGroups.Count -lt 2) { + $suffix = [guid]::NewGuid().ToString('N').Substring(0,8) + $createdGroup = New-JcSdkUserGroup -Name "PesterApprovalFlowGroup-$suffix" + $userGroups += $createdGroup + $script:TestApprovalFlowGroupIds += $createdGroup.Id + } + + $resourceGroup = $userGroups | Get-Random + $visibleGroup = Get-JcSdkUserGroup -Filter @('name:eq:All Activated Users') | Select-Object -First 1 + + if (-not $visibleGroup -or $visibleGroup.Id -eq $resourceGroup.Id) { + $visibleCandidates = $userGroups | Where-Object { $_.Id -ne $resourceGroup.Id } + if ($visibleCandidates) { + $visibleGroup = $visibleCandidates | Get-Random + } + else { + $visibleGroup = $resourceGroup + } } - It 'DeleteViaIdentity' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + [pscustomobject]@{ + ResourceGroup = $resourceGroup + VisibleGroup = $visibleGroup } } +function New-TestApprovalFlowInstance { + $context = Get-TestApprovalFlowGroupContext + $flowName = "PesterRemoveApprovalFlow-$([guid]::NewGuid().ToString('N').Substring(0,8))" + $description = "Seeded for Remove-JcSdkApprovalFlow on $(Get-Date -Format 'u')" + + $parameters = @{ + ApprovalType = 'manual' + Category = 'Application' + Description = $description + MultiSelectDuration = @('P5D') + Name = $flowName + NonAdminApproval = $false + ResourceId = $context.ResourceGroup.Id + ResourceType = 'user_group' + SlackEnabled = $false + Status = 'active' + TimeBasedAccess = $true + TtlConfig = 'TTL_CONFIG_MULTI_SELECT_DURATIONS' + VisibleTo = @($context.VisibleGroup.Id) + } + + New-JcSdkApprovalFlow @parameters +} + +Describe 'Remove-JcSdkApprovalFlow' -Tag:(""){ + It 'Delete' { + $approvalFlow = New-TestApprovalFlowInstance + $approvalFlow | Should -Not -BeNullOrEmpty + + { Remove-JcSdkApprovalFlow -ApprovalFlowId $approvalFlow.Id } | Should -Not -Throw + + $lookupResult = $null + try { + $lookupResult = Get-JcSdkApprovalFlow -ApprovalFlowId $approvalFlow.Id -ErrorAction Stop + } + catch { + $lookupResult = $null + } + + $lookupResult | Should -BeNullOrEmpty + + foreach ($groupId in $script:TestApprovalFlowGroupIds) { + Remove-JcSdkUserGroup -Id $groupId -ErrorAction Stop | Out-Null + } + } +} + + From 0c4d4415fac42ace7565f391ef78bdef89718c46 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 25 Feb 2026 16:04:45 -0700 Subject: [PATCH 26/29] changelog address & CI permission --- .github/workflows/jcapi-powershell-ci.yml | 6 ++++++ .github/workflows/jcapi-powershell-release.yml | 12 +++++++++--- JumpCloud.SDK.V2.md | 2 +- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.github/workflows/jcapi-powershell-ci.yml b/.github/workflows/jcapi-powershell-ci.yml index cf833988e..4d07690d8 100644 --- a/.github/workflows/jcapi-powershell-ci.yml +++ b/.github/workflows/jcapi-powershell-ci.yml @@ -4,6 +4,12 @@ on: pull_request: branches: - master + +permissions: + contents: read + pull-requests: read + actions: write + concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true diff --git a/.github/workflows/jcapi-powershell-release.yml b/.github/workflows/jcapi-powershell-release.yml index 23f59deb0..3d6177ae7 100644 --- a/.github/workflows/jcapi-powershell-release.yml +++ b/.github/workflows/jcapi-powershell-release.yml @@ -6,6 +6,12 @@ on: - closed branches: - master + +permissions: + contents: write # required for gh release create in Draft-Release-* jobs + pull-requests: read + actions: read + jobs: Check-PR-Labels: if: github.event.pull_request.merged == true @@ -160,9 +166,9 @@ jobs: Manual-Approval-Release: needs: [Draft-Release-V1, Draft-Release-V2, Draft-Release-DI] if: | - always() && - (needs.Draft-Release-V1.result == 'success' || - needs.Draft-Release-V2.result == 'success' || + always() && + (needs.Draft-Release-V1.result == 'success' || + needs.Draft-Release-V2.result == 'success' || needs.Draft-Release-DI.result == 'success') environment: PublishToPSGallery runs-on: ubuntu-latest diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 3751319be..9378078b3 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,5 +1,5 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: February 18, 2026 +Release Date: February 25, 2026 #### RELEASE NOTES ``` Add accessRequest workflow functions/ general SDK updates from source diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index 1ddafc469..589110f8e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 2/18/2026 +# Generated on: 2/25/2026 # @{ From 96a17f99367ec175705075c745eb0cffe2d4cfdf Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 25 Feb 2026 16:26:07 -0700 Subject: [PATCH 27/29] trim datetime moduleValidation tests --- Tools/ModuleValidation.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/ModuleValidation.Tests.ps1 b/Tools/ModuleValidation.Tests.ps1 index d84cbdb1c..d50e3d949 100644 --- a/Tools/ModuleValidation.Tests.ps1 +++ b/Tools/ModuleValidation.Tests.ps1 @@ -79,7 +79,7 @@ Describe -Tag:('ModuleValidation') 'Module Validation' -ForEach $modulesToValida $latestChangelogVersion | Should -BeGreaterThan $galleryVersion # Validate the release date is today. - $latestReleaseDate = (Select-String -InputObject $changelogContent -Pattern "Release Date: (.*) ####").Matches.Groups[1].Value + $latestReleaseDate = (Select-String -InputObject $changelogContent -Pattern "Release Date: (.*) ####").Matches.Groups[1].Value.Trim() $todayDate = Get-Date -UFormat "%B %d, %Y" $latestReleaseDate | Should -Be $todayDate } From c1e4cfb69fc654ed9b00382b6f35fefd5d57eb10 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 25 Feb 2026 17:51:51 -0700 Subject: [PATCH 28/29] generate /w docs from master branch --- Configs/JumpCloud.SDK.V2.yaml | 2 +- JumpCloud.SDK.V2.md | 14 +------------- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 4 ++-- .../JumpCloud.SDK.V2/create-model-cmdlets.ps1 | 2 +- .../custom/generated/Clear-JcSdkAppleMdmDevice.ps1 | 2 +- .../Clear-JcSdkAppleMdmDeviceActivationLock.ps1 | 2 +- .../custom/generated/Get-JcSdkAccessRequest.ps1 | 2 +- .../generated/Get-JcSdkAccessRequestProgress.ps1 | 2 +- .../custom/generated/Get-JcSdkActiveDirectory.ps1 | 2 +- .../generated/Get-JcSdkActiveDirectoryAgent.ps1 | 2 +- .../Get-JcSdkActiveDirectoryAssociation.ps1 | 2 +- .../Get-JcSdkActiveDirectoryTraverseUser.ps1 | 2 +- .../Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 | 2 +- .../Get-JcSdkAdministratorOrganization.ps1 | 2 +- .../Get-JcSdkAdministratorOrganizationLink.ps1 | 2 +- .../custom/generated/Get-JcSdkAppleMdm.ps1 | 2 +- .../custom/generated/Get-JcSdkAppleMdmDevice.ps1 | 2 +- .../Get-JcSdkAppleMdmEnrollmentProfile.ps1 | 2 +- .../generated/Get-JcSdkApplicationAssociation.ps1 | 2 +- .../generated/Get-JcSdkApplicationTraverseUser.ps1 | 2 +- .../Get-JcSdkApplicationTraverseUserGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkApprovalFlow.ps1 | 2 +- .../generated/Get-JcSdkApprovalFlowSetting.ps1 | 2 +- .../generated/Get-JcSdkAuthenticationPolicy.ps1 | 2 +- .../custom/generated/Get-JcSdkBulkUserState.ps1 | 2 +- .../custom/generated/Get-JcSdkBulkUsersResult.ps1 | 2 +- .../generated/Get-JcSdkCommandAssociation.ps1 | 2 +- .../generated/Get-JcSdkCommandTraverseSystem.ps1 | 2 +- .../Get-JcSdkCommandTraverseSystemGroup.ps1 | 2 +- .../Get-JcSdkCustomEmailConfiguration.ps1 | 2 +- .../generated/Get-JcSdkCustomEmailTemplate.ps1 | 2 +- .../custom/generated/Get-JcSdkDirectory.ps1 | 2 +- .../custom/generated/Get-JcSdkDuoAccount.ps1 | 2 +- .../custom/generated/Get-JcSdkDuoApplication.ps1 | 2 +- .../custom/generated/Get-JcSdkGSuite.ps1 | 2 +- .../generated/Get-JcSdkGSuiteAssociation.ps1 | 2 +- .../generated/Get-JcSdkGSuiteTranslationRule.ps1 | 2 +- .../generated/Get-JcSdkGSuiteTraverseUser.ps1 | 2 +- .../generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 | 2 +- .../generated/Get-JcSdkGSuiteUsersToImport.ps1 | 2 +- .../custom/generated/Get-JcSdkGroup.ps1 | 2 +- .../Get-JcSdkGsuiteUsersToImportFormatted.ps1 | 2 +- .../custom/generated/Get-JcSdkIPList.ps1 | 2 +- .../custom/generated/Get-JcSdkLdapServer.ps1 | 2 +- .../generated/Get-JcSdkLdapServerAssociation.ps1 | 2 +- .../generated/Get-JcSdkLdapServerSambaDomain.ps1 | 2 +- .../generated/Get-JcSdkLdapServerTraverseUser.ps1 | 2 +- .../Get-JcSdkLdapServerTraverseUserGroup.ps1 | 2 +- .../Get-JcSdkNextScheduledBulkUserState.ps1 | 2 +- .../custom/generated/Get-JcSdkOffice365.ps1 | 2 +- .../generated/Get-JcSdkOffice365Association.ps1 | 2 +- .../Get-JcSdkOffice365TranslationRule.ps1 | 2 +- .../generated/Get-JcSdkOffice365TraverseUser.ps1 | 2 +- .../Get-JcSdkOffice365TraverseUserGroup.ps1 | 2 +- .../generated/Get-JcSdkOffice365UsersToImport.ps1 | 2 +- .../Get-JcSdkOrganizationPolicyResult.ps1 | 2 +- .../custom/generated/Get-JcSdkPolicy.ps1 | 2 +- .../generated/Get-JcSdkPolicyAssociation.ps1 | 2 +- .../custom/generated/Get-JcSdkPolicyGroup.ps1 | 2 +- .../generated/Get-JcSdkPolicyGroupAssociation.ps1 | 2 +- .../generated/Get-JcSdkPolicyGroupMember.ps1 | 2 +- .../generated/Get-JcSdkPolicyGroupMembership.ps1 | 2 +- .../Get-JcSdkPolicyGroupTraverseSystem.ps1 | 2 +- .../Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkPolicyResult.ps1 | 2 +- .../custom/generated/Get-JcSdkPolicyStatus.ps1 | 2 +- .../custom/generated/Get-JcSdkPolicyTemplate.ps1 | 2 +- .../generated/Get-JcSdkPolicyTraverseSystem.ps1 | 2 +- .../Get-JcSdkPolicyTraverseSystemGroup.ps1 | 2 +- .../generated/Get-JcSdkProviderAdministrator.ps1 | 2 +- .../generated/Get-JcSdkProviderOrganization.ps1 | 2 +- .../custom/generated/Get-JcSdkProvidersInvoice.ps1 | 2 +- .../generated/Get-JcSdkRadiusServerAssociation.ps1 | 2 +- .../Get-JcSdkRadiusServerTraverseUser.ps1 | 2 +- .../Get-JcSdkRadiusServerTraverseUserGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkSoftwareApp.ps1 | 2 +- .../generated/Get-JcSdkSoftwareAppAssociation.ps1 | 2 +- .../generated/Get-JcSdkSoftwareAppStatus.ps1 | 2 +- .../Get-JcSdkSoftwareAppTraverseSystem.ps1 | 2 +- .../Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkSubscription.ps1 | 2 +- .../generated/Get-JcSdkSystemAssociation.ps1 | 2 +- .../custom/generated/Get-JcSdkSystemFdeKey.ps1 | 2 +- .../custom/generated/Get-JcSdkSystemGroup.ps1 | 2 +- .../generated/Get-JcSdkSystemGroupAssociation.ps1 | 2 +- .../generated/Get-JcSdkSystemGroupMember.ps1 | 2 +- .../generated/Get-JcSdkSystemGroupMembership.ps1 | 2 +- .../Get-JcSdkSystemGroupTraverseCommand.ps1 | 2 +- .../Get-JcSdkSystemGroupTraversePolicy.ps1 | 2 +- .../Get-JcSdkSystemGroupTraversePolicyGroup.ps1 | 2 +- .../generated/Get-JcSdkSystemGroupTraverseUser.ps1 | 2 +- .../Get-JcSdkSystemGroupTraverseUserGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkSystemInsightAlf.ps1 | 2 +- .../Get-JcSdkSystemInsightAlfException.ps1 | 2 +- .../Get-JcSdkSystemInsightAlfExplicitAuth.ps1 | 2 +- .../custom/generated/Get-JcSdkSystemInsightApp.ps1 | 2 +- .../Get-JcSdkSystemInsightAppCompatShim.ps1 | 2 +- .../Get-JcSdkSystemInsightAuthorizedKey.ps1 | 2 +- ...Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 | 2 +- .../Get-JcSdkSystemInsightAzureInstanceTag.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightBattery.ps1 | 2 +- .../Get-JcSdkSystemInsightBitlockerInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightBrowserPlugin.ps1 | 2 +- .../Get-JcSdkSystemInsightCertificate.ps1 | 2 +- .../Get-JcSdkSystemInsightChassisInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightChromeExtension.ps1 | 2 +- .../Get-JcSdkSystemInsightConnectivity.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightCrash.ps1 | 2 +- .../Get-JcSdkSystemInsightCupDestination.ps1 | 2 +- .../Get-JcSdkSystemInsightDiskEncryption.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightDiskInfo.ps1 | 2 +- .../Get-JcSdkSystemInsightDnsResolver.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightEtcHost.ps1 | 2 +- .../Get-JcSdkSystemInsightFirefoxAddon.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightGroup.ps1 | 2 +- .../Get-JcSdkSystemInsightIeExtension.ps1 | 2 +- .../Get-JcSdkSystemInsightInterfaceAddress.ps1 | 2 +- .../Get-JcSdkSystemInsightInterfaceDetail.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightKernelInfo.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightLaunchd.ps1 | 2 +- .../Get-JcSdkSystemInsightLinuxPackage.ps1 | 2 +- .../Get-JcSdkSystemInsightLoggedinUser.ps1 | 2 +- .../Get-JcSdkSystemInsightLogicalDrive.ps1 | 2 +- .../Get-JcSdkSystemInsightManagedPolicy.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightMount.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightOSVersion.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightPatch.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightProgram.ps1 | 2 +- .../Get-JcSdkSystemInsightPythonPackage.ps1 | 2 +- .../Get-JcSdkSystemInsightSafariExtension.ps1 | 2 +- .../Get-JcSdkSystemInsightScheduledTask.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightSecureboot.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightService.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightShadow.ps1 | 2 +- .../Get-JcSdkSystemInsightSharedFolder.ps1 | 2 +- .../Get-JcSdkSystemInsightSharedResource.ps1 | 2 +- .../Get-JcSdkSystemInsightSharingPreference.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightSipConfig.ps1 | 2 +- .../Get-JcSdkSystemInsightStartupItem.ps1 | 2 +- .../Get-JcSdkSystemInsightSystemControl.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightSystemInfo.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightTpmInfo.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUptime.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUsbDevice.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUser.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUserAssist.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUserGroup.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightUserSshKey.ps1 | 2 +- .../Get-JcSdkSystemInsightWifiNetwork.ps1 | 2 +- .../generated/Get-JcSdkSystemInsightWifiStatus.ps1 | 2 +- ...Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 | 2 +- ...et-JcSdkSystemInsightWindowsSecurityProduct.ps1 | 2 +- .../custom/generated/Get-JcSdkSystemMember.ps1 | 2 +- .../generated/Get-JcSdkSystemPolicyStatus.ps1 | 2 +- .../generated/Get-JcSdkSystemTraverseCommand.ps1 | 2 +- .../generated/Get-JcSdkSystemTraversePolicy.ps1 | 2 +- .../Get-JcSdkSystemTraversePolicyGroup.ps1 | 2 +- .../generated/Get-JcSdkSystemTraverseUser.ps1 | 2 +- .../generated/Get-JcSdkSystemTraverseUserGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkUserAssociation.ps1 | 2 +- .../custom/generated/Get-JcSdkUserGroup.ps1 | 2 +- .../generated/Get-JcSdkUserGroupAssociation.ps1 | 2 +- .../custom/generated/Get-JcSdkUserGroupMember.ps1 | 2 +- .../generated/Get-JcSdkUserGroupMembership.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseActiveDirectory.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseApplication.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseDirectory.ps1 | 2 +- .../generated/Get-JcSdkUserGroupTraverseGSuite.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseLdapServer.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseOffice365.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseRadiusServer.ps1 | 2 +- .../generated/Get-JcSdkUserGroupTraverseSystem.ps1 | 2 +- .../Get-JcSdkUserGroupTraverseSystemGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkUserMember.ps1 | 2 +- .../custom/generated/Get-JcSdkUserPushEndpoint.ps1 | 2 +- .../Get-JcSdkUserTraverseActiveDirectory.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseApplication.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseDirectory.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseGSuite.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseLdapServer.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseOffice365.ps1 | 2 +- .../Get-JcSdkUserTraverseRadiusServer.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseSystem.ps1 | 2 +- .../generated/Get-JcSdkUserTraverseSystemGroup.ps1 | 2 +- .../custom/generated/Get-JcSdkWorkday.ps1 | 2 +- .../custom/generated/Get-JcSdkWorkdayWorker.ps1 | 2 +- .../custom/generated/Grant-JcSdkWorkday.ps1 | 2 +- .../custom/generated/Import-JcSdkScim.ps1 | 2 +- .../custom/generated/Import-JcSdkWorkday.ps1 | 2 +- .../custom/generated/Import-JcSdkWorkdayResult.ps1 | 2 +- .../Invoke-JcSdkReclaimSoftwareAppLicense.ps1 | 2 +- .../custom/generated/Lock-JcSdkAppleMdmDevice.ps1 | 2 +- .../custom/generated/New-JcSdkActiveDirectory.ps1 | 2 +- .../generated/New-JcSdkActiveDirectoryAgent.ps1 | 2 +- .../New-JcSdkAdministratorOrganization.ps1 | 2 +- .../custom/generated/New-JcSdkApprovalFlow.ps1 | 2 +- .../generated/New-JcSdkAuthenticationPolicy.ps1 | 2 +- .../custom/generated/New-JcSdkBulkUser.ps1 | 2 +- .../custom/generated/New-JcSdkBulkUserState.ps1 | 2 +- .../New-JcSdkCustomEmailConfiguration.ps1 | 2 +- .../custom/generated/New-JcSdkDuoAccount.ps1 | 2 +- .../custom/generated/New-JcSdkDuoApplication.ps1 | 2 +- .../generated/New-JcSdkGSuiteTranslationRule.ps1 | 2 +- .../custom/generated/New-JcSdkIPList.ps1 | 2 +- .../generated/New-JcSdkLdapServerSambaDomain.ps1 | 2 +- .../New-JcSdkOffice365TranslationRule.ps1 | 2 +- .../custom/generated/New-JcSdkPolicy.ps1 | 2 +- .../custom/generated/New-JcSdkPolicyGroup.ps1 | 2 +- .../generated/New-JcSdkProviderAdministrator.ps1 | 2 +- .../custom/generated/New-JcSdkSoftwareApp.ps1 | 2 +- .../custom/generated/New-JcSdkSystemGroup.ps1 | 2 +- .../custom/generated/New-JcSdkUserGroup.ps1 | 2 +- .../custom/generated/New-JcSdkWorkday.ps1 | 2 +- .../generated/Remove-JcSdkActiveDirectory.ps1 | 2 +- .../generated/Remove-JcSdkActiveDirectoryAgent.ps1 | 2 +- .../Remove-JcSdkAdministratorOrganization.ps1 | 2 +- .../custom/generated/Remove-JcSdkAppleMdm.ps1 | 2 +- .../generated/Remove-JcSdkAppleMdmDevice.ps1 | 2 +- .../generated/Remove-JcSdkApplicationLogo.ps1 | 2 +- .../custom/generated/Remove-JcSdkApprovalFlow.ps1 | 2 +- .../generated/Remove-JcSdkAuthenticationPolicy.ps1 | 2 +- .../custom/generated/Remove-JcSdkBulkUserState.ps1 | 2 +- .../Remove-JcSdkCustomEmailConfiguration.ps1 | 2 +- .../custom/generated/Remove-JcSdkDuoAccount.ps1 | 2 +- .../generated/Remove-JcSdkDuoApplication.ps1 | 2 +- .../Remove-JcSdkGSuiteTranslationRule.ps1 | 2 +- .../custom/generated/Remove-JcSdkIPList.ps1 | 2 +- .../Remove-JcSdkLdapServerSambaDomain.ps1 | 2 +- .../Remove-JcSdkOffice365TranslationRule.ps1 | 2 +- .../custom/generated/Remove-JcSdkPolicy.ps1 | 2 +- .../custom/generated/Remove-JcSdkPolicyGroup.ps1 | 2 +- .../Remove-JcSdkProviderAdministrator.ps1 | 2 +- .../custom/generated/Remove-JcSdkSoftwareApp.ps1 | 2 +- .../custom/generated/Remove-JcSdkSystemGroup.ps1 | 2 +- .../custom/generated/Remove-JcSdkUserGroup.ps1 | 2 +- .../generated/Remove-JcSdkUserPushEndpoint.ps1 | 2 +- .../generated/Remove-JcSdkWorkdayAuthorization.ps1 | 2 +- .../generated/Restart-JcSdkAppleMdmDevice.ps1 | 2 +- .../custom/generated/Set-JcSdkAccessRequest.ps1 | 2 +- .../generated/Set-JcSdkAccessRequestApproval.ps1 | 2 +- .../Set-JcSdkActiveDirectoryAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkAppleMdm.ps1 | 2 +- .../generated/Set-JcSdkApplicationAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkApprovalFlow.ps1 | 2 +- .../generated/Set-JcSdkApprovalFlowSetting.ps1 | 2 +- .../generated/Set-JcSdkCommandAssociation.ps1 | 2 +- .../Set-JcSdkCustomEmailConfiguration.ps1 | 2 +- .../custom/generated/Set-JcSdkDuoApplication.ps1 | 2 +- .../generated/Set-JcSdkGSuiteAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkIPList.ps1 | 2 +- .../generated/Set-JcSdkLdapServerAssociation.ps1 | 2 +- .../generated/Set-JcSdkLdapServerSambaDomain.ps1 | 2 +- .../generated/Set-JcSdkOffice365Association.ps1 | 2 +- .../custom/generated/Set-JcSdkPolicy.ps1 | 2 +- .../generated/Set-JcSdkPolicyAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkPolicyGroup.ps1 | 2 +- .../generated/Set-JcSdkPolicyGroupAssociation.ps1 | 2 +- .../generated/Set-JcSdkPolicyGroupMember.ps1 | 2 +- .../generated/Set-JcSdkRadiusServerAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkSoftwareApp.ps1 | 2 +- .../generated/Set-JcSdkSoftwareAppAssociation.ps1 | 2 +- .../generated/Set-JcSdkSystemAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkSystemGroup.ps1 | 2 +- .../generated/Set-JcSdkSystemGroupAssociation.ps1 | 2 +- .../generated/Set-JcSdkSystemGroupMember.ps1 | 2 +- .../custom/generated/Set-JcSdkUserAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkUserGroup.ps1 | 2 +- .../generated/Set-JcSdkUserGroupAssociation.ps1 | 2 +- .../custom/generated/Set-JcSdkUserGroupMember.ps1 | 2 +- .../custom/generated/Set-JcSdkWorkday.ps1 | 2 +- .../custom/generated/Stop-JcSdkAppleMdmDevice.ps1 | 2 +- .../custom/generated/Sync-JcSdkAppleMdmDevice.ps1 | 2 +- .../Update-JcSdkAppleMdmDeviceLockInformation.ps1 | 2 +- .../generated/Update-JcSdkAuthenticationPolicy.ps1 | 2 +- .../custom/generated/Update-JcSdkBulkUser.ps1 | 2 +- .../custom/generated/Update-JcSdkGSuite.ps1 | 2 +- .../custom/generated/Update-JcSdkIPList.ps1 | 2 +- .../custom/generated/Update-JcSdkLdapServer.ps1 | 2 +- .../custom/generated/Update-JcSdkOffice365.ps1 | 2 +- .../generated/Update-JcSdkUserPushEndpoint.ps1 | 2 +- .../docs/exports/Clear-JcSdkAppleMdmDevice.md | 2 +- .../Clear-JcSdkAppleMdmDeviceActivationLock.md | 2 +- .../docs/exports/Get-JcSdkAccessRequest.md | 2 +- .../docs/exports/Get-JcSdkAccessRequestProgress.md | 2 +- .../docs/exports/Get-JcSdkActiveDirectory.md | 2 +- .../docs/exports/Get-JcSdkActiveDirectoryAgent.md | 2 +- .../exports/Get-JcSdkActiveDirectoryAssociation.md | 2 +- .../Get-JcSdkActiveDirectoryTraverseUser.md | 2 +- .../Get-JcSdkActiveDirectoryTraverseUserGroup.md | 2 +- .../exports/Get-JcSdkAdministratorOrganization.md | 2 +- .../Get-JcSdkAdministratorOrganizationLink.md | 2 +- .../docs/exports/Get-JcSdkAppleMdm.md | 2 +- .../docs/exports/Get-JcSdkAppleMdmDevice.md | 2 +- .../exports/Get-JcSdkAppleMdmEnrollmentProfile.md | 2 +- .../exports/Get-JcSdkApplicationAssociation.md | 2 +- .../exports/Get-JcSdkApplicationTraverseUser.md | 2 +- .../Get-JcSdkApplicationTraverseUserGroup.md | 2 +- .../docs/exports/Get-JcSdkApprovalFlow.md | 2 +- .../docs/exports/Get-JcSdkApprovalFlowSetting.md | 2 +- .../docs/exports/Get-JcSdkAuthenticationPolicy.md | 2 +- .../docs/exports/Get-JcSdkBulkUserState.md | 2 +- .../docs/exports/Get-JcSdkBulkUsersResult.md | 2 +- .../docs/exports/Get-JcSdkCommandAssociation.md | 2 +- .../docs/exports/Get-JcSdkCommandTraverseSystem.md | 2 +- .../exports/Get-JcSdkCommandTraverseSystemGroup.md | 2 +- .../exports/Get-JcSdkCustomEmailConfiguration.md | 2 +- .../docs/exports/Get-JcSdkCustomEmailTemplate.md | 2 +- .../docs/exports/Get-JcSdkDirectory.md | 2 +- .../docs/exports/Get-JcSdkDuoAccount.md | 2 +- .../docs/exports/Get-JcSdkDuoApplication.md | 2 +- .../docs/exports/Get-JcSdkGSuite.md | 2 +- .../docs/exports/Get-JcSdkGSuiteAssociation.md | 2 +- .../docs/exports/Get-JcSdkGSuiteTranslationRule.md | 2 +- .../docs/exports/Get-JcSdkGSuiteTraverseUser.md | 2 +- .../exports/Get-JcSdkGSuiteTraverseUserGroup.md | 2 +- .../docs/exports/Get-JcSdkGSuiteUsersToImport.md | 2 +- .../docs/exports/Get-JcSdkGroup.md | 2 +- .../Get-JcSdkGsuiteUsersToImportFormatted.md | 2 +- .../docs/exports/Get-JcSdkIPList.md | 2 +- .../docs/exports/Get-JcSdkLdapServer.md | 2 +- .../docs/exports/Get-JcSdkLdapServerAssociation.md | 2 +- .../docs/exports/Get-JcSdkLdapServerSambaDomain.md | 2 +- .../exports/Get-JcSdkLdapServerTraverseUser.md | 2 +- .../Get-JcSdkLdapServerTraverseUserGroup.md | 2 +- .../exports/Get-JcSdkNextScheduledBulkUserState.md | 2 +- .../docs/exports/Get-JcSdkOffice365.md | 2 +- .../docs/exports/Get-JcSdkOffice365Association.md | 2 +- .../exports/Get-JcSdkOffice365TranslationRule.md | 2 +- .../docs/exports/Get-JcSdkOffice365TraverseUser.md | 2 +- .../exports/Get-JcSdkOffice365TraverseUserGroup.md | 2 +- .../exports/Get-JcSdkOffice365UsersToImport.md | 2 +- .../exports/Get-JcSdkOrganizationPolicyResult.md | 2 +- .../docs/exports/Get-JcSdkPolicy.md | 2 +- .../docs/exports/Get-JcSdkPolicyAssociation.md | 2 +- .../docs/exports/Get-JcSdkPolicyGroup.md | 2 +- .../exports/Get-JcSdkPolicyGroupAssociation.md | 2 +- .../docs/exports/Get-JcSdkPolicyGroupMember.md | 2 +- .../docs/exports/Get-JcSdkPolicyGroupMembership.md | 2 +- .../exports/Get-JcSdkPolicyGroupTraverseSystem.md | 2 +- .../Get-JcSdkPolicyGroupTraverseSystemGroup.md | 2 +- .../docs/exports/Get-JcSdkPolicyResult.md | 2 +- .../docs/exports/Get-JcSdkPolicyStatus.md | 2 +- .../docs/exports/Get-JcSdkPolicyTemplate.md | 2 +- .../docs/exports/Get-JcSdkPolicyTraverseSystem.md | 2 +- .../exports/Get-JcSdkPolicyTraverseSystemGroup.md | 2 +- .../docs/exports/Get-JcSdkProviderAdministrator.md | 2 +- .../docs/exports/Get-JcSdkProviderOrganization.md | 2 +- .../docs/exports/Get-JcSdkProvidersInvoice.md | 2 +- .../exports/Get-JcSdkRadiusServerAssociation.md | 2 +- .../exports/Get-JcSdkRadiusServerTraverseUser.md | 2 +- .../Get-JcSdkRadiusServerTraverseUserGroup.md | 2 +- .../docs/exports/Get-JcSdkSoftwareApp.md | 2 +- .../exports/Get-JcSdkSoftwareAppAssociation.md | 2 +- .../docs/exports/Get-JcSdkSoftwareAppStatus.md | 2 +- .../exports/Get-JcSdkSoftwareAppTraverseSystem.md | 2 +- .../Get-JcSdkSoftwareAppTraverseSystemGroup.md | 2 +- .../docs/exports/Get-JcSdkSubscription.md | 2 +- .../docs/exports/Get-JcSdkSystemAssociation.md | 2 +- .../docs/exports/Get-JcSdkSystemFdeKey.md | 2 +- .../docs/exports/Get-JcSdkSystemGroup.md | 2 +- .../exports/Get-JcSdkSystemGroupAssociation.md | 2 +- .../docs/exports/Get-JcSdkSystemGroupMember.md | 2 +- .../docs/exports/Get-JcSdkSystemGroupMembership.md | 2 +- .../exports/Get-JcSdkSystemGroupTraverseCommand.md | 2 +- .../exports/Get-JcSdkSystemGroupTraversePolicy.md | 2 +- .../Get-JcSdkSystemGroupTraversePolicyGroup.md | 2 +- .../exports/Get-JcSdkSystemGroupTraverseUser.md | 2 +- .../Get-JcSdkSystemGroupTraverseUserGroup.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightAlf.md | 2 +- .../exports/Get-JcSdkSystemInsightAlfException.md | 2 +- .../Get-JcSdkSystemInsightAlfExplicitAuth.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightApp.md | 2 +- .../exports/Get-JcSdkSystemInsightAppCompatShim.md | 2 +- .../exports/Get-JcSdkSystemInsightAuthorizedKey.md | 2 +- .../Get-JcSdkSystemInsightAzureInstanceMetadata.md | 2 +- .../Get-JcSdkSystemInsightAzureInstanceTag.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightBattery.md | 2 +- .../exports/Get-JcSdkSystemInsightBitlockerInfo.md | 2 +- .../exports/Get-JcSdkSystemInsightBrowserPlugin.md | 2 +- .../exports/Get-JcSdkSystemInsightCertificate.md | 2 +- .../exports/Get-JcSdkSystemInsightChassisInfo.md | 2 +- .../Get-JcSdkSystemInsightChromeExtension.md | 2 +- .../exports/Get-JcSdkSystemInsightConnectivity.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightCrash.md | 2 +- .../Get-JcSdkSystemInsightCupDestination.md | 2 +- .../Get-JcSdkSystemInsightDiskEncryption.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightDiskInfo.md | 2 +- .../exports/Get-JcSdkSystemInsightDnsResolver.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightEtcHost.md | 2 +- .../exports/Get-JcSdkSystemInsightFirefoxAddon.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightGroup.md | 2 +- .../exports/Get-JcSdkSystemInsightIeExtension.md | 2 +- .../Get-JcSdkSystemInsightInterfaceAddress.md | 2 +- .../Get-JcSdkSystemInsightInterfaceDetail.md | 2 +- .../exports/Get-JcSdkSystemInsightKernelInfo.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightLaunchd.md | 2 +- .../exports/Get-JcSdkSystemInsightLinuxPackage.md | 2 +- .../exports/Get-JcSdkSystemInsightLoggedinUser.md | 2 +- .../exports/Get-JcSdkSystemInsightLogicalDrive.md | 2 +- .../exports/Get-JcSdkSystemInsightManagedPolicy.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightMount.md | 2 +- .../exports/Get-JcSdkSystemInsightOSVersion.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightPatch.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightProgram.md | 2 +- .../exports/Get-JcSdkSystemInsightPythonPackage.md | 2 +- .../Get-JcSdkSystemInsightSafariExtension.md | 2 +- .../exports/Get-JcSdkSystemInsightScheduledTask.md | 2 +- .../exports/Get-JcSdkSystemInsightSecureboot.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightService.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightShadow.md | 2 +- .../exports/Get-JcSdkSystemInsightSharedFolder.md | 2 +- .../Get-JcSdkSystemInsightSharedResource.md | 2 +- .../Get-JcSdkSystemInsightSharingPreference.md | 2 +- .../exports/Get-JcSdkSystemInsightSipConfig.md | 2 +- .../exports/Get-JcSdkSystemInsightStartupItem.md | 2 +- .../exports/Get-JcSdkSystemInsightSystemControl.md | 2 +- .../exports/Get-JcSdkSystemInsightSystemInfo.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightTpmInfo.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightUptime.md | 2 +- .../exports/Get-JcSdkSystemInsightUsbDevice.md | 2 +- .../docs/exports/Get-JcSdkSystemInsightUser.md | 2 +- .../exports/Get-JcSdkSystemInsightUserAssist.md | 2 +- .../exports/Get-JcSdkSystemInsightUserGroup.md | 2 +- .../exports/Get-JcSdkSystemInsightUserSshKey.md | 2 +- .../exports/Get-JcSdkSystemInsightWifiNetwork.md | 2 +- .../exports/Get-JcSdkSystemInsightWifiStatus.md | 2 +- .../Get-JcSdkSystemInsightWindowsSecurityCenter.md | 2 +- ...Get-JcSdkSystemInsightWindowsSecurityProduct.md | 2 +- .../docs/exports/Get-JcSdkSystemMember.md | 2 +- .../docs/exports/Get-JcSdkSystemPolicyStatus.md | 2 +- .../docs/exports/Get-JcSdkSystemTraverseCommand.md | 2 +- .../docs/exports/Get-JcSdkSystemTraversePolicy.md | 2 +- .../exports/Get-JcSdkSystemTraversePolicyGroup.md | 2 +- .../docs/exports/Get-JcSdkSystemTraverseUser.md | 2 +- .../exports/Get-JcSdkSystemTraverseUserGroup.md | 2 +- .../docs/exports/Get-JcSdkUserAssociation.md | 2 +- .../docs/exports/Get-JcSdkUserGroup.md | 2 +- .../docs/exports/Get-JcSdkUserGroupAssociation.md | 2 +- .../docs/exports/Get-JcSdkUserGroupMember.md | 2 +- .../docs/exports/Get-JcSdkUserGroupMembership.md | 2 +- .../Get-JcSdkUserGroupTraverseActiveDirectory.md | 2 +- .../Get-JcSdkUserGroupTraverseApplication.md | 2 +- .../exports/Get-JcSdkUserGroupTraverseDirectory.md | 2 +- .../exports/Get-JcSdkUserGroupTraverseGSuite.md | 2 +- .../Get-JcSdkUserGroupTraverseLdapServer.md | 2 +- .../exports/Get-JcSdkUserGroupTraverseOffice365.md | 2 +- .../Get-JcSdkUserGroupTraverseRadiusServer.md | 2 +- .../exports/Get-JcSdkUserGroupTraverseSystem.md | 2 +- .../Get-JcSdkUserGroupTraverseSystemGroup.md | 2 +- .../docs/exports/Get-JcSdkUserMember.md | 2 +- .../docs/exports/Get-JcSdkUserPushEndpoint.md | 2 +- .../Get-JcSdkUserTraverseActiveDirectory.md | 2 +- .../exports/Get-JcSdkUserTraverseApplication.md | 2 +- .../docs/exports/Get-JcSdkUserTraverseDirectory.md | 2 +- .../docs/exports/Get-JcSdkUserTraverseGSuite.md | 2 +- .../exports/Get-JcSdkUserTraverseLdapServer.md | 2 +- .../docs/exports/Get-JcSdkUserTraverseOffice365.md | 2 +- .../exports/Get-JcSdkUserTraverseRadiusServer.md | 2 +- .../docs/exports/Get-JcSdkUserTraverseSystem.md | 2 +- .../exports/Get-JcSdkUserTraverseSystemGroup.md | 2 +- .../docs/exports/Get-JcSdkWorkday.md | 2 +- .../docs/exports/Get-JcSdkWorkdayWorker.md | 2 +- .../docs/exports/Grant-JcSdkWorkday.md | 2 +- .../docs/exports/Import-JcSdkScim.md | 2 +- .../docs/exports/Import-JcSdkWorkday.md | 2 +- .../docs/exports/Import-JcSdkWorkdayResult.md | 2 +- .../Invoke-JcSdkReclaimSoftwareAppLicense.md | 2 +- .../docs/exports/JumpCloud.SDK.V2.md | 2 +- .../docs/exports/Lock-JcSdkAppleMdmDevice.md | 2 +- .../docs/exports/New-JcSdkActiveDirectory.md | 2 +- .../docs/exports/New-JcSdkActiveDirectoryAgent.md | 2 +- .../exports/New-JcSdkAdministratorOrganization.md | 2 +- .../docs/exports/New-JcSdkApprovalFlow.md | 2 +- .../docs/exports/New-JcSdkAuthenticationPolicy.md | 2 +- .../docs/exports/New-JcSdkBulkUser.md | 2 +- .../docs/exports/New-JcSdkBulkUserState.md | 2 +- .../exports/New-JcSdkCustomEmailConfiguration.md | 2 +- .../docs/exports/New-JcSdkDuoAccount.md | 2 +- .../docs/exports/New-JcSdkDuoApplication.md | 2 +- .../docs/exports/New-JcSdkGSuiteTranslationRule.md | 2 +- .../docs/exports/New-JcSdkIPList.md | 2 +- .../docs/exports/New-JcSdkLdapServerSambaDomain.md | 2 +- .../exports/New-JcSdkOffice365TranslationRule.md | 2 +- .../docs/exports/New-JcSdkPolicy.md | 2 +- .../docs/exports/New-JcSdkPolicyGroup.md | 2 +- .../docs/exports/New-JcSdkProviderAdministrator.md | 2 +- .../docs/exports/New-JcSdkSoftwareApp.md | 2 +- .../docs/exports/New-JcSdkSystemGroup.md | 2 +- .../docs/exports/New-JcSdkUserGroup.md | 2 +- .../docs/exports/New-JcSdkWorkday.md | 2 +- .../docs/exports/Remove-JcSdkActiveDirectory.md | 2 +- .../exports/Remove-JcSdkActiveDirectoryAgent.md | 2 +- .../Remove-JcSdkAdministratorOrganization.md | 2 +- .../docs/exports/Remove-JcSdkAppleMdm.md | 2 +- .../docs/exports/Remove-JcSdkAppleMdmDevice.md | 2 +- .../docs/exports/Remove-JcSdkApplicationLogo.md | 2 +- .../docs/exports/Remove-JcSdkApprovalFlow.md | 2 +- .../exports/Remove-JcSdkAuthenticationPolicy.md | 2 +- .../docs/exports/Remove-JcSdkBulkUserState.md | 2 +- .../Remove-JcSdkCustomEmailConfiguration.md | 2 +- .../docs/exports/Remove-JcSdkDuoAccount.md | 2 +- .../docs/exports/Remove-JcSdkDuoApplication.md | 2 +- .../exports/Remove-JcSdkGSuiteTranslationRule.md | 2 +- .../docs/exports/Remove-JcSdkIPList.md | 2 +- .../exports/Remove-JcSdkLdapServerSambaDomain.md | 2 +- .../Remove-JcSdkOffice365TranslationRule.md | 2 +- .../docs/exports/Remove-JcSdkPolicy.md | 2 +- .../docs/exports/Remove-JcSdkPolicyGroup.md | 2 +- .../exports/Remove-JcSdkProviderAdministrator.md | 2 +- .../docs/exports/Remove-JcSdkSoftwareApp.md | 2 +- .../docs/exports/Remove-JcSdkSystemGroup.md | 2 +- .../docs/exports/Remove-JcSdkUserGroup.md | 2 +- .../docs/exports/Remove-JcSdkUserPushEndpoint.md | 2 +- .../exports/Remove-JcSdkWorkdayAuthorization.md | 2 +- .../docs/exports/Restart-JcSdkAppleMdmDevice.md | 2 +- .../docs/exports/Set-JcSdkAccessRequest.md | 2 +- .../docs/exports/Set-JcSdkAccessRequestApproval.md | 2 +- .../exports/Set-JcSdkActiveDirectoryAssociation.md | 2 +- .../docs/exports/Set-JcSdkAppleMdm.md | 2 +- .../exports/Set-JcSdkApplicationAssociation.md | 2 +- .../docs/exports/Set-JcSdkApprovalFlow.md | 2 +- .../docs/exports/Set-JcSdkApprovalFlowSetting.md | 2 +- .../docs/exports/Set-JcSdkCommandAssociation.md | 2 +- .../exports/Set-JcSdkCustomEmailConfiguration.md | 2 +- .../docs/exports/Set-JcSdkDuoApplication.md | 2 +- .../docs/exports/Set-JcSdkGSuiteAssociation.md | 2 +- .../docs/exports/Set-JcSdkIPList.md | 2 +- .../docs/exports/Set-JcSdkLdapServerAssociation.md | 2 +- .../docs/exports/Set-JcSdkLdapServerSambaDomain.md | 2 +- .../docs/exports/Set-JcSdkOffice365Association.md | 2 +- .../docs/exports/Set-JcSdkPolicy.md | 2 +- .../docs/exports/Set-JcSdkPolicyAssociation.md | 2 +- .../docs/exports/Set-JcSdkPolicyGroup.md | 2 +- .../exports/Set-JcSdkPolicyGroupAssociation.md | 2 +- .../docs/exports/Set-JcSdkPolicyGroupMember.md | 2 +- .../exports/Set-JcSdkRadiusServerAssociation.md | 2 +- .../docs/exports/Set-JcSdkSoftwareApp.md | 2 +- .../exports/Set-JcSdkSoftwareAppAssociation.md | 2 +- .../docs/exports/Set-JcSdkSystemAssociation.md | 2 +- .../docs/exports/Set-JcSdkSystemGroup.md | 2 +- .../exports/Set-JcSdkSystemGroupAssociation.md | 2 +- .../docs/exports/Set-JcSdkSystemGroupMember.md | 2 +- .../docs/exports/Set-JcSdkUserAssociation.md | 2 +- .../docs/exports/Set-JcSdkUserGroup.md | 2 +- .../docs/exports/Set-JcSdkUserGroupAssociation.md | 2 +- .../docs/exports/Set-JcSdkUserGroupMember.md | 2 +- .../docs/exports/Set-JcSdkWorkday.md | 2 +- .../docs/exports/Stop-JcSdkAppleMdmDevice.md | 2 +- .../docs/exports/Sync-JcSdkAppleMdmDevice.md | 2 +- .../Update-JcSdkAppleMdmDeviceLockInformation.md | 2 +- .../exports/Update-JcSdkAuthenticationPolicy.md | 2 +- .../docs/exports/Update-JcSdkBulkUser.md | 2 +- .../docs/exports/Update-JcSdkGSuite.md | 2 +- .../docs/exports/Update-JcSdkIPList.md | 2 +- .../docs/exports/Update-JcSdkLdapServer.md | 2 +- .../docs/exports/Update-JcSdkOffice365.md | 2 +- .../docs/exports/Update-JcSdkUserPushEndpoint.md | 2 +- 557 files changed, 558 insertions(+), 570 deletions(-) diff --git a/Configs/JumpCloud.SDK.V2.yaml b/Configs/JumpCloud.SDK.V2.yaml index 2abc66047..bb359b8c2 100644 --- a/Configs/JumpCloud.SDK.V2.yaml +++ b/Configs/JumpCloud.SDK.V2.yaml @@ -10,7 +10,7 @@ directive: - hide: true where: prefix: JcSdk -branch: CUT-4022_AccessRequests +branch: master namespace: JumpCloud.SDK.V2 metadata: description: The JumpCloud V2 PowerShell SDK diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index a2a64e051..3f13cb6cc 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -12,32 +12,20 @@ Add accessRequest workflow functions/ general SDK updates from source
Functions Added -Get-JcSdkApprovalFlow -Get-JcSdkAccessRequest -Get-JcSdkAccessRequestProgress -Get-JcSdkApprovalFlowSetting -New-JcSdkApprovalFlow -New-JcSdkAccessRequest -New-JcSdkApprovalFlowSetting -Remove-JcSdkApprovalFlow -Set-JcSdkApprovalFlow -Set-JcSdkAccessRequest -Set-JcSdkApprovalFlowSetting +No changes
Functions Modified No changes -
Functions Removed No changes -
## JumpCloud.SDK.V2-0.1.2 diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index 589110f8e..c259555dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -272,10 +272,10 @@ PrivateData = @{ Tags = 'JumpCloud,','DaaS,','Jump,','Cloud,','Directory' # A URL to the license for this module. - LicenseUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/LICENSE' + LicenseUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/master/LICENSE' # A URL to the main website for this project. - ProjectUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/' + ProjectUri = 'https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/' # A URL to an icon representing this module. # IconUri = '' diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 index c005532e9..8c17d6335 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/create-model-cmdlets.ps1 @@ -191,7 +191,7 @@ Create an in-memory object for ${ObjectType}. .Outputs ${ObjectTypeWithNamespace} .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/${ModuleName}/${cmdletNameInLowerCase} +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/${ModuleName}/${cmdletNameInLowerCase} #> function ${cmdletName} { [JumpCloud.SDK.V2.ModelCmdletAttribute()] diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 index 377195fda..ac8c36063 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDevice.ps1 @@ -70,7 +70,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md #> Function Clear-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 index 04cda5446..9f170e174 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Clear-JcSdkAppleMdmDeviceActivationLock.ps1 @@ -65,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md #> Function Clear-JcSdkAppleMdmDeviceActivationLock { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 index a9dc3631c..6910c66c0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequest.ps1 @@ -45,7 +45,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md #> Function Get-JcSdkAccessRequest { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 index afdf86deb..f842de8ed 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAccessRequestProgress.ps1 @@ -41,7 +41,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md #> Function Get-JcSdkAccessRequestProgress { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 index 797b2ecfd..531df2324 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectory.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md #> Function Get-JcSdkActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 index e0db67b83..7727b4369 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAgent.ps1 @@ -83,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md #> Function Get-JcSdkActiveDirectoryAgent { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 index 675bec6f3..cef3273bd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryAssociation.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md #> Function Get-JcSdkActiveDirectoryAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 index 5dffbbaea..6f78e9a45 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUser.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md #> Function Get-JcSdkActiveDirectoryTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 index bc387bec9..ec9dc41c8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkActiveDirectoryTraverseUserGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md #> Function Get-JcSdkActiveDirectoryTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 index f82074a9a..c26854694 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganization.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IAdministratorOrganizationLink .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md #> Function Get-JcSdkAdministratorOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 index f3f6c61b8..d6a1c85d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAdministratorOrganizationLink.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IAdministratorOrganizationLink .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md #> Function Get-JcSdkAdministratorOrganizationLink { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 index 06cfc0f08..a08360833 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdm.ps1 @@ -33,7 +33,7 @@ Get Apple MDM Server information within a JumpCloud Tenant .Outputs JumpCloud.SDK.V2.Models.IAppleMdm .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md #> Function Get-JcSdkAppleMdm { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 index 1688122d9..2a6244314 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmDevice.ps1 @@ -121,7 +121,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md #> Function Get-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 index 960f2a408..15e9c056d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAppleMdmEnrollmentProfile.ps1 @@ -35,7 +35,7 @@ Get an enrollment profile by Id .Outputs JumpCloud.SDK.V2.Models.IAppleMdm .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md #> Function Get-JcSdkAppleMdmEnrollmentProfile { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 index b0d7577dc..3d8446bfd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationAssociation.ps1 @@ -78,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md #> Function Get-JcSdkApplicationAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 index 7ab068e4b..0a00ff4cb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUser.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md #> Function Get-JcSdkApplicationTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 index 109c7c6ad..9b66b8d65 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApplicationTraverseUserGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md #> Function Get-JcSdkApplicationTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 index 0d1185546..c9a5bcc02 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlow.ps1 @@ -45,7 +45,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md #> Function Get-JcSdkApprovalFlow { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 index f3d1f62df..531dd9a62 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkApprovalFlowSetting.ps1 @@ -9,7 +9,7 @@ PS C:\> Get-JcSdkApprovalFlowSetting .Outputs JumpCloud.SDK.V2.Models.IJumpcloudIngressoAccessWorkflowSettings .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md #> Function Get-JcSdkApprovalFlowSetting { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 index d8b79932d..bbf4bad89 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkAuthenticationPolicy.ps1 @@ -101,7 +101,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md #> Function Get-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 index 572fc5c8a..b46d95481 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUserState.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IScheduledUserstateResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md #> Function Get-JcSdkBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 index 0834d68e8..c4a060e1d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkBulkUsersResult.ps1 @@ -76,7 +76,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md #> Function Get-JcSdkBulkUsersResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 index 10720c54c..9786aa98e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandAssociation.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md #> Function Get-JcSdkCommandAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 index f69e6a5c6..91f64e437 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystem.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md #> Function Get-JcSdkCommandTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 index 6f6e45c8a..cd9a1adec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCommandTraverseSystemGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md #> Function Get-JcSdkCommandTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 index 4da32a11c..2d44b8f70 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailConfiguration.ps1 @@ -59,7 +59,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md #> Function Get-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 index 76fd852a8..af9cbdd95 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkCustomEmailTemplate.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ICustomEmailTemplate .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md #> Function Get-JcSdkCustomEmailTemplate { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 index 57b59034d..09f7292c5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDirectory.ps1 @@ -41,7 +41,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IDirectory .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md #> Function Get-JcSdkDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 index d39032a6e..5d1e434a1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoAccount.ps1 @@ -75,7 +75,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md #> Function Get-JcSdkDuoAccount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 index 961e98924..e9c2cd31c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkDuoApplication.ps1 @@ -79,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md #> Function Get-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 index 15874cd70..a6ada04bc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuite.ps1 @@ -76,7 +76,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md #> Function Get-JcSdkGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 index d349ec025..3e3aa8a6e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteAssociation.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md #> Function Get-JcSdkGSuiteAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 index 4bdb011c2..f05ff5df1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTranslationRule.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md #> Function Get-JcSdkGSuiteTranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 index 2fa9a5918..c4841b5e1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUser.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md #> Function Get-JcSdkGSuiteTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 index e9402022b..2d21357c7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteTraverseUserGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md #> Function Get-JcSdkGSuiteTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 index 99a529740..5b36ccce5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGSuiteUsersToImport.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsC7Pl4LGsuitesGsuiteIdImportUsersGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md #> Function Get-JcSdkGSuiteUsersToImport { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 index 5cc6939d4..77ac209f4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGroup.ps1 @@ -57,7 +57,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IGroup .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md #> Function Get-JcSdkGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 index 22e0de0ba..373ac2a79 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkGsuiteUsersToImportFormatted.ps1 @@ -21,7 +21,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsKa8FhwGsuitesGsuiteIdImportJumpcloudusersGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md #> Function Get-JcSdkGsuiteUsersToImportFormatted { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 index 9e4b82371..59ecf399b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkIPList.ps1 @@ -79,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md #> Function Get-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 index bdccf7625..c7abfabe6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServer.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md #> Function Get-JcSdkLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 index fee5d6948..40b6ab696 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerAssociation.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md #> Function Get-JcSdkLdapServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 index ee3bb9a4e..53483268e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerSambaDomain.ps1 @@ -79,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md #> Function Get-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 index 04beb8324..a12c560c1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUser.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md #> Function Get-JcSdkLdapServerTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 index 449871beb..578cc6130 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkLdapServerTraverseUserGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md #> Function Get-JcSdkLdapServerTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 index bb4b3be52..c93819aa7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkNextScheduledBulkUserState.ps1 @@ -41,7 +41,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsUbbqf1BulkUserstatesEventlistNextGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md #> Function Get-JcSdkNextScheduledBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 index 9aec1ee59..f0bc4daf4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365.ps1 @@ -82,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md #> Function Get-JcSdkOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 index e806ee163..3e73b1b9c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365Association.ps1 @@ -82,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md #> Function Get-JcSdkOffice365Association { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 index d6032031e..4f855842e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TranslationRule.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md #> Function Get-JcSdkOffice365TranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 index b3d0ae04a..4cc16e918 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUser.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md #> Function Get-JcSdkOffice365TraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 index 039e47caf..0c4a01bcc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365TraverseUserGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md #> Function Get-JcSdkOffice365TraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 index dc1c30bff..be76309b4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOffice365UsersToImport.ps1 @@ -22,7 +22,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPaths1J0ThkrOffice365SOffice365IdImportUsersGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md #> Function Get-JcSdkOffice365UsersToImport { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 index 6a8d7d71e..36a9e51f6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkOrganizationPolicyResult.ps1 @@ -48,7 +48,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPolicyResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md #> Function Get-JcSdkOrganizationPolicyResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 index 26ef94728..0bbaf7804 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicy.ps1 @@ -103,7 +103,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md #> Function Get-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 index 78806130a..f34275680 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyAssociation.ps1 @@ -78,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md #> Function Get-JcSdkPolicyAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 index ba65025e8..33737f2a5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroup.ps1 @@ -83,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md #> Function Get-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 index 61bd4dec4..758da874d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupAssociation.ps1 @@ -48,7 +48,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IGraphConnection .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md #> Function Get-JcSdkPolicyGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 index 9a29d93c9..f8237a781 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMember.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md #> Function Get-JcSdkPolicyGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 index 0a5857715..6df8a2a6b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupMembership.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md #> Function Get-JcSdkPolicyGroupMembership { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 index ac066f1b5..d345b0d42 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystem.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md #> Function Get-JcSdkPolicyGroupTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 index 3207cd429..8474aff9b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyGroupTraverseSystemGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md #> Function Get-JcSdkPolicyGroupTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 index 213139c1a..1ce182296 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyResult.ps1 @@ -93,7 +93,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md #> Function Get-JcSdkPolicyResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 index 88fbc07a4..fe959693f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyStatus.ps1 @@ -48,7 +48,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPolicyResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md #> Function Get-JcSdkPolicyStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 index 19c1d0fb2..efa73d472 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTemplate.ps1 @@ -97,7 +97,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md #> Function Get-JcSdkPolicyTemplate { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 index e7cd8626b..76cf75e6b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystem.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md #> Function Get-JcSdkPolicyTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 index 01c7f3295..655b193a8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkPolicyTraverseSystemGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md #> Function Get-JcSdkPolicyTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 index 5bcf5269b..ac41f47f6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderAdministrator.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPathsYwlyndProvidersProviderIdAdministratorsGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md #> Function Get-JcSdkProviderAdministrator { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 index 53d9ace52..28a2fa7f2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProviderOrganization.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPaths1O3J7V8ProvidersProviderIdOrganizationsGetResponses200ContentApplicationJsonSchema .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md #> Function Get-JcSdkProviderOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 index 4a310521b..b7e7e72b8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkProvidersInvoice.ps1 @@ -55,7 +55,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md #> Function Get-JcSdkProvidersInvoice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 index fc816cc28..dd825f1ed 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerAssociation.ps1 @@ -78,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md #> Function Get-JcSdkRadiusServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 index eadf6bc67..4e66821a1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUser.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md #> Function Get-JcSdkRadiusServerTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 index 76a8d0c48..79b662d8b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkRadiusServerTraverseUserGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md #> Function Get-JcSdkRadiusServerTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 index 1b47f020c..c969fd44a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareApp.ps1 @@ -79,7 +79,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md #> Function Get-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 index 3890f67e2..a3e6e16c6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppAssociation.ps1 @@ -78,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md #> Function Get-JcSdkSoftwareAppAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 index a0055c3b8..382843b3b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppStatus.ps1 @@ -75,7 +75,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md #> Function Get-JcSdkSoftwareAppStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 index 9f1658a15..7fd6a783a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystem.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md #> Function Get-JcSdkSoftwareAppTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 index 141be9a5c..a28850d1c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSoftwareAppTraverseSystemGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md #> Function Get-JcSdkSoftwareAppTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 index 9346fa074..2b0d7e82d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSubscription.ps1 @@ -43,7 +43,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISubscription .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md #> Function Get-JcSdkSubscription { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 index 5122d8eae..ad656dacf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemAssociation.ps1 @@ -82,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md #> Function Get-JcSdkSystemAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 index f8d5e66cf..622948823 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemFdeKey.ps1 @@ -47,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md #> Function Get-JcSdkSystemFdeKey { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 index d8df51a5f..762b87354 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroup.ps1 @@ -93,7 +93,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md #> Function Get-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 index d62de0dc8..decbcff75 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupAssociation.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md #> Function Get-JcSdkSystemGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 index 71b3f640b..dda37e1b1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMember.ps1 @@ -76,7 +76,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md #> Function Get-JcSdkSystemGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 index 00cc45387..f47a30d5f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupMembership.ps1 @@ -73,7 +73,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md #> Function Get-JcSdkSystemGroupMembership { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 index 2005c3db0..e52672c3b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseCommand.ps1 @@ -96,7 +96,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md #> Function Get-JcSdkSystemGroupTraverseCommand { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 index 8aa22b8ad..e86453e53 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicy.ps1 @@ -91,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md #> Function Get-JcSdkSystemGroupTraversePolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 index 7c980c6c3..436149b23 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraversePolicyGroup.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md #> Function Get-JcSdkSystemGroupTraversePolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 index af0162e72..5a4021bdc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUser.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md #> Function Get-JcSdkSystemGroupTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 index 85217274e..9fb1d2209 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemGroupTraverseUserGroup.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md #> Function Get-JcSdkSystemGroupTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 index e4c83dc49..809c93c2e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlf.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAlf .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md #> Function Get-JcSdkSystemInsightAlf { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 index e71530bd0..40b66facd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfException.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAlfExceptions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md #> Function Get-JcSdkSystemInsightAlfException { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 index e668b4c0a..bf7fc66e3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAlfExplicitAuth.ps1 @@ -22,7 +22,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAlfExplicitAuths .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md #> Function Get-JcSdkSystemInsightAlfExplicitAuth { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 index 168d4333a..7dc436f20 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightApp.ps1 @@ -46,7 +46,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsApps .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md #> Function Get-JcSdkSystemInsightApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 index b19a3afaa..7b50a33e1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAppCompatShim.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAppcompatShims .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md #> Function Get-JcSdkSystemInsightAppCompatShim { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 index 90e0188ee..0c6c3d873 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAuthorizedKey.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAuthorizedKeys .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md #> Function Get-JcSdkSystemInsightAuthorizedKey { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 index 0e04aa720..f5d93a4e4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceMetadata.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAzureInstanceMetadata .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md #> Function Get-JcSdkSystemInsightAzureInstanceMetadata { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 index 1cc77fd75..4f3b5d6f3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightAzureInstanceTag.ps1 @@ -24,7 +24,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsAzureInstanceTags .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md #> Function Get-JcSdkSystemInsightAzureInstanceTag { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 index 5299adf8d..e0d62a19f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBattery.ps1 @@ -39,7 +39,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsBattery .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md #> Function Get-JcSdkSystemInsightBattery { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 index d22e01bf3..3da742eda 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBitlockerInfo.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsBitlockerInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md #> Function Get-JcSdkSystemInsightBitlockerInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 index b29a96fc1..ca30ea688 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightBrowserPlugin.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsBrowserPlugins .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md #> Function Get-JcSdkSystemInsightBrowserPlugin { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 index a981de718..deea6ee5f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCertificate.ps1 @@ -41,7 +41,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsCertificates .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md #> Function Get-JcSdkSystemInsightCertificate { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 index 3452a4170..64bc0c083 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChassisInfo.ps1 @@ -34,7 +34,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsChassisInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md #> Function Get-JcSdkSystemInsightChassisInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 index 8bf8e9a64..bb0718c7d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightChromeExtension.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsChromeExtensions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md #> Function Get-JcSdkSystemInsightChromeExtension { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 index 746291ca1..fd221f6a3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightConnectivity.ps1 @@ -30,7 +30,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsConnectivity .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md #> Function Get-JcSdkSystemInsightConnectivity { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 index 9f178ea39..0cf3299e5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCrash.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsCrashes .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md #> Function Get-JcSdkSystemInsightCrash { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 index 2189d97d3..8a9aabae3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightCupDestination.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsCupsDestinations .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md #> Function Get-JcSdkSystemInsightCupDestination { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 index 785faa654..45fc79afe 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskEncryption.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsDiskEncryption .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md #> Function Get-JcSdkSystemInsightDiskEncryption { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 index c9da51751..10c50ccdd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDiskInfo.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsDiskInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md #> Function Get-JcSdkSystemInsightDiskInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 index f521215c5..84aa72d5a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightDnsResolver.ps1 @@ -26,7 +26,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsDnsResolvers .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md #> Function Get-JcSdkSystemInsightDnsResolver { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 index 8a6d19573..8c7182fbc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightEtcHost.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsEtcHosts .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md #> Function Get-JcSdkSystemInsightEtcHost { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 index 669839a1b..a54c0dea1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightFirefoxAddon.ps1 @@ -35,7 +35,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsFirefoxAddons .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md #> Function Get-JcSdkSystemInsightFirefoxAddon { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 index 6e5a7a578..438b4ec7d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightGroup.ps1 @@ -26,7 +26,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsGroups .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md #> Function Get-JcSdkSystemInsightGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 index 549b890f0..ad9118f68 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightIeExtension.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsIeExtensions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md #> Function Get-JcSdkSystemInsightIeExtension { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 index de00e8de9..2f8507782 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceAddress.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsInterfaceAddresses .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md #> Function Get-JcSdkSystemInsightInterfaceAddress { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 index 4b940effc..761bcf3c6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightInterfaceDetail.ps1 @@ -55,7 +55,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsInterfaceDetails .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md #> Function Get-JcSdkSystemInsightInterfaceDetail { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 index 43e3a0099..bf14f2d72 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightKernelInfo.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsKernelInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md #> Function Get-JcSdkSystemInsightKernelInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 index 96a91b24f..7df764526 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLaunchd.ps1 @@ -42,7 +42,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLaunchd .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md #> Function Get-JcSdkSystemInsightLaunchd { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 index 37dd3869c..3c4e3001b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLinuxPackage.ps1 @@ -39,7 +39,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLinuxPackages .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md #> Function Get-JcSdkSystemInsightLinuxPackage { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 index 136ed03aa..997dc16f0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLoggedinUser.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLoggedInUsers .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md #> Function Get-JcSdkSystemInsightLoggedinUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 index 55d92c24f..067284dc7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightLogicalDrive.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsLogicalDrives .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md #> Function Get-JcSdkSystemInsightLogicalDrive { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 index 0101fc4fc..0bd27bafb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightManagedPolicy.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsManagedPolicies .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md #> Function Get-JcSdkSystemInsightManagedPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 index 4c691e6fa..dc803e22a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightMount.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsMounts .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md #> Function Get-JcSdkSystemInsightMount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 index e9ca19ac6..7e0d52aec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightOSVersion.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsOSVersion .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md #> Function Get-JcSdkSystemInsightOSVersion { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 index 64859ce49..449616376 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPatch.ps1 @@ -29,7 +29,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsPatches .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md #> Function Get-JcSdkSystemInsightPatch { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 index 03bd3328b..9895708c1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightProgram.ps1 @@ -36,7 +36,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsPrograms .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md #> Function Get-JcSdkSystemInsightProgram { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 index 98053b520..8307d5cc4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightPythonPackage.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsPythonPackages .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md #> Function Get-JcSdkSystemInsightPythonPackage { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 index f82f2dbac..189a7cd02 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSafariExtension.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSafariExtensions .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md #> Function Get-JcSdkSystemInsightSafariExtension { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 index 86aa0246f..3c9a0bdd2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightScheduledTask.ps1 @@ -30,7 +30,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsScheduledTasks .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md #> Function Get-JcSdkSystemInsightScheduledTask { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 index e4b7650e5..c8f20626f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSecureboot.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSecureboot .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md #> Function Get-JcSdkSystemInsightSecureboot { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 index 470e54ea8..1a9502bc8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightService.ps1 @@ -32,7 +32,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsServices .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md #> Function Get-JcSdkSystemInsightService { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 index bb7257ae5..695dc8243 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightShadow.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsShadow .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md #> Function Get-JcSdkSystemInsightShadow { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 index b8ef68dcb..fa8b23f83 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedFolder.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSharedFolders .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md #> Function Get-JcSdkSystemInsightSharedFolder { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 index 8900f44a7..d9debb1fb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharedResource.ps1 @@ -29,7 +29,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSharedResources .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md #> Function Get-JcSdkSystemInsightSharedResource { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 index 57d39147d..91f16cfec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSharingPreference.ps1 @@ -31,7 +31,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSharingPreferences .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md #> Function Get-JcSdkSystemInsightSharingPreference { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 index 26334a067..3e6f8aec3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSipConfig.ps1 @@ -24,7 +24,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSipConfig .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md #> Function Get-JcSdkSystemInsightSipConfig { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 index 60586098b..bdc4a23b6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightStartupItem.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsStartupItems .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md #> Function Get-JcSdkSystemInsightStartupItem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 index caf752b86..b15441920 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemControl.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSystemControls .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md #> Function Get-JcSdkSystemInsightSystemControl { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 index 115855fba..5c090bc42 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightSystemInfo.ps1 @@ -36,7 +36,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsSystemInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md #> Function Get-JcSdkSystemInsightSystemInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 index f8f730aad..cceb72c87 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightTpmInfo.ps1 @@ -30,7 +30,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsTpmInfo .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md #> Function Get-JcSdkSystemInsightTpmInfo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 index 7d0afb333..3edf3047f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUptime.ps1 @@ -26,7 +26,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUptime .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md #> Function Get-JcSdkSystemInsightUptime { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 index 6a04a8188..2c68ae51e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUsbDevice.ps1 @@ -33,7 +33,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUsbDevices .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md #> Function Get-JcSdkSystemInsightUsbDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 index dddeb5f16..6d12c5660 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUser.ps1 @@ -37,7 +37,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUsers .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md #> Function Get-JcSdkSystemInsightUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 index 7cd5974ec..d02a6682d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserAssist.ps1 @@ -25,7 +25,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUserassist .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md #> Function Get-JcSdkSystemInsightUserAssist { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 index 2e1baceb0..2118d3675 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserGroup.ps1 @@ -23,7 +23,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUserGroups .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md #> Function Get-JcSdkSystemInsightUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 index 90dd4db14..c7b25c022 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightUserSshKey.ps1 @@ -24,7 +24,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsUserSshKeys .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md #> Function Get-JcSdkSystemInsightUserSshKey { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 index edddb2cfd..5e26586aa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiNetwork.ps1 @@ -33,7 +33,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWifiNetworks .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md #> Function Get-JcSdkSystemInsightWifiNetwork { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 index 0be5fcc69..161c0e936 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWifiStatus.ps1 @@ -34,7 +34,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWifiStatus .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md #> Function Get-JcSdkSystemInsightWifiStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 index 4a07e059f..8ba603026 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityCenter.ps1 @@ -28,7 +28,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWindowsSecurityCenter .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md #> Function Get-JcSdkSystemInsightWindowsSecurityCenter { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 index 5741a17da..444260a24 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemInsightWindowsSecurityProduct.ps1 @@ -27,7 +27,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.ISystemInsightsWindowsSecurityProducts .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md #> Function Get-JcSdkSystemInsightWindowsSecurityProduct { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 index fe0daee4e..b54853154 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemMember.ps1 @@ -73,7 +73,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md #> Function Get-JcSdkSystemMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 index 4b0abe3f6..05d108ece 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemPolicyStatus.ps1 @@ -50,7 +50,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IPolicyResult .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md #> Function Get-JcSdkSystemPolicyStatus { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 index 4bc7bf872..f25f2c2d9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseCommand.ps1 @@ -98,7 +98,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md #> Function Get-JcSdkSystemTraverseCommand { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 index 7471d39e6..bccf31411 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicy.ps1 @@ -95,7 +95,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md #> Function Get-JcSdkSystemTraversePolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 index f86610e95..d2f557bcb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraversePolicyGroup.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md #> Function Get-JcSdkSystemTraversePolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 index ebd10e79f..2ef4bf10c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUser.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md #> Function Get-JcSdkSystemTraverseUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 index 02b1a37a5..f4eccf8f3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkSystemTraverseUserGroup.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md #> Function Get-JcSdkSystemTraverseUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 index 0f950b7d9..b1daf5df2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserAssociation.ps1 @@ -82,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md #> Function Get-JcSdkUserAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 index c7274cc5c..87cd98019 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroup.ps1 @@ -99,7 +99,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md #> Function Get-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 index 713b0c0d2..0c4e94629 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupAssociation.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md #> Function Get-JcSdkUserGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 index 9cd32cdb5..177de5343 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMember.ps1 @@ -74,7 +74,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md #> Function Get-JcSdkUserGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 index dd45f2a5b..57de04877 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupMembership.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md #> Function Get-JcSdkUserGroupMembership { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 index 4e5e8395d..4771f397f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseActiveDirectory.ps1 @@ -83,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md #> Function Get-JcSdkUserGroupTraverseActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 index 83c7de743..c5c3336ef 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseApplication.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md #> Function Get-JcSdkUserGroupTraverseApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 index 5a00db9a9..680ec5102 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseDirectory.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md #> Function Get-JcSdkUserGroupTraverseDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 index dcb901015..c0fdcbad8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseGSuite.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md #> Function Get-JcSdkUserGroupTraverseGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 index 836923621..49690e109 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseLdapServer.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md #> Function Get-JcSdkUserGroupTraverseLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 index 977382257..c1cc6434f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseOffice365.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md #> Function Get-JcSdkUserGroupTraverseOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 index 62a4fe16e..59cc875d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseRadiusServer.ps1 @@ -89,7 +89,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md #> Function Get-JcSdkUserGroupTraverseRadiusServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 index a9d4f874d..32a25e5f4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystem.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md #> Function Get-JcSdkUserGroupTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 index 0fcb395d6..ba31c4794 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserGroupTraverseSystemGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md #> Function Get-JcSdkUserGroupTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 index eec3b5c8c..d2d5f6e56 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserMember.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md #> Function Get-JcSdkUserMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 index a764e4d3b..fafbbcc70 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserPushEndpoint.ps1 @@ -77,7 +77,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md #> Function Get-JcSdkUserPushEndpoint { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 index 198b97d1c..34a944110 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseActiveDirectory.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md #> Function Get-JcSdkUserTraverseActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 index 9eb8a030f..3d00bfb17 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseApplication.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md #> Function Get-JcSdkUserTraverseApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 index 934ae96d1..7139fd7e8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseDirectory.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md #> Function Get-JcSdkUserTraverseDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 index d5be2ba35..928795c46 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseGSuite.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md #> Function Get-JcSdkUserTraverseGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 index 185fd0f3e..6a7ebbc21 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseLdapServer.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md #> Function Get-JcSdkUserTraverseLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 index 9fed2a65f..802241a03 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseOffice365.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md #> Function Get-JcSdkUserTraverseOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 index 8c2e4b6dc..73c976d64 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseRadiusServer.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md #> Function Get-JcSdkUserTraverseRadiusServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 index cfeca51cc..46eb43c30 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystem.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md #> Function Get-JcSdkUserTraverseSystem { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 index ec952086f..1c62522cc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkUserTraverseSystemGroup.ps1 @@ -87,7 +87,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md #> Function Get-JcSdkUserTraverseSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 index 37b60f71d..c6734c8d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkday.ps1 @@ -93,7 +93,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md #> Function Get-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 index 35f895cdd..3ac3e9fdb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Get-JcSdkWorkdayWorker.ps1 @@ -78,7 +78,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md #> Function Get-JcSdkWorkdayWorker { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 index 5290ab2cd..d3677e0e3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Grant-JcSdkWorkday.ps1 @@ -102,7 +102,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md #> Function Grant-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 index 2b748e5d7..c8493ac4d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkScim.ps1 @@ -53,7 +53,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md #> Function Import-JcSdkScim { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 index a3c6599e1..adcb9b770 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkday.ps1 @@ -159,7 +159,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md #> Function Import-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 index 3b292b3e2..cbcdaa5fd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Import-JcSdkWorkdayResult.ps1 @@ -74,7 +74,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md #> Function Import-JcSdkWorkdayResult { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 index 440090735..a18779165 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Invoke-JcSdkReclaimSoftwareAppLicense.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md #> Function Invoke-JcSdkReclaimSoftwareAppLicense { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 index 8927f0085..ee974cf26 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Lock-JcSdkAppleMdmDevice.ps1 @@ -70,7 +70,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md #> Function Lock-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 index c4aafccce..bec6e445f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectory.ps1 @@ -68,7 +68,7 @@ BODY : [UpdatedAt ]: [UseCase ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md #> Function New-JcSdkActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 index 83dfdbd24..8ce74c28b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkActiveDirectoryAgent.ps1 @@ -94,7 +94,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md #> Function New-JcSdkActiveDirectoryAgent { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 index cbe8b2a2e..a18826a57 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAdministratorOrganization.ps1 @@ -64,7 +64,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md #> Function New-JcSdkAdministratorOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 index 28cab9b36..ba4747448 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkApprovalFlow.ps1 @@ -53,7 +53,7 @@ BODY : SLACKCONFIG : [SlackResourceId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md #> Function New-JcSdkApprovalFlow { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 index 5c95f355d..7fb4fc3e3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkAuthenticationPolicy.ps1 @@ -160,7 +160,7 @@ USERATTRIBUTEINCLUSIONS : [Operator ]: [Value ]: Can be any value - string, number, boolean, array or object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md #> Function New-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 index 078ecd7e0..ddd6e28e2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUser.ps1 @@ -185,7 +185,7 @@ BODY >: [UnixUid ]: [Username ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md #> Function New-JcSdkBulkUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 index bd03d6daf..618446209 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkBulkUserState.ps1 @@ -68,7 +68,7 @@ BODY : [ActivationEmailOverride ]: Send the activation or welcome email to the specified email address upon activation. Can only be used with a single user_id and scheduled activation. This field will be ignored if `send_activation_emails` is explicitly set to false. [SendActivationEmails ]: Set to true to send activation or welcome email(s) to each user_id upon activation. Set to false to suppress emails. Can only be used with scheduled activation(s). .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md #> Function New-JcSdkBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 index e1610522a..73683f48b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkCustomEmailConfiguration.ps1 @@ -58,7 +58,7 @@ CUSTOMEMAIL : [NextStepContactInfo ]: [Title ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md #> Function New-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 index 4bd22070e..98a43eed9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoAccount.ps1 @@ -43,7 +43,7 @@ PS C:\> {{ Add code here }} .Outputs JumpCloud.SDK.V2.Models.IDuoAccount .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md #> Function New-JcSdkDuoAccount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 index af97372f7..25757ddec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkDuoApplication.ps1 @@ -99,7 +99,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md #> Function New-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 index e4a45f6ab..53d5fbf70 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkGSuiteTranslationRule.ps1 @@ -91,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md #> Function New-JcSdkGSuiteTranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 index 534adcb66..b335cefd1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkIPList.ps1 @@ -74,7 +74,7 @@ BODY : [Ips >]: [Name ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md #> Function New-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 index af2f761ba..2890bb211 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkLdapServerSambaDomain.ps1 @@ -91,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md #> Function New-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 index a7e6a13f8..21653c6af 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkOffice365TranslationRule.ps1 @@ -91,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md #> Function New-JcSdkOffice365TranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 index 0b8650ab5..ebc6890d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicy.ps1 @@ -101,7 +101,7 @@ VALUES : [Sensitive ]: Defines if the value is sensitive or not. [Value ]: The value for the configuration field for this Policy instance. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md #> Function New-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 index 70a3dbb4d..69583a9c0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkPolicyGroup.ps1 @@ -66,7 +66,7 @@ To create the parameters described below, construct a hash table containing the BODY : Name : Display name of a Policy Group. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md #> Function New-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 index 297e42b94..183fcc627 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkProviderAdministrator.ps1 @@ -98,7 +98,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md #> Function New-JcSdkProviderAdministrator { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 index d21f8a753..d0745cb41 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSoftwareApp.ps1 @@ -228,7 +228,7 @@ SETTINGS : [UpdatedAt ]: [VersionlessDownloadUrl ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md #> Function New-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 index 62907efb6..31af9abee 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkSystemGroup.ps1 @@ -101,7 +101,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md #> Function New-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 index a31a955dc..dca73e860 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkUserGroup.ps1 @@ -117,7 +117,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md #> Function New-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 index 3249ba521..80d7818f1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/New-JcSdkWorkday.ps1 @@ -106,7 +106,7 @@ BODY : [OauthCode ]: [ReportUrl ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md #> Function New-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 index ba9613084..4d7ab0f68 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectory.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md #> Function Remove-JcSdkActiveDirectory { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 index 526b33f33..569abcf35 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkActiveDirectoryAgent.ps1 @@ -63,7 +63,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md #> Function Remove-JcSdkActiveDirectoryAgent { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 index 3e82c8f5f..fdd4e2cbf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAdministratorOrganization.ps1 @@ -47,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md #> Function Remove-JcSdkAdministratorOrganization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 index 68042a7a2..a6aa45c82 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdm.ps1 @@ -104,7 +104,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md #> Function Remove-JcSdkAppleMdm { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 index 5c3beb5e5..fd7d8c29d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAppleMdmDevice.ps1 @@ -91,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md #> Function Remove-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 index a2e417cc7..a4145bee8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApplicationLogo.ps1 @@ -47,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md #> Function Remove-JcSdkApplicationLogo { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 index 955b1c5e4..d5ba3205e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkApprovalFlow.ps1 @@ -43,7 +43,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md #> Function Remove-JcSdkApprovalFlow { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 index db075e3bc..0b7b3dbb1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkAuthenticationPolicy.ps1 @@ -82,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md #> Function Remove-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 index 13139038b..313d836a6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkBulkUserState.ps1 @@ -61,7 +61,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md #> Function Remove-JcSdkBulkUserState { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 index 455f32729..809a6c615 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkCustomEmailConfiguration.ps1 @@ -47,7 +47,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md #> Function Remove-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 index 5a6626b2e..f9f3a67d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoAccount.ps1 @@ -69,7 +69,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md #> Function Remove-JcSdkDuoAccount { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 index b491cbaf3..351225dda 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkDuoApplication.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md #> Function Remove-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 index 66785505a..2de7b1150 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkGSuiteTranslationRule.ps1 @@ -67,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md #> Function Remove-JcSdkGSuiteTranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 index da103995f..d36df2ecf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkIPList.ps1 @@ -71,7 +71,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md #> Function Remove-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 index b925a0c96..3af650838 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkLdapServerSambaDomain.ps1 @@ -63,7 +63,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md #> Function Remove-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 index f4ad5516d..cc1e86891 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkOffice365TranslationRule.ps1 @@ -67,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md #> Function Remove-JcSdkOffice365TranslationRule { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 index 92eb4fe74..e7b6dd86b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicy.ps1 @@ -65,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md #> Function Remove-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 index f86fdf84a..4ec70154c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkPolicyGroup.ps1 @@ -75,7 +75,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md #> Function Remove-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 index 116517a97..52e46758a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkProviderAdministrator.ps1 @@ -49,7 +49,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md #> Function Remove-JcSdkProviderAdministrator { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 index 38f438848..836542dbd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSoftwareApp.ps1 @@ -67,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md #> Function Remove-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 index 6962e1cb7..17217fe5b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkSystemGroup.ps1 @@ -80,7 +80,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md #> Function Remove-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 index 85d473377..c37533a2e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserGroup.ps1 @@ -83,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md #> Function Remove-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 index 54cc801d7..7dc67bb65 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkUserPushEndpoint.ps1 @@ -62,7 +62,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md #> Function Remove-JcSdkUserPushEndpoint { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 index d5c1a7fae..b8ac589ee 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Remove-JcSdkWorkdayAuthorization.ps1 @@ -63,7 +63,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md #> Function Remove-JcSdkWorkdayAuthorization { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 index 1cae9d7d0..d48561791 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Restart-JcSdkAppleMdmDevice.ps1 @@ -70,7 +70,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md #> Function Restart-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 index 01310c88f..2363be705 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequest.ps1 @@ -53,7 +53,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md #> Function Set-JcSdkAccessRequest { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 index e1566a3c5..364fdb821 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAccessRequestApproval.ps1 @@ -24,7 +24,7 @@ BODY : [Remarks ]: [Status ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md #> Function Set-JcSdkAccessRequestApproval { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 index ae322ccdb..ffc5d92a4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkActiveDirectoryAssociation.ps1 @@ -86,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md #> Function Set-JcSdkActiveDirectoryAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 index 7e6f266a3..572a5dc16 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkAppleMdm.ps1 @@ -201,7 +201,7 @@ IOSETUPASSISTANTOPTIONS : MACOSETUPASSISTANTOPTIONS : [Option ]: Options to skip screens during MacOS and iOS setup: * `accessibility` - Skips the Accessibility pane, only if the Mac is connected to Ethernet and the cloud config is downloaded. * `actionButton` - Skips the Action Button configuration pane. * `appearance` - Skips the Choose Your Look screen. * `appleID` - Skips Apple ID setup. * `biometric` - Skips biometric setup. * `cameraButton` - Skips the Camera Button configuration pane. * `diagnostics` - Skips the App Analytics pane. * `displayTone` - Skips display tone setup. * `enableLockdownMode` - Skips the Lockdown Mode pane. * `fileVault` - Skips FileVault setup assistant screen. * `icloudDiagnostics` - Skips iCloud analytics screen. * `icloudStorage` - Skips iCloud documents and desktop screen. * `intelligence` - Skips the Intelligence pane. * `location` - Skips location services setup. * `payment` - Skips Apple Pay setup. * `privacy` - Skips the Privacy setup. * `restore` - Skips restoring from backup. * `screenTime` - Skips screen time setup. * `siri` - Skips Siri setup. * `termsOfAddress` - Skips the Terms of Address pane. * `tos` - Skips terms and conditions. * `appStore` - Skips the App Store pane. * `deviceToDeviceMigration` - Skips Device to Device Migration pane. * `displayZoom` - Skips zoom setup. * `homeButton` - Skips the Meet the New Home Button screen on iPhone 7, iPhone 7 Plus, iPhone 8, iPhone 8 Plus and iPhone SE. * `imessageAndFacetime` - Skips the iMessage and FaceTime screen in iOS. * `messagingActivationUsingPhoneNumber` - Skips the iMessage pane. * `moveFromAndroid` - If the Restore pane is not skipped, removes the Move from Android option in the Restore pane on iOS.O * `passcode` - Hides and disables the passcode pane. * `restoreComplete` - Skips the Restore Completed pane. * `safety` - Skips the Safety pane. * `setupCellular` - Skips the add cellular plan pane. * `softwareUpdate` - Skips the mandatory software update screen in iOS. * `unlockWithWatch` - Skips Unlock Your Mac with your Apple Watch pane. * `updateComplete` - Skips the Software Update Complete pane. * `wallpaper` - Skips the Wallpaper setup. * `watchMigration` - Skips the screen for watch migration. * `welcome` - Skips the Get Started pane. * `additionalPrivacySettings` - Skips the Additional Privacy Settings pane. * `multitasking` - Skips the Multitasking pane. * `osShowcase` - Skips the OS Showcase pane. * `webContentFiltering` - Skips the Web Content Filtering pane. * `safetyAndHandling` - Skips the Safety and Handling pane. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md #> Function Set-JcSdkAppleMdm { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 index 724a35126..a3adafcd3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApplicationAssociation.ps1 @@ -84,7 +84,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md #> Function Set-JcSdkApplicationAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 index cf6814585..9a138da73 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlow.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : SLACKCONFIG : [SlackResourceId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md #> Function Set-JcSdkApprovalFlow { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 index e2fca7ded..a2825a8a5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkApprovalFlowSetting.ps1 @@ -32,7 +32,7 @@ CHANNELEVENTS : [ChannelObjectId ]: [EventTypes >]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md #> Function Set-JcSdkApprovalFlowSetting { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 index f66b57863..040e76b77 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCommandAssociation.ps1 @@ -88,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md #> Function Set-JcSdkCommandAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 index 9acb28c7b..0df0d021a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkCustomEmailConfiguration.ps1 @@ -86,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md #> Function Set-JcSdkCustomEmailConfiguration { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 index 6520a42c9..7d25e1182 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkDuoApplication.ps1 @@ -99,7 +99,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md #> Function Set-JcSdkDuoApplication { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 index 2d0325944..bf65f5e2e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkGSuiteAssociation.ps1 @@ -88,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md #> Function Set-JcSdkGSuiteAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 index 2784fd055..f087b4b08 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkIPList.ps1 @@ -98,7 +98,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md #> Function Set-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 index 64021f9b2..0d07d0982 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerAssociation.ps1 @@ -86,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md #> Function Set-JcSdkLdapServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 index 19f18cb38..2ce466ec2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkLdapServerSambaDomain.ps1 @@ -91,7 +91,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md #> Function Set-JcSdkLdapServerSambaDomain { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 index 7eacb7e2c..755ad9b37 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkOffice365Association.ps1 @@ -86,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md #> Function Set-JcSdkOffice365Association { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 index 866c0a7be..e0f57cffa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicy.ps1 @@ -124,7 +124,7 @@ VALUES : [Sensitive ]: Defines if the value is sensitive or not. [Value ]: The value for the configuration field for this Policy instance. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md #> Function Set-JcSdkPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 index 2965d8562..049dc6333 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyAssociation.ps1 @@ -86,7 +86,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md #> Function Set-JcSdkPolicyAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 index 290b71d5a..87fe247ae 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroup.ps1 @@ -94,7 +94,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md #> Function Set-JcSdkPolicyGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 index e9f033f61..35c8ec98f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupAssociation.ps1 @@ -88,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md #> Function Set-JcSdkPolicyGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 index 5fdfbe2ce..4fec94da5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkPolicyGroupMember.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md #> Function Set-JcSdkPolicyGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 index 3f3e893ce..4ef82432c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkRadiusServerAssociation.ps1 @@ -90,7 +90,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md #> Function Set-JcSdkRadiusServerAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 index b140e068f..fb4fe63c7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareApp.ps1 @@ -342,7 +342,7 @@ SETTINGS : [UpdatedAt ]: [VersionlessDownloadUrl ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md #> Function Set-JcSdkSoftwareApp { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 index 3f5937386..33014f363 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSoftwareAppAssociation.ps1 @@ -82,7 +82,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md #> Function Set-JcSdkSoftwareAppAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 index 532b4980e..d0ecb41a9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemAssociation.ps1 @@ -102,7 +102,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md #> Function Set-JcSdkSystemAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 index 0f376221a..16010e76d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroup.ps1 @@ -127,7 +127,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md #> Function Set-JcSdkSystemGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 index f23f34207..208cf2072 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupAssociation.ps1 @@ -88,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md #> Function Set-JcSdkSystemGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 index 0fef5aed1..883be300d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkSystemGroupMember.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md #> Function Set-JcSdkSystemGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 index 7018c3c6f..e732dd6e9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserAssociation.ps1 @@ -102,7 +102,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md #> Function Set-JcSdkUserAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 index 319f74085..77ab8252b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroup.ps1 @@ -145,7 +145,7 @@ MEMBERQUERYEXEMPTIONS : [Attributes ]: The graph attributes. [(Any) ]: This indicates any property can be added to this object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md #> Function Set-JcSdkUserGroup { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 index 6210d6ba1..6a95db108 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupAssociation.ps1 @@ -88,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md #> Function Set-JcSdkUserGroupAssociation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 index ad21cc745..9e9679f84 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkUserGroupMember.ps1 @@ -81,7 +81,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md #> Function Set-JcSdkUserGroupMember { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 index c0a8a560f..28935afac 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Set-JcSdkWorkday.ps1 @@ -109,7 +109,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md #> Function Set-JcSdkWorkday { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 index 3e5f5dbb1..c93c1d05c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Stop-JcSdkAppleMdmDevice.ps1 @@ -65,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md #> Function Stop-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 index 44ed7eecd..731e0a197 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Sync-JcSdkAppleMdmDevice.ps1 @@ -65,7 +65,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md #> Function Sync-JcSdkAppleMdmDevice { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 index 273ef994a..72d96f854 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAppleMdmDeviceLockInformation.ps1 @@ -67,7 +67,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md #> Function Update-JcSdkAppleMdmDeviceLockInformation { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 index d29a0bc1d..821e90221 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkAuthenticationPolicy.ps1 @@ -152,7 +152,7 @@ USERATTRIBUTEINCLUSIONS : [Operator ]: [Value ]: Can be any value - string, number, boolean, array or object. .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md #> Function Update-JcSdkAuthenticationPolicy { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 index 207308f56..43deb7d0b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkBulkUser.ps1 @@ -148,7 +148,7 @@ BODY >: [UnixUid ]: [Username ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md #> Function Update-JcSdkBulkUser { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 index 83b04d35a..00adeadf7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkGSuite.ps1 @@ -156,7 +156,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md #> Function Update-JcSdkGSuite { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 index 40cd18681..00ac46fe5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkIPList.ps1 @@ -88,7 +88,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md #> Function Update-JcSdkIPList { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 index 325b6726d..fc1db0fbf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkLdapServer.ps1 @@ -96,7 +96,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md #> Function Update-JcSdkLdapServer { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 index 5a433b4fa..ef72cb478 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkOffice365.ps1 @@ -160,7 +160,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md #> Function Update-JcSdkOffice365 { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 index d39880fd7..b339b722a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/custom/generated/Update-JcSdkUserPushEndpoint.ps1 @@ -83,7 +83,7 @@ INPUTOBJECT : [UserId ]: ObjectID of the User. [WorkdayId ]: .Link -https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md +https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md #> Function Update-JcSdkUserPushEndpoint { diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md index f60a3aa60..55baa82ad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md index 45a12a872..88ae08aae 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Clear-JcSdkAppleMdmDeviceActivationLock.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md index ad69eaab6..48770bdb5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequest.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md index 2ad3b2190..b9a96f65e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAccessRequestProgress.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md index 27b1a7e84..574898ecf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md index 42b391ba0..b4aa51550 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAgent.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md index bc6ba804a..11f92c40c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md index e26cfe32e..01394a05e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md index bfe46e757..61c832173 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkActiveDirectoryTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md index fcc21d496..4bcad3da6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md index 784539e81..9c4982de4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAdministratorOrganizationLink.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md index 54aeb5766..a8f1ab26c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdm.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md index 4a434734c..481eb8920 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md index 03a5e02a6..91079d518 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAppleMdmEnrollmentProfile.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md index 16aeeafcb..2f483a775 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md index cbe05e347..8f116cf04 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md index 830fd9392..d1e12c051 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApplicationTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md index 5602f4a90..c31218af4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlow.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md index 1a3a72e42..bd330af92 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkApprovalFlowSetting.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md index ba4594523..614a2831b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md index 220a5f723..d46a79054 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md index f7e01b626..432be9818 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkBulkUsersResult.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md index 2bead125d..c414ed439 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md index 86523322f..a193a324d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md index 97717b9da..3addeecd3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCommandTraverseSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md index b63afabe4..352dd2992 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md index c9e308207..4d76a640b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkCustomEmailTemplate.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md index 439f52001..c084cf681 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md index 3cb2ca410..d2dc9f049 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoAccount.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md index d05cba31b..2546fba24 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkDuoApplication.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md index 502336a93..64f8ebf2a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuite.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md index 361049c8f..7d6c976be 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md index 4e7f09eb4..0a694a41a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTranslationRule.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md index 280f71b5d..b48ad5cab 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md index 0924550e0..2d6823e1b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md index b190d5bd1..40c43803c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGSuiteUsersToImport.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md index 32da084af..2acfe79a9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md index 338d99988..6e6bb818a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkGsuiteUsersToImportFormatted.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md index 27ba1e48d..0f6bd01d1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkIPList.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md index f819e854d..16ea5b351 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServer.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md index 7749e1ab2..cff658a15 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md index 11a2f7e06..2c36106ed 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md index 779c9fb19..57fd589cc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md index 1ae4dfe18..58a7607e1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkLdapServerTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md index 3ee1324e9..2f14a2b4b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkNextScheduledBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md index 8fde383d4..6f2b67492 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md index d464de76e..e2904378f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365Association.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md index 8c06ce0b9..0d596d0f9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TranslationRule.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md index f637b1b2c..4bc02677a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md index ea1ab1d33..c8cf648a0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365TraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md index 9e4414c39..552109d8c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOffice365UsersToImport.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md index 5fcce09cf..c1229448b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkOrganizationPolicyResult.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md index 7df5e139f..0b903f6e5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md index 65fe74aa5..b219d63fc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md index 3897d0bb4..df3c8ff3e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md index dac56c997..d64e50f4e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md index be9421b8b..bc19f040c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md index 820b9b766..d419dbe60 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupMembership.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md index 16daf4a38..d5e86ed17 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md index ea9cf26b2..94fc752b6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyGroupTraverseSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md index 52536bc6a..514fd097c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyResult.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md index 354dcba5a..e1d31b2ae 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md index b249b4a0a..12312f556 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTemplate.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md index 62ca9d73a..c8d1a3616 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md index 7a433a4e3..ef1dbf745 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkPolicyTraverseSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md index 635a8bd40..1911fd1b3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderAdministrator.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md index 0a8cff997..a4a9c83d2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProviderOrganization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md index 04c2b7527..2946674ea 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkProvidersInvoice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md index c582278df..d3300c760 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md index fe408424e..49d6f526a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md index 99c515fdf..96bca9495 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkRadiusServerTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md index 3b9ac4a76..1528e36ad 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md index 2db694a57..f670194ec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md index f197a071b..c51723f0e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md index 7e88d473d..e3aaa0abb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md index 5c0deda75..3844f53fe 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSoftwareAppTraverseSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md index 4428e2cca..22b176bcf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSubscription.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md index 191e578b4..55aa2e4e1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md index e1dac183c..87c6d84f1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemFdeKey.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md index e220b7a56..f777bd22c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md index 5991a91b4..7e9d843f1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md index d72f37898..4ebd45950 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md index 910a4d742..a9ccd2ea2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupMembership.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md index eab71357b..58f54c35a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseCommand.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md index e64ee8dd2..121b2349e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md index 292fb5dcb..4a3497df3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraversePolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md index bf20a5571..b090ff5b3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md index df1d830b0..fea80a971 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemGroupTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md index ecb508bc9..c77505314 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlf.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md index c51e387be..753c95a9e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfException.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md index ebb656962..46bbd89be 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAlfExplicitAuth.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md index fee14369c..778f15374 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md index f5a228581..cb15494a0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAppCompatShim.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md index 89730f2ea..886d564b7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAuthorizedKey.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md index e6e3549a1..2221a48aa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceMetadata.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md index 8c9e3a865..1b5b3a671 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightAzureInstanceTag.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md index 8c0cc9ac8..e46086e64 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBattery.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md index bd9c846b2..b7a3e9573 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBitlockerInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md index 850919626..83b0b091a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightBrowserPlugin.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md index 62614f4a1..0298cb3f0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCertificate.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md index dd93a68d3..e7a8e3ae5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChassisInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md index 42237d4ca..9748f4703 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightChromeExtension.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md index 3c411e60c..278be22f8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightConnectivity.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md index 1b0ab7c74..6acfda816 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCrash.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md index 7e9fe06e4..3b32d1232 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightCupDestination.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md index dbb3761e9..debc892ab 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskEncryption.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md index 7289cb9a2..ed25d306b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDiskInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md index cec7ddc7e..f2045beb9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightDnsResolver.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md index ecd078a3a..4635d4fac 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightEtcHost.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md index 0009a2a92..8497bb514 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightFirefoxAddon.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md index ecef90085..928bb64d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md index 0e3f64604..551cf48d4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightIeExtension.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md index 9d986d585..b396eb411 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceAddress.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md index f924b0fe5..a97db0197 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightInterfaceDetail.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md index 03e17c04d..2e29cbdbd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightKernelInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md index bb3289ddf..48c1ca428 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLaunchd.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md index 3627b946a..0c3835ba9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLinuxPackage.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md index d8085d531..1a8ff3ac1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLoggedinUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md index 7093fd489..5da60c80a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightLogicalDrive.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md index a19e1f2db..dafab18cb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightManagedPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md index 29b69fef2..3720450b1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightMount.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md index 2f21121bd..6b27897a8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightOSVersion.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md index 7097a56e5..66b2809c9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPatch.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md index 1a6c99922..c5aa947b7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightProgram.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md index ab14ba12c..455b53283 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightPythonPackage.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md index 7c0020bfe..1cb83bdc7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSafariExtension.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md index fea376ca2..b83d15a67 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightScheduledTask.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md index 78030d50a..c79ca5913 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSecureboot.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md index 8cea7cf2d..7595fd6ee 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightService.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md index 4c532b2d1..ec96c81cf 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightShadow.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md index 8e5ae970f..d004d8e62 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedFolder.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md index 7a39764c8..a2f277c02 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharedResource.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md index f84912043..666763ce3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSharingPreference.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md index 1b9f4ffec..39198e975 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSipConfig.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md index 1fc89f1f9..77fdb4ac6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightStartupItem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md index 6b515efcf..7a1d29734 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemControl.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md index 07bbe99bd..b7a7eab1b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightSystemInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md index 3fa369f5c..dfd0cd546 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightTpmInfo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md index 282b519cf..4e061deef 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUptime.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md index 421a28d11..711a463ce 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUsbDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md index a0b9b137c..f0cadc1e7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md index 0ca3df232..dd35eb372 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserAssist.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md index 913c49905..462defdc1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md index 2cf50b692..91274f49b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightUserSshKey.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md index 392a6cd20..8b1f893c3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiNetwork.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md index 84f5cde40..f3775be15 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWifiStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md index 5907efc62..50a226be7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityCenter.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md index 377698fdb..e8aedaeb7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemInsightWindowsSecurityProduct.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md index de60cafd8..ec061d0aa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md index e765a1d82..de5fc7af0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemPolicyStatus.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md index ddb4ba13c..69c51553a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseCommand.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md index ab2bda9dc..fe7fe14d7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md index f68235dec..914bc95c3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraversePolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md index df4cbb7cd..dbb603fa5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md index f9a843a3b..6d967693e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkSystemTraverseUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md index be4a8f53b..eb22356dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md index bb2aaa3c4..69c23d497 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md index a33753640..456c2bdf9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md index 3a53cae53..a53f769aa 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md index c9579c816..afa6041c3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupMembership.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md index 47ac1ccd8..f210e673d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseActiveDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md index bb37ca1ae..8ef59ba98 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseApplication.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md index 215dc149c..fffaf1a05 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md index c3b0692fb..246054e9f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseGSuite.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md index 9d6bcaa12..719a03213 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseLdapServer.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md index e28c21cde..55f84a9dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseOffice365.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md index 6775bc3f1..9e60e1888 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseRadiusServer.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md index fcca8f08f..9a98ff09b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md index fe9858ea2..26c89dc00 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserGroupTraverseSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md index 8a980b0ea..2aeee1146 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md index 5514b2aa6..664fe02b7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserPushEndpoint.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md index 8b484fdbe..00ac10707 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseActiveDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md index 06d326464..726a0c3bc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseApplication.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md index 67fd76d2d..40a32b4da 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md index fdbcd546e..905bfc939 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseGSuite.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md index 5587b54c3..e3c7bf30f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseLdapServer.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md index 29a199760..3aef92fda 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseOffice365.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md index e5cb5a141..757521d7d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseRadiusServer.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md index 4f365e0a6..9bc963f1c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystem.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md index b8ed39128..81cc22780 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkUserTraverseSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md index 785870277..df589dc1b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkday.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md index 4286d35c4..46738cf09 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Get-JcSdkWorkdayWorker.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md index c9a7d9b80..f87d1b413 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Grant-JcSdkWorkday.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md index 88078d46d..6ec6350eb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkScim.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md index e47ac263f..16a9f7dd9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkday.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md index 3d70f28f7..50ec8465f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Import-JcSdkWorkdayResult.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md index a79603878..7bc65b8f8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Invoke-JcSdkReclaimSoftwareAppLicense.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md index cbbf705b1..bffb87f68 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/JumpCloud.SDK.V2.md @@ -1,7 +1,7 @@ --- Module Name: JumpCloud.SDK.V2 Module Guid: ff397964-2121-4c89-a916-34b5c30d7187 -Download Help Link: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/jumpcloud.sdk.v2 +Download Help Link: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/jumpcloud.sdk.v2 Help Version: 1.0.0.0 Locale: en-US --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md index ee3ce5f6c..8d48f43b8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Lock-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md index 4da6defb2..d66f45306 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md index e223296b5..8a1424152 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkActiveDirectoryAgent.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md index fd89b1abf..1387753c8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAdministratorOrganization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md index 591979b11..abe34e98a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkApprovalFlow.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md index 1a6475757..5aaf6e71b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md index c3c0d3ad1..7cc3efd46 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md index 41d669bc0..992089c5c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md index d5926af10..6b3a082c6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md index 86b98f54c..09a078107 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoAccount.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md index 1a83cbc49..d9a0cc3e9 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkDuoApplication.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md index 572244796..e96f69a40 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkGSuiteTranslationRule.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md index 465069af6..7a99c5b18 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkIPList.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md index 455585994..60132303d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md index 80a06db56..d08db22b0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkOffice365TranslationRule.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md index 489e9981b..a3aea9af8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md index 2e23b709d..200771a84 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkPolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md index 5f0e44303..87a524c8a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkProviderAdministrator.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md index ac7037cf3..899af73dd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSoftwareApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md index 41e45deda..4d3c55924 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md index e1b47441e..0d1f703b3 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md index ef17cec55..f8a38dc5e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/New-JcSdkWorkday.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md index 3b2d1b0d6..929746cb7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectory.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md index 9692cd02b..5f919c15c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkActiveDirectoryAgent.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md index 4650c6bbf..ebb6352e1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAdministratorOrganization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md index de216e416..465964c91 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdm.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md index 15e2db64b..2e18e2859 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md index bb81aca8c..e5113f031 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApplicationLogo.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md index 337f108dc..20b90fb35 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkApprovalFlow.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md index e03fd61c9..7c5e414eb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md index 1013128e3..027b4a92a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkBulkUserState.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md index 727d21909..f873e3aa7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md index e815202ea..50d59a557 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoAccount.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md index 95120a99e..d0106f8d4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkDuoApplication.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md index e72aca6b3..a966b97f1 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkGSuiteTranslationRule.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md index 4333e2f6a..bc1a5c2ab 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkIPList.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md index c313b12fd..50372ece5 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md index c819e8336..5be2719bd 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkOffice365TranslationRule.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md index 3fbb7fcc8..dcc7e2464 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md index 5f70a728d..cde6cb890 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkPolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md index 6f6ab0d20..f6a03f48c 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkProviderAdministrator.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md index 563dbef2a..4f70c6514 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSoftwareApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md index 40c3ec57c..c32cafeb4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md index 564bf6573..f332fa831 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md index 77547ff5f..bc99b9591 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkUserPushEndpoint.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md index 73f9e15be..7648b5a66 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Remove-JcSdkWorkdayAuthorization.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md index 3b5462588..b85bd1b4b 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Restart-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md index 18d5eaf24..cdb2b17e8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequest.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md index 69168e924..9540d8325 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAccessRequestApproval.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md index 7ff9af5c0..485230d56 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkActiveDirectoryAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md index 5b36ca223..585539567 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkAppleMdm.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md index 270341def..51c6e1287 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApplicationAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md index 13cffb6e2..a1c78ce1a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlow.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md index c4254ae9a..c9667d4a4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkApprovalFlowSetting.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md index c3f154d95..5e1a02787 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCommandAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md index 857b26255..f36611d3d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkCustomEmailConfiguration.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md index b3002050b..9a2e471c7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkDuoApplication.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md index 0ad1b566d..6cf979de6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkGSuiteAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md index 5ae07c4f4..c4711b6cb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkIPList.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md index c8b1e5e27..2e1702bef 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md index 9e6402e00..506ddbc9a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkLdapServerSambaDomain.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md index ac3898896..3b34af7ec 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkOffice365Association.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md index 555c712b8..078b4a5dc 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md index 083f9a7df..ee96799c7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md index 904d75be0..c67be49e0 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md index 8c8c6bf9c..ba4c11ce2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md index dc811bf0e..9ec5f6ef8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkPolicyGroupMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md index 1b3845c70..eb66ab80d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkRadiusServerAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md index d783a0391..b7327c3a2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareApp.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md index c718d679a..e880cf129 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSoftwareAppAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md index d3eff7104..a60a1d1f7 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md index 4545dd5d2..55e5e1f4f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md index 2f09cafea..fe8e44005 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md index b19dae215..1ec9f9acb 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkSystemGroupMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md index b63d87ce6..c4e96950a 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md index 730b082fc..5bc9dc476 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroup.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md index ccc6cc3ee..03f43ec87 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupAssociation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md index 839da547d..e74d19a43 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkUserGroupMember.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md index 046a0af2c..e44cfb5e4 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Set-JcSdkWorkday.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md index ebd9bb9e5..36aee53d2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Stop-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md index cd4fae996..aacde8cef 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Sync-JcSdkAppleMdmDevice.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md index 7130439eb..dba310017 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAppleMdmDeviceLockInformation.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md index fef14710b..858b2fbe8 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkAuthenticationPolicy.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md index eab40f494..ad3c88679 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkBulkUser.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md index 735d81e94..cb67d614d 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkGSuite.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md index f6c832434..fb4f724b2 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkIPList.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md index 2b65d03ad..38ced44d6 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkLdapServer.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md index 59e2a7f7d..f94e37859 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkOffice365.md schema: 2.0.0 --- diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md index a3eb27fc0..59c4c397e 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: JumpCloud.SDK.V2 -online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/CUT-4022_AccessRequests/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md +online version: https://github.com/TheJumpCloud/jcapi-powershell/tree/master/SDKs/PowerShell/JumpCloud.SDK.V2/docs/exports/Update-JcSdkUserPushEndpoint.md schema: 2.0.0 --- From 0cd2712234f6affaf8aa889fe6c668221d87ab1d Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Wed, 25 Feb 2026 18:09:28 -0700 Subject: [PATCH 29/29] date --- JumpCloud.SDK.V2.md | 2 +- .../JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 | 350 +++++++++--------- 2 files changed, 176 insertions(+), 176 deletions(-) diff --git a/JumpCloud.SDK.V2.md b/JumpCloud.SDK.V2.md index 3f13cb6cc..3792a7583 100644 --- a/JumpCloud.SDK.V2.md +++ b/JumpCloud.SDK.V2.md @@ -1,6 +1,6 @@ ## JumpCloud.SDK.V2-0.2.0 -Release Date: February 25, 2026 +Release Date: February 26, 2026 #### RELEASE NOTES diff --git a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 index c259555dc..f104c720f 100644 --- a/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 +++ b/SDKs/PowerShell/JumpCloud.SDK.V2/JumpCloud.SDK.V2.psd1 @@ -3,7 +3,7 @@ # # Generated by: JumpCloud # -# Generated on: 2/25/2026 +# Generated on: 2/26/2026 # @{ @@ -69,180 +69,180 @@ RequiredAssemblies = './bin/JumpCloud.SDK.V2.private.dll' # NestedModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', - 'Clear-JcSdkAppleMdmDeviceActivationLock', 'Get-JcSdkAccessRequest', - 'Get-JcSdkAccessRequestProgress', 'Get-JcSdkActiveDirectory', - 'Get-JcSdkActiveDirectoryAgent', - 'Get-JcSdkActiveDirectoryAssociation', - 'Get-JcSdkActiveDirectoryTraverseUser', - 'Get-JcSdkActiveDirectoryTraverseUserGroup', - 'Get-JcSdkAdministratorOrganization', - 'Get-JcSdkAdministratorOrganizationLink', 'Get-JcSdkAppleMdm', - 'Get-JcSdkAppleMdmDevice', 'Get-JcSdkAppleMdmEnrollmentProfile', - 'Get-JcSdkApplicationAssociation', - 'Get-JcSdkApplicationTraverseUser', - 'Get-JcSdkApplicationTraverseUserGroup', 'Get-JcSdkApprovalFlow', - 'Get-JcSdkApprovalFlowSetting', 'Get-JcSdkAuthenticationPolicy', - 'Get-JcSdkBulkUsersResult', 'Get-JcSdkBulkUserState', - 'Get-JcSdkCommandAssociation', 'Get-JcSdkCommandTraverseSystem', - 'Get-JcSdkCommandTraverseSystemGroup', - 'Get-JcSdkCustomEmailConfiguration', 'Get-JcSdkCustomEmailTemplate', - 'Get-JcSdkDirectory', 'Get-JcSdkDuoAccount', - 'Get-JcSdkDuoApplication', 'Get-JcSdkGroup', 'Get-JcSdkGSuite', - 'Get-JcSdkGSuiteAssociation', 'Get-JcSdkGSuiteTranslationRule', - 'Get-JcSdkGSuiteTraverseUser', 'Get-JcSdkGSuiteTraverseUserGroup', - 'Get-JcSdkGSuiteUsersToImport', - 'Get-JcSdkGsuiteUsersToImportFormatted', 'Get-JcSdkIPList', - 'Get-JcSdkLdapServer', 'Get-JcSdkLdapServerAssociation', - 'Get-JcSdkLdapServerSambaDomain', 'Get-JcSdkLdapServerTraverseUser', - 'Get-JcSdkLdapServerTraverseUserGroup', - 'Get-JcSdkNextScheduledBulkUserState', 'Get-JcSdkOffice365', - 'Get-JcSdkOffice365Association', - 'Get-JcSdkOffice365TranslationRule', - 'Get-JcSdkOffice365TraverseUser', - 'Get-JcSdkOffice365TraverseUserGroup', - 'Get-JcSdkOffice365UsersToImport', - 'Get-JcSdkOrganizationPolicyResult', 'Get-JcSdkPolicy', - 'Get-JcSdkPolicyAssociation', 'Get-JcSdkPolicyGroup', - 'Get-JcSdkPolicyGroupAssociation', 'Get-JcSdkPolicyGroupMember', - 'Get-JcSdkPolicyGroupMembership', - 'Get-JcSdkPolicyGroupTraverseSystem', - 'Get-JcSdkPolicyGroupTraverseSystemGroup', 'Get-JcSdkPolicyResult', - 'Get-JcSdkPolicyStatus', 'Get-JcSdkPolicyTemplate', - 'Get-JcSdkPolicyTraverseSystem', - 'Get-JcSdkPolicyTraverseSystemGroup', - 'Get-JcSdkProviderAdministrator', 'Get-JcSdkProviderOrganization', - 'Get-JcSdkProvidersInvoice', 'Get-JcSdkRadiusServerAssociation', - 'Get-JcSdkRadiusServerTraverseUser', - 'Get-JcSdkRadiusServerTraverseUserGroup', 'Get-JcSdkSoftwareApp', - 'Get-JcSdkSoftwareAppAssociation', 'Get-JcSdkSoftwareAppStatus', - 'Get-JcSdkSoftwareAppTraverseSystem', - 'Get-JcSdkSoftwareAppTraverseSystemGroup', 'Get-JcSdkSubscription', - 'Get-JcSdkSystemAssociation', 'Get-JcSdkSystemFdeKey', - 'Get-JcSdkSystemGroup', 'Get-JcSdkSystemGroupAssociation', - 'Get-JcSdkSystemGroupMember', 'Get-JcSdkSystemGroupMembership', - 'Get-JcSdkSystemGroupTraverseCommand', - 'Get-JcSdkSystemGroupTraversePolicy', - 'Get-JcSdkSystemGroupTraversePolicyGroup', - 'Get-JcSdkSystemGroupTraverseUser', - 'Get-JcSdkSystemGroupTraverseUserGroup', - 'Get-JcSdkSystemInsightAlf', 'Get-JcSdkSystemInsightAlfException', - 'Get-JcSdkSystemInsightAlfExplicitAuth', - 'Get-JcSdkSystemInsightApp', 'Get-JcSdkSystemInsightAppCompatShim', - 'Get-JcSdkSystemInsightAuthorizedKey', - 'Get-JcSdkSystemInsightAzureInstanceMetadata', - 'Get-JcSdkSystemInsightAzureInstanceTag', - 'Get-JcSdkSystemInsightBattery', - 'Get-JcSdkSystemInsightBitlockerInfo', - 'Get-JcSdkSystemInsightBrowserPlugin', - 'Get-JcSdkSystemInsightCertificate', - 'Get-JcSdkSystemInsightChassisInfo', - 'Get-JcSdkSystemInsightChromeExtension', - 'Get-JcSdkSystemInsightConnectivity', 'Get-JcSdkSystemInsightCrash', - 'Get-JcSdkSystemInsightCupDestination', - 'Get-JcSdkSystemInsightDiskEncryption', - 'Get-JcSdkSystemInsightDiskInfo', - 'Get-JcSdkSystemInsightDnsResolver', - 'Get-JcSdkSystemInsightEtcHost', - 'Get-JcSdkSystemInsightFirefoxAddon', 'Get-JcSdkSystemInsightGroup', - 'Get-JcSdkSystemInsightIeExtension', - 'Get-JcSdkSystemInsightInterfaceAddress', - 'Get-JcSdkSystemInsightInterfaceDetail', - 'Get-JcSdkSystemInsightKernelInfo', 'Get-JcSdkSystemInsightLaunchd', - 'Get-JcSdkSystemInsightLinuxPackage', - 'Get-JcSdkSystemInsightLoggedinUser', - 'Get-JcSdkSystemInsightLogicalDrive', - 'Get-JcSdkSystemInsightManagedPolicy', - 'Get-JcSdkSystemInsightMount', 'Get-JcSdkSystemInsightOSVersion', - 'Get-JcSdkSystemInsightPatch', 'Get-JcSdkSystemInsightProgram', - 'Get-JcSdkSystemInsightPythonPackage', - 'Get-JcSdkSystemInsightSafariExtension', - 'Get-JcSdkSystemInsightScheduledTask', - 'Get-JcSdkSystemInsightSecureboot', 'Get-JcSdkSystemInsightService', - 'Get-JcSdkSystemInsightShadow', - 'Get-JcSdkSystemInsightSharedFolder', - 'Get-JcSdkSystemInsightSharedResource', - 'Get-JcSdkSystemInsightSharingPreference', - 'Get-JcSdkSystemInsightSipConfig', - 'Get-JcSdkSystemInsightStartupItem', - 'Get-JcSdkSystemInsightSystemControl', - 'Get-JcSdkSystemInsightSystemInfo', 'Get-JcSdkSystemInsightTpmInfo', - 'Get-JcSdkSystemInsightUptime', 'Get-JcSdkSystemInsightUsbDevice', - 'Get-JcSdkSystemInsightUser', 'Get-JcSdkSystemInsightUserAssist', - 'Get-JcSdkSystemInsightUserGroup', - 'Get-JcSdkSystemInsightUserSshKey', - 'Get-JcSdkSystemInsightWifiNetwork', - 'Get-JcSdkSystemInsightWifiStatus', - 'Get-JcSdkSystemInsightWindowsSecurityCenter', - 'Get-JcSdkSystemInsightWindowsSecurityProduct', - 'Get-JcSdkSystemMember', 'Get-JcSdkSystemPolicyStatus', - 'Get-JcSdkSystemTraverseCommand', 'Get-JcSdkSystemTraversePolicy', - 'Get-JcSdkSystemTraversePolicyGroup', 'Get-JcSdkSystemTraverseUser', - 'Get-JcSdkSystemTraverseUserGroup', 'Get-JcSdkUserAssociation', - 'Get-JcSdkUserGroup', 'Get-JcSdkUserGroupAssociation', - 'Get-JcSdkUserGroupMember', 'Get-JcSdkUserGroupMembership', - 'Get-JcSdkUserGroupTraverseActiveDirectory', - 'Get-JcSdkUserGroupTraverseApplication', - 'Get-JcSdkUserGroupTraverseDirectory', - 'Get-JcSdkUserGroupTraverseGSuite', - 'Get-JcSdkUserGroupTraverseLdapServer', - 'Get-JcSdkUserGroupTraverseOffice365', - 'Get-JcSdkUserGroupTraverseRadiusServer', - 'Get-JcSdkUserGroupTraverseSystem', - 'Get-JcSdkUserGroupTraverseSystemGroup', 'Get-JcSdkUserMember', - 'Get-JcSdkUserPushEndpoint', 'Get-JcSdkUserTraverseActiveDirectory', - 'Get-JcSdkUserTraverseApplication', - 'Get-JcSdkUserTraverseDirectory', 'Get-JcSdkUserTraverseGSuite', - 'Get-JcSdkUserTraverseLdapServer', 'Get-JcSdkUserTraverseOffice365', - 'Get-JcSdkUserTraverseRadiusServer', 'Get-JcSdkUserTraverseSystem', - 'Get-JcSdkUserTraverseSystemGroup', 'Get-JcSdkWorkday', - 'Get-JcSdkWorkdayWorker', 'Grant-JcSdkWorkday', 'Import-JcSdkScim', - 'Import-JcSdkWorkday', 'Import-JcSdkWorkdayResult', - 'Invoke-JcSdkReclaimSoftwareAppLicense', 'Lock-JcSdkAppleMdmDevice', - 'New-JcSdkActiveDirectory', 'New-JcSdkActiveDirectoryAgent', - 'New-JcSdkAdministratorOrganization', 'New-JcSdkApprovalFlow', - 'New-JcSdkAuthenticationPolicy', 'New-JcSdkBulkUser', - 'New-JcSdkBulkUserState', 'New-JcSdkCustomEmailConfiguration', - 'New-JcSdkDuoAccount', 'New-JcSdkDuoApplication', - 'New-JcSdkGSuiteTranslationRule', 'New-JcSdkIPList', - 'New-JcSdkLdapServerSambaDomain', - 'New-JcSdkOffice365TranslationRule', 'New-JcSdkPolicy', - 'New-JcSdkPolicyGroup', 'New-JcSdkProviderAdministrator', - 'New-JcSdkSoftwareApp', 'New-JcSdkSystemGroup', 'New-JcSdkUserGroup', - 'New-JcSdkWorkday', 'Remove-JcSdkActiveDirectory', - 'Remove-JcSdkActiveDirectoryAgent', - 'Remove-JcSdkAdministratorOrganization', 'Remove-JcSdkAppleMdm', - 'Remove-JcSdkAppleMdmDevice', 'Remove-JcSdkApplicationLogo', - 'Remove-JcSdkApprovalFlow', 'Remove-JcSdkAuthenticationPolicy', - 'Remove-JcSdkBulkUserState', 'Remove-JcSdkCustomEmailConfiguration', - 'Remove-JcSdkDuoAccount', 'Remove-JcSdkDuoApplication', - 'Remove-JcSdkGSuiteTranslationRule', 'Remove-JcSdkIPList', - 'Remove-JcSdkLdapServerSambaDomain', - 'Remove-JcSdkOffice365TranslationRule', 'Remove-JcSdkPolicy', - 'Remove-JcSdkPolicyGroup', 'Remove-JcSdkProviderAdministrator', - 'Remove-JcSdkSoftwareApp', 'Remove-JcSdkSystemGroup', - 'Remove-JcSdkUserGroup', 'Remove-JcSdkUserPushEndpoint', - 'Remove-JcSdkWorkdayAuthorization', 'Restart-JcSdkAppleMdmDevice', - 'Set-JcSdkAccessRequest', 'Set-JcSdkAccessRequestApproval', - 'Set-JcSdkActiveDirectoryAssociation', 'Set-JcSdkAppleMdm', - 'Set-JcSdkApplicationAssociation', 'Set-JcSdkApprovalFlow', - 'Set-JcSdkApprovalFlowSetting', 'Set-JcSdkCommandAssociation', - 'Set-JcSdkCustomEmailConfiguration', 'Set-JcSdkDuoApplication', - 'Set-JcSdkGSuiteAssociation', 'Set-JcSdkIPList', - 'Set-JcSdkLdapServerAssociation', 'Set-JcSdkLdapServerSambaDomain', - 'Set-JcSdkOffice365Association', 'Set-JcSdkPolicy', - 'Set-JcSdkPolicyAssociation', 'Set-JcSdkPolicyGroup', - 'Set-JcSdkPolicyGroupAssociation', 'Set-JcSdkPolicyGroupMember', - 'Set-JcSdkRadiusServerAssociation', 'Set-JcSdkSoftwareApp', - 'Set-JcSdkSoftwareAppAssociation', 'Set-JcSdkSystemAssociation', - 'Set-JcSdkSystemGroup', 'Set-JcSdkSystemGroupAssociation', - 'Set-JcSdkSystemGroupMember', 'Set-JcSdkUserAssociation', - 'Set-JcSdkUserGroup', 'Set-JcSdkUserGroupAssociation', - 'Set-JcSdkUserGroupMember', 'Set-JcSdkWorkday', - 'Stop-JcSdkAppleMdmDevice', 'Sync-JcSdkAppleMdmDevice', - 'Update-JcSdkAppleMdmDeviceLockInformation', - 'Update-JcSdkAuthenticationPolicy', 'Update-JcSdkBulkUser', - 'Update-JcSdkGSuite', 'Update-JcSdkIPList', 'Update-JcSdkLdapServer', +FunctionsToExport = 'Clear-JcSdkAppleMdmDevice', + 'Clear-JcSdkAppleMdmDeviceActivationLock', 'Get-JcSdkAccessRequest', + 'Get-JcSdkAccessRequestProgress', 'Get-JcSdkActiveDirectory', + 'Get-JcSdkActiveDirectoryAgent', + 'Get-JcSdkActiveDirectoryAssociation', + 'Get-JcSdkActiveDirectoryTraverseUser', + 'Get-JcSdkActiveDirectoryTraverseUserGroup', + 'Get-JcSdkAdministratorOrganization', + 'Get-JcSdkAdministratorOrganizationLink', 'Get-JcSdkAppleMdm', + 'Get-JcSdkAppleMdmDevice', 'Get-JcSdkAppleMdmEnrollmentProfile', + 'Get-JcSdkApplicationAssociation', + 'Get-JcSdkApplicationTraverseUser', + 'Get-JcSdkApplicationTraverseUserGroup', 'Get-JcSdkApprovalFlow', + 'Get-JcSdkApprovalFlowSetting', 'Get-JcSdkAuthenticationPolicy', + 'Get-JcSdkBulkUsersResult', 'Get-JcSdkBulkUserState', + 'Get-JcSdkCommandAssociation', 'Get-JcSdkCommandTraverseSystem', + 'Get-JcSdkCommandTraverseSystemGroup', + 'Get-JcSdkCustomEmailConfiguration', 'Get-JcSdkCustomEmailTemplate', + 'Get-JcSdkDirectory', 'Get-JcSdkDuoAccount', + 'Get-JcSdkDuoApplication', 'Get-JcSdkGroup', 'Get-JcSdkGSuite', + 'Get-JcSdkGSuiteAssociation', 'Get-JcSdkGSuiteTranslationRule', + 'Get-JcSdkGSuiteTraverseUser', 'Get-JcSdkGSuiteTraverseUserGroup', + 'Get-JcSdkGSuiteUsersToImport', + 'Get-JcSdkGsuiteUsersToImportFormatted', 'Get-JcSdkIPList', + 'Get-JcSdkLdapServer', 'Get-JcSdkLdapServerAssociation', + 'Get-JcSdkLdapServerSambaDomain', 'Get-JcSdkLdapServerTraverseUser', + 'Get-JcSdkLdapServerTraverseUserGroup', + 'Get-JcSdkNextScheduledBulkUserState', 'Get-JcSdkOffice365', + 'Get-JcSdkOffice365Association', + 'Get-JcSdkOffice365TranslationRule', + 'Get-JcSdkOffice365TraverseUser', + 'Get-JcSdkOffice365TraverseUserGroup', + 'Get-JcSdkOffice365UsersToImport', + 'Get-JcSdkOrganizationPolicyResult', 'Get-JcSdkPolicy', + 'Get-JcSdkPolicyAssociation', 'Get-JcSdkPolicyGroup', + 'Get-JcSdkPolicyGroupAssociation', 'Get-JcSdkPolicyGroupMember', + 'Get-JcSdkPolicyGroupMembership', + 'Get-JcSdkPolicyGroupTraverseSystem', + 'Get-JcSdkPolicyGroupTraverseSystemGroup', 'Get-JcSdkPolicyResult', + 'Get-JcSdkPolicyStatus', 'Get-JcSdkPolicyTemplate', + 'Get-JcSdkPolicyTraverseSystem', + 'Get-JcSdkPolicyTraverseSystemGroup', + 'Get-JcSdkProviderAdministrator', 'Get-JcSdkProviderOrganization', + 'Get-JcSdkProvidersInvoice', 'Get-JcSdkRadiusServerAssociation', + 'Get-JcSdkRadiusServerTraverseUser', + 'Get-JcSdkRadiusServerTraverseUserGroup', 'Get-JcSdkSoftwareApp', + 'Get-JcSdkSoftwareAppAssociation', 'Get-JcSdkSoftwareAppStatus', + 'Get-JcSdkSoftwareAppTraverseSystem', + 'Get-JcSdkSoftwareAppTraverseSystemGroup', 'Get-JcSdkSubscription', + 'Get-JcSdkSystemAssociation', 'Get-JcSdkSystemFdeKey', + 'Get-JcSdkSystemGroup', 'Get-JcSdkSystemGroupAssociation', + 'Get-JcSdkSystemGroupMember', 'Get-JcSdkSystemGroupMembership', + 'Get-JcSdkSystemGroupTraverseCommand', + 'Get-JcSdkSystemGroupTraversePolicy', + 'Get-JcSdkSystemGroupTraversePolicyGroup', + 'Get-JcSdkSystemGroupTraverseUser', + 'Get-JcSdkSystemGroupTraverseUserGroup', + 'Get-JcSdkSystemInsightAlf', 'Get-JcSdkSystemInsightAlfException', + 'Get-JcSdkSystemInsightAlfExplicitAuth', + 'Get-JcSdkSystemInsightApp', 'Get-JcSdkSystemInsightAppCompatShim', + 'Get-JcSdkSystemInsightAuthorizedKey', + 'Get-JcSdkSystemInsightAzureInstanceMetadata', + 'Get-JcSdkSystemInsightAzureInstanceTag', + 'Get-JcSdkSystemInsightBattery', + 'Get-JcSdkSystemInsightBitlockerInfo', + 'Get-JcSdkSystemInsightBrowserPlugin', + 'Get-JcSdkSystemInsightCertificate', + 'Get-JcSdkSystemInsightChassisInfo', + 'Get-JcSdkSystemInsightChromeExtension', + 'Get-JcSdkSystemInsightConnectivity', 'Get-JcSdkSystemInsightCrash', + 'Get-JcSdkSystemInsightCupDestination', + 'Get-JcSdkSystemInsightDiskEncryption', + 'Get-JcSdkSystemInsightDiskInfo', + 'Get-JcSdkSystemInsightDnsResolver', + 'Get-JcSdkSystemInsightEtcHost', + 'Get-JcSdkSystemInsightFirefoxAddon', 'Get-JcSdkSystemInsightGroup', + 'Get-JcSdkSystemInsightIeExtension', + 'Get-JcSdkSystemInsightInterfaceAddress', + 'Get-JcSdkSystemInsightInterfaceDetail', + 'Get-JcSdkSystemInsightKernelInfo', 'Get-JcSdkSystemInsightLaunchd', + 'Get-JcSdkSystemInsightLinuxPackage', + 'Get-JcSdkSystemInsightLoggedinUser', + 'Get-JcSdkSystemInsightLogicalDrive', + 'Get-JcSdkSystemInsightManagedPolicy', + 'Get-JcSdkSystemInsightMount', 'Get-JcSdkSystemInsightOSVersion', + 'Get-JcSdkSystemInsightPatch', 'Get-JcSdkSystemInsightProgram', + 'Get-JcSdkSystemInsightPythonPackage', + 'Get-JcSdkSystemInsightSafariExtension', + 'Get-JcSdkSystemInsightScheduledTask', + 'Get-JcSdkSystemInsightSecureboot', 'Get-JcSdkSystemInsightService', + 'Get-JcSdkSystemInsightShadow', + 'Get-JcSdkSystemInsightSharedFolder', + 'Get-JcSdkSystemInsightSharedResource', + 'Get-JcSdkSystemInsightSharingPreference', + 'Get-JcSdkSystemInsightSipConfig', + 'Get-JcSdkSystemInsightStartupItem', + 'Get-JcSdkSystemInsightSystemControl', + 'Get-JcSdkSystemInsightSystemInfo', 'Get-JcSdkSystemInsightTpmInfo', + 'Get-JcSdkSystemInsightUptime', 'Get-JcSdkSystemInsightUsbDevice', + 'Get-JcSdkSystemInsightUser', 'Get-JcSdkSystemInsightUserAssist', + 'Get-JcSdkSystemInsightUserGroup', + 'Get-JcSdkSystemInsightUserSshKey', + 'Get-JcSdkSystemInsightWifiNetwork', + 'Get-JcSdkSystemInsightWifiStatus', + 'Get-JcSdkSystemInsightWindowsSecurityCenter', + 'Get-JcSdkSystemInsightWindowsSecurityProduct', + 'Get-JcSdkSystemMember', 'Get-JcSdkSystemPolicyStatus', + 'Get-JcSdkSystemTraverseCommand', 'Get-JcSdkSystemTraversePolicy', + 'Get-JcSdkSystemTraversePolicyGroup', 'Get-JcSdkSystemTraverseUser', + 'Get-JcSdkSystemTraverseUserGroup', 'Get-JcSdkUserAssociation', + 'Get-JcSdkUserGroup', 'Get-JcSdkUserGroupAssociation', + 'Get-JcSdkUserGroupMember', 'Get-JcSdkUserGroupMembership', + 'Get-JcSdkUserGroupTraverseActiveDirectory', + 'Get-JcSdkUserGroupTraverseApplication', + 'Get-JcSdkUserGroupTraverseDirectory', + 'Get-JcSdkUserGroupTraverseGSuite', + 'Get-JcSdkUserGroupTraverseLdapServer', + 'Get-JcSdkUserGroupTraverseOffice365', + 'Get-JcSdkUserGroupTraverseRadiusServer', + 'Get-JcSdkUserGroupTraverseSystem', + 'Get-JcSdkUserGroupTraverseSystemGroup', 'Get-JcSdkUserMember', + 'Get-JcSdkUserPushEndpoint', 'Get-JcSdkUserTraverseActiveDirectory', + 'Get-JcSdkUserTraverseApplication', + 'Get-JcSdkUserTraverseDirectory', 'Get-JcSdkUserTraverseGSuite', + 'Get-JcSdkUserTraverseLdapServer', 'Get-JcSdkUserTraverseOffice365', + 'Get-JcSdkUserTraverseRadiusServer', 'Get-JcSdkUserTraverseSystem', + 'Get-JcSdkUserTraverseSystemGroup', 'Get-JcSdkWorkday', + 'Get-JcSdkWorkdayWorker', 'Grant-JcSdkWorkday', 'Import-JcSdkScim', + 'Import-JcSdkWorkday', 'Import-JcSdkWorkdayResult', + 'Invoke-JcSdkReclaimSoftwareAppLicense', 'Lock-JcSdkAppleMdmDevice', + 'New-JcSdkActiveDirectory', 'New-JcSdkActiveDirectoryAgent', + 'New-JcSdkAdministratorOrganization', 'New-JcSdkApprovalFlow', + 'New-JcSdkAuthenticationPolicy', 'New-JcSdkBulkUser', + 'New-JcSdkBulkUserState', 'New-JcSdkCustomEmailConfiguration', + 'New-JcSdkDuoAccount', 'New-JcSdkDuoApplication', + 'New-JcSdkGSuiteTranslationRule', 'New-JcSdkIPList', + 'New-JcSdkLdapServerSambaDomain', + 'New-JcSdkOffice365TranslationRule', 'New-JcSdkPolicy', + 'New-JcSdkPolicyGroup', 'New-JcSdkProviderAdministrator', + 'New-JcSdkSoftwareApp', 'New-JcSdkSystemGroup', 'New-JcSdkUserGroup', + 'New-JcSdkWorkday', 'Remove-JcSdkActiveDirectory', + 'Remove-JcSdkActiveDirectoryAgent', + 'Remove-JcSdkAdministratorOrganization', 'Remove-JcSdkAppleMdm', + 'Remove-JcSdkAppleMdmDevice', 'Remove-JcSdkApplicationLogo', + 'Remove-JcSdkApprovalFlow', 'Remove-JcSdkAuthenticationPolicy', + 'Remove-JcSdkBulkUserState', 'Remove-JcSdkCustomEmailConfiguration', + 'Remove-JcSdkDuoAccount', 'Remove-JcSdkDuoApplication', + 'Remove-JcSdkGSuiteTranslationRule', 'Remove-JcSdkIPList', + 'Remove-JcSdkLdapServerSambaDomain', + 'Remove-JcSdkOffice365TranslationRule', 'Remove-JcSdkPolicy', + 'Remove-JcSdkPolicyGroup', 'Remove-JcSdkProviderAdministrator', + 'Remove-JcSdkSoftwareApp', 'Remove-JcSdkSystemGroup', + 'Remove-JcSdkUserGroup', 'Remove-JcSdkUserPushEndpoint', + 'Remove-JcSdkWorkdayAuthorization', 'Restart-JcSdkAppleMdmDevice', + 'Set-JcSdkAccessRequest', 'Set-JcSdkAccessRequestApproval', + 'Set-JcSdkActiveDirectoryAssociation', 'Set-JcSdkAppleMdm', + 'Set-JcSdkApplicationAssociation', 'Set-JcSdkApprovalFlow', + 'Set-JcSdkApprovalFlowSetting', 'Set-JcSdkCommandAssociation', + 'Set-JcSdkCustomEmailConfiguration', 'Set-JcSdkDuoApplication', + 'Set-JcSdkGSuiteAssociation', 'Set-JcSdkIPList', + 'Set-JcSdkLdapServerAssociation', 'Set-JcSdkLdapServerSambaDomain', + 'Set-JcSdkOffice365Association', 'Set-JcSdkPolicy', + 'Set-JcSdkPolicyAssociation', 'Set-JcSdkPolicyGroup', + 'Set-JcSdkPolicyGroupAssociation', 'Set-JcSdkPolicyGroupMember', + 'Set-JcSdkRadiusServerAssociation', 'Set-JcSdkSoftwareApp', + 'Set-JcSdkSoftwareAppAssociation', 'Set-JcSdkSystemAssociation', + 'Set-JcSdkSystemGroup', 'Set-JcSdkSystemGroupAssociation', + 'Set-JcSdkSystemGroupMember', 'Set-JcSdkUserAssociation', + 'Set-JcSdkUserGroup', 'Set-JcSdkUserGroupAssociation', + 'Set-JcSdkUserGroupMember', 'Set-JcSdkWorkday', + 'Stop-JcSdkAppleMdmDevice', 'Sync-JcSdkAppleMdmDevice', + 'Update-JcSdkAppleMdmDeviceLockInformation', + 'Update-JcSdkAuthenticationPolicy', 'Update-JcSdkBulkUser', + 'Update-JcSdkGSuite', 'Update-JcSdkIPList', 'Update-JcSdkLdapServer', 'Update-JcSdkOffice365', 'Update-JcSdkUserPushEndpoint' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.