public List <Guid> GetAllDirectorySdkKeys(Guid directoryId)
        {
            var request  = new OrganizationV3DirectorySdkKeysListPostRequest(directoryId);
            var response = _transport.OrganizationV3DirectorySdkKeysListPost(request, _organizationId);

            return(response.SdkKeys);
        }
Ejemplo n.º 2
0
        public OrganizationV3DirectorySdkKeysListPostResponse OrganizationV3DirectorySdkKeysListPost(OrganizationV3DirectorySdkKeysListPostRequest request, EntityIdentifier subject)
        {
            var response          = ExecuteRequest(HttpMethod.POST, "/organization/v3/directory/sdk-keys/list", subject, request, null);
            var decryptedResponse = DecryptResponse <List <Guid> >(response);

            return(new OrganizationV3DirectorySdkKeysListPostResponse(decryptedResponse));
        }