From ec87de4e62eb356004fa9b7e6a0ec7e5322cbd60 Mon Sep 17 00:00:00 2001 From: Ercenk Keresteci Date: Mon, 22 Feb 2021 10:56:52 -0800 Subject: [PATCH 1/2] But fixes to preview 2 --- Directory.Build.props | 2 +- NuGet.Config | 4 +- src/Directory.Build.props | 4 +- src/GlobalSuppressions.cs | 4 + .../IMarketplaceMeteringClient.cs | 12 + .../IMeteringOperations.cs | 23 + .../MarketplaceMeteringClient.cs | 48 + ...cs => MarketplaceMeteringClientOptions.cs} | 3 +- .../MeteringManagementClient.cs | 50 - .../MeteringOperations.cs | 2 +- .../FulfillmentOperations.cs | 32 +- .../IFulfillmentOperations.cs | 69 + .../IMarketplaceSaaSClient.cs | 12 + .../ISubscriptionOperations.cs | 26 + .../MarketplaceSaaSClient.cs | 6 +- .../SubscriptionOperations.cs | 2 +- src/NuGet.Config | 6 + tests/Directory.Build.props | 2 +- .../FulfillmentTests.cs | 134 +- .../Microsoft.Marketplace.Tests.csproj | 8 +- .../GetAllSubscriptionsAsListAsyncAsync.json | 286 +- ...SubscriptionsAsListWithCertAsyncAsync.json | 18123 ++++++++++++++++ .../GetAllSubscriptionsPagedAsync.json | 282 +- .../GetSubscriptionAsync.json | 300 +- .../OASUpdateFeb22021SubscriptionAsync.json | 300 +- .../PostSingleUsageAsync.json | 58 + .../ResolveSubscriptionAsync.json | 44 +- .../ResolveSubscriptionWithCertAsync.json | 92 + .../UpdateSubscriptionAsync.json | 332 +- tests/NuGet.Config | 6 + 30 files changed, 19542 insertions(+), 730 deletions(-) create mode 100644 src/Microsoft.Marketplace.Metering/IMarketplaceMeteringClient.cs create mode 100644 src/Microsoft.Marketplace.Metering/IMeteringOperations.cs create mode 100644 src/Microsoft.Marketplace.Metering/MarketplaceMeteringClient.cs rename src/Microsoft.Marketplace.Metering/{MeteringManagementClientOptions.cs => MarketplaceMeteringClientOptions.cs} (78%) delete mode 100644 src/Microsoft.Marketplace.Metering/MeteringManagementClient.cs create mode 100644 src/Microsoft.Marketplace.SaaS/IFulfillmentOperations.cs create mode 100644 src/Microsoft.Marketplace.SaaS/IMarketplaceSaaSClient.cs create mode 100644 src/Microsoft.Marketplace.SaaS/ISubscriptionOperations.cs create mode 100644 src/NuGet.Config create mode 100644 tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json create mode 100644 tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/PostSingleUsageAsync.json create mode 100644 tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionWithCertAsync.json create mode 100644 tests/NuGet.Config diff --git a/Directory.Build.props b/Directory.Build.props index 70c5134..1696791 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - netstandard2.0;netcoreapp3.1;net5.0;net47 + netstandard2.0;net5.0;net47 diff --git a/NuGet.Config b/NuGet.Config index dcb8c12..3f0e003 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -1,6 +1,6 @@ - + - + \ No newline at end of file diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 14d8b91..1225bfe 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -5,14 +5,14 @@ - netstandard2.0;netcoreapp3.1;net5.0 + netstandard2.0;net5.0;net47 - + diff --git a/src/GlobalSuppressions.cs b/src/GlobalSuppressions.cs index 7faf941..cf1c521 100644 --- a/src/GlobalSuppressions.cs +++ b/src/GlobalSuppressions.cs @@ -50,3 +50,7 @@ using System.Diagnostics.CodeAnalysis; [assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1622:Generic type parameter documentation should have text", Justification = "Suppress messages for shared.", Scope = "namespaceanddescendants", Target = "~N:Azure.Core")] [assembly: SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1015:Closing generic brackets should be spaced correctly", Justification = "Suppress messages for shared.", Scope = "namespaceanddescendants", Target = "~N:Azure.Core")] [assembly: SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1001:Commas should be spaced correctly", Justification = "Suppress messages for shared.", Scope = "namespaceanddescendants", Target = "~N:Azure.Core")] +[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "~T:Microsoft.Marketplace.SaaS.IFulfillmentOperations")] +[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "~T:Microsoft.Marketplace.Metering.IMeteringOperations")] +[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "T:Microsoft.Marketplace.SaaS.IMarketplaceSaaSClient")] +[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "~T:Microsoft.Marketplace.SaaS.ISubscriptionOperations")] diff --git a/src/Microsoft.Marketplace.Metering/IMarketplaceMeteringClient.cs b/src/Microsoft.Marketplace.Metering/IMarketplaceMeteringClient.cs new file mode 100644 index 0000000..23ac7d5 --- /dev/null +++ b/src/Microsoft.Marketplace.Metering/IMarketplaceMeteringClient.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Microsoft.Marketplace.Metering +{ + /// Metering client. + public interface IMarketplaceMeteringClient + { + /// Gets an instance of MeteringOperations. + MeteringOperations Metering { get; } + } +} \ No newline at end of file diff --git a/src/Microsoft.Marketplace.Metering/IMeteringOperations.cs b/src/Microsoft.Marketplace.Metering/IMeteringOperations.cs new file mode 100644 index 0000000..25437a1 --- /dev/null +++ b/src/Microsoft.Marketplace.Metering/IMeteringOperations.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Microsoft.Marketplace.Metering.Models; + +namespace Microsoft.Marketplace.Metering +{ + public interface IMeteringOperations + { + Response> PostBatchUsageEvent(IEnumerable body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task>> PostBatchUsageEventAsync(IEnumerable body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Response PostUsageEvent(UsageEvent body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task> PostUsageEventAsync(UsageEvent body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + } +} \ No newline at end of file diff --git a/src/Microsoft.Marketplace.Metering/MarketplaceMeteringClient.cs b/src/Microsoft.Marketplace.Metering/MarketplaceMeteringClient.cs new file mode 100644 index 0000000..fcdec64 --- /dev/null +++ b/src/Microsoft.Marketplace.Metering/MarketplaceMeteringClient.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Microsoft.Marketplace.Metering +{ + /// Metering service client. + public class MarketplaceMeteringClient : IMarketplaceMeteringClient + { + private readonly ClientDiagnostics clientDiagnostics; + private readonly HttpPipeline pipeline; + private readonly Uri endpoint; + + /// Initializes a new instance of MarketplaceMeteringClient for mocking. + protected MarketplaceMeteringClient() + { + } + + /// Initializes a new instance of MarketplaceMeteringClient. + /// The OAuth token for making client requests. + /// The options for configuring the client. + public MarketplaceMeteringClient(TokenCredential tokenCredential, MarketplaceMeteringClientOptions options = null) : this(null, tokenCredential, options) + { + } + /// Initializes a new instance of MarketplaceMeteringClient. + /// server parameter. + /// The OAuth token for making client requests. + /// The options for configuring the client. + public MarketplaceMeteringClient(Uri endpoint, TokenCredential tokenCredential, MarketplaceMeteringClientOptions options = null) + { + endpoint ??= new Uri("https://marketplaceapi.microsoft.com/api"); + + options ??= new MarketplaceMeteringClientOptions(); + this.clientDiagnostics = new ClientDiagnostics(options); + this.pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(tokenCredential, $"20e940b3-4c77-4b0b-9a53-9e16a1b010a7/.default")); + this.endpoint = endpoint; + } + + public virtual MeteringOperations Metering => new MeteringOperations(clientDiagnostics, pipeline, endpoint); + } +} diff --git a/src/Microsoft.Marketplace.Metering/MeteringManagementClientOptions.cs b/src/Microsoft.Marketplace.Metering/MarketplaceMeteringClientOptions.cs similarity index 78% rename from src/Microsoft.Marketplace.Metering/MeteringManagementClientOptions.cs rename to src/Microsoft.Marketplace.Metering/MarketplaceMeteringClientOptions.cs index 8234565..82fe356 100644 --- a/src/Microsoft.Marketplace.Metering/MeteringManagementClientOptions.cs +++ b/src/Microsoft.Marketplace.Metering/MarketplaceMeteringClientOptions.cs @@ -10,7 +10,8 @@ using Azure.Core; namespace Microsoft.Marketplace.Metering { /// Client options for Metering. - public class MeteringManagementClientOptions : ClientOptions + public class MarketplaceMeteringClientOptions + : ClientOptions { } } diff --git a/src/Microsoft.Marketplace.Metering/MeteringManagementClient.cs b/src/Microsoft.Marketplace.Metering/MeteringManagementClient.cs deleted file mode 100644 index b6d0386..0000000 --- a/src/Microsoft.Marketplace.Metering/MeteringManagementClient.cs +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using Azure.Core; -using Azure.Core.Pipeline; -using Microsoft.Marketplace.Metering; - -namespace Microsoft.Marketplace.Metering -{ - /// Metering service management client. - public class MeteringManagementClient - { - private readonly ClientDiagnostics _clientDiagnostics; - private readonly HttpPipeline _pipeline; - private readonly Uri _endpoint; - - /// Initializes a new instance of MeteringManagementClient for mocking. - protected MeteringManagementClient() - { - } - - /// Initializes a new instance of MeteringManagementClient. - /// The OAuth token for making client requests. - /// The options for configuring the client. - public MeteringManagementClient(TokenCredential tokenCredential, MeteringManagementClientOptions options = null) : this(null, tokenCredential, options) - { - } - /// Initializes a new instance of MeteringManagementClient. - /// server parameter. - /// The OAuth token for making client requests. - /// The options for configuring the client. - public MeteringManagementClient(Uri endpoint, TokenCredential tokenCredential, MeteringManagementClientOptions options = null) - { - endpoint ??= new Uri("https://marketplaceapi.microsoft.com/api"); - - options ??= new MeteringManagementClientOptions(); - _clientDiagnostics = new ClientDiagnostics(options); - _pipeline = ManagementPipelineBuilder.Build(tokenCredential, endpoint, options); - _endpoint = endpoint; - } - - /// Returns an instance of MeteringOperations. - public virtual MeteringOperations Metering => new MeteringOperations(_clientDiagnostics, _pipeline, _endpoint); - } -} diff --git a/src/Microsoft.Marketplace.Metering/MeteringOperations.cs b/src/Microsoft.Marketplace.Metering/MeteringOperations.cs index c635d42..87a3aef 100644 --- a/src/Microsoft.Marketplace.Metering/MeteringOperations.cs +++ b/src/Microsoft.Marketplace.Metering/MeteringOperations.cs @@ -7,7 +7,7 @@ namespace Microsoft.Marketplace.Metering /// The Subscription service client. [CodeGenClient("MeteringClient")] - public partial class MeteringOperations + public partial class MeteringOperations : IMeteringOperations { } } diff --git a/src/Microsoft.Marketplace.SaaS/FulfillmentOperations.cs b/src/Microsoft.Marketplace.SaaS/FulfillmentOperations.cs index 301a569..987a932 100644 --- a/src/Microsoft.Marketplace.SaaS/FulfillmentOperations.cs +++ b/src/Microsoft.Marketplace.SaaS/FulfillmentOperations.cs @@ -16,15 +16,9 @@ namespace Microsoft.Marketplace.SaaS [CodeGenSuppress("UpdateSubscription", typeof(Guid), typeof(SubscriberPlan), typeof(Guid), typeof(Guid), typeof(CancellationToken))] [CodeGenSuppress("DeleteSubscriptionAsync", typeof(Guid), typeof(Guid), typeof(Guid), typeof(CancellationToken))] [CodeGenSuppress("DeleteSubscription", typeof(Guid), typeof(Guid), typeof(Guid), typeof(CancellationToken))] - public partial class FulfillmentOperations + public partial class FulfillmentOperations : IFulfillmentOperations { - /// Use this call to update the plan, the user count (quantity), or both. - /// The Uuid to use. - /// The SubscriberPlan to use. - /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. - /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. - /// The cancellation token to use. - /// A representing the result of the asynchronous operation. + /// public virtual async Task UpdateSubscriptionAsync(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default) { using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.UpdateSubscription"); @@ -41,13 +35,7 @@ namespace Microsoft.Marketplace.SaaS } } - /// Use this call to update the plan, the user count (quantity), or both. - /// The Uuid to use. - /// The SubscriberPlan to use. - /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. - /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. - /// The cancellation token to use. - /// A representing the result of the operation. + /// public virtual string UpdateSubscription(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default) { using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.UpdateSubscription"); @@ -64,12 +52,7 @@ namespace Microsoft.Marketplace.SaaS } } - /// Unsubscribe and delete the specified subscription. - /// The Uuid to use. - /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. - /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. - /// The cancellation token to use. - /// A representing the result of the asynchronous operation. + /// public virtual async Task DeleteSubscriptionAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default) { using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.DeleteSubscription"); @@ -86,12 +69,7 @@ namespace Microsoft.Marketplace.SaaS } } - /// Unsubscribe and delete the specified subscription. - /// The Uuid to use. - /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. - /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. - /// The cancellation token to use. - /// A representing the result of the operation. + /// public virtual string DeleteSubscription(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default) { using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.DeleteSubscription"); diff --git a/src/Microsoft.Marketplace.SaaS/IFulfillmentOperations.cs b/src/Microsoft.Marketplace.SaaS/IFulfillmentOperations.cs new file mode 100644 index 0000000..9dc5973 --- /dev/null +++ b/src/Microsoft.Marketplace.SaaS/IFulfillmentOperations.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Microsoft.Marketplace.SaaS.Models; + +namespace Microsoft.Marketplace.SaaS +{ + /// The Subscription service client. + public interface IFulfillmentOperations + { + Response ActivateSubscription(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task ActivateSubscriptionAsync(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + /// Unsubscribe and delete the specified subscription. + /// The Uuid to use. + /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. + /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. + /// The cancellation token to use. + /// A representing the result of the operation. + string DeleteSubscription(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + /// Unsubscribe and delete the specified subscription. + /// The Uuid to use. + /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. + /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. + /// The cancellation token to use. + /// A representing the result of the asynchronous operation. + Task DeleteSubscriptionAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Response GetSubscription(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task> GetSubscriptionAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Response ListAvailablePlans(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task> ListAvailablePlansAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Pageable ListSubscriptions(string continuationToken = null, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + AsyncPageable ListSubscriptionsAsync(string continuationToken = null, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Response Resolve(string xMsMarketplaceToken, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task> ResolveAsync(string xMsMarketplaceToken, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + /// Use this call to update the plan, the user count (quantity), or both. + /// The Uuid to use. + /// The SubscriberPlan to use. + /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. + /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. + /// The cancellation token to use. + /// A representing the result of the operation. + string UpdateSubscription(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + /// Use this call to update the plan, the user count (quantity), or both. + /// The Uuid to use. + /// The SubscriberPlan to use. + /// A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. + /// A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. + /// The cancellation token to use. + /// A representing the result of the asynchronous operation. + Task UpdateSubscriptionAsync(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + } +} \ No newline at end of file diff --git a/src/Microsoft.Marketplace.SaaS/IMarketplaceSaaSClient.cs b/src/Microsoft.Marketplace.SaaS/IMarketplaceSaaSClient.cs new file mode 100644 index 0000000..d87d0f7 --- /dev/null +++ b/src/Microsoft.Marketplace.SaaS/IMarketplaceSaaSClient.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace Microsoft.Marketplace.SaaS +{ + public interface IMarketplaceSaaSClient + { + FulfillmentOperations Fulfillment { get; } + + SubscriptionOperations Operations { get; } + } +} \ No newline at end of file diff --git a/src/Microsoft.Marketplace.SaaS/ISubscriptionOperations.cs b/src/Microsoft.Marketplace.SaaS/ISubscriptionOperations.cs new file mode 100644 index 0000000..b40189c --- /dev/null +++ b/src/Microsoft.Marketplace.SaaS/ISubscriptionOperations.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Microsoft.Marketplace.SaaS.Models; + +namespace Microsoft.Marketplace.SaaS +{ + public interface ISubscriptionOperations + { + Response GetOperationStatus(Guid subscriptionId, Guid operationId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task> GetOperationStatusAsync(Guid subscriptionId, Guid operationId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Response ListOperations(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task> ListOperationsAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Response UpdateOperationStatus(Guid subscriptionId, Guid operationId, UpdateOperation body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + + Task UpdateOperationStatusAsync(Guid subscriptionId, Guid operationId, UpdateOperation body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default); + } +} \ No newline at end of file diff --git a/src/Microsoft.Marketplace.SaaS/MarketplaceSaaSClient.cs b/src/Microsoft.Marketplace.SaaS/MarketplaceSaaSClient.cs index 1c1e2ae..6c153a6 100644 --- a/src/Microsoft.Marketplace.SaaS/MarketplaceSaaSClient.cs +++ b/src/Microsoft.Marketplace.SaaS/MarketplaceSaaSClient.cs @@ -8,7 +8,7 @@ namespace Microsoft.Marketplace.SaaS using Azure.Core.Pipeline; /// SaaS service management client. - public class MarketplaceSaaSClient + public class MarketplaceSaaSClient : IMarketplaceSaaSClient { private readonly ClientDiagnostics clientDiagnostics; private readonly HttpPipeline pipeline; @@ -50,7 +50,7 @@ namespace Microsoft.Marketplace.SaaS /// Gets an instance of FulfillmentOperations. public virtual FulfillmentOperations Fulfillment => new FulfillmentOperations(this.clientDiagnostics, this.pipeline, this.endpoint); - /// Gets an instance of SubscriptionOperations. - public virtual SubscriptionOperations SubscriptionOperations => new SubscriptionOperations(this.clientDiagnostics, this.pipeline, this.endpoint); + /// Gets an instance of Operations. + public virtual SubscriptionOperations Operations => new SubscriptionOperations(this.clientDiagnostics, this.pipeline, this.endpoint); } } diff --git a/src/Microsoft.Marketplace.SaaS/SubscriptionOperations.cs b/src/Microsoft.Marketplace.SaaS/SubscriptionOperations.cs index b5234f3..64460ba 100644 --- a/src/Microsoft.Marketplace.SaaS/SubscriptionOperations.cs +++ b/src/Microsoft.Marketplace.SaaS/SubscriptionOperations.cs @@ -7,7 +7,7 @@ namespace Microsoft.Marketplace.SaaS /// The Subscription service client. [CodeGenClient("SubscriptionClient")] - public partial class SubscriptionOperations + public partial class SubscriptionOperations : ISubscriptionOperations { } } \ No newline at end of file diff --git a/src/NuGet.Config b/src/NuGet.Config new file mode 100644 index 0000000..dcb8c12 --- /dev/null +++ b/src/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/tests/Directory.Build.props b/tests/Directory.Build.props index ef018be..8c18a40 100644 --- a/tests/Directory.Build.props +++ b/tests/Directory.Build.props @@ -4,7 +4,7 @@ - netstandard2.0;netcoreapp3.1;net5.0 + netstandard2.0;net5.0;net47 diff --git a/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs b/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs index 3870e0e..24beb5b 100644 --- a/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs +++ b/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs @@ -6,12 +6,15 @@ using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net.Http; +using System.Security; +using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; using Azure.Core; using Azure.Core.Pipeline; using Azure.Core.TestFramework; using Azure.Identity; using Microsoft.Extensions.Configuration; +using Microsoft.Marketplace.Metering; using Microsoft.Marketplace.SaaS; using Microsoft.Marketplace.SaaS.Models; using NUnit.Framework; @@ -25,10 +28,12 @@ namespace Microsoft.Marketplace.Tests { private IConfigurationRoot config; + private const string MarketplacePurchaseIdentificationToken = "9EVFKOQwhUCgLB0OKLRdav6AoOXHDKqTUyYgGlJpDy92RdX8XGA+Ebv8XjBcKfcduQW0ggoG2xKszgQozWkU1yUouS+4xsy7xaCSiJRgg6XMkXI9RJV+pdD1/NbSGQIS7gqrxNziYDApXmSRvcd7EuTfdZK3vnsgcWf19g1qpVp+ooAVyCPb8sPvmSuOifJxdvHZu+99YvQURPKnnBchnJK2VQqxbNJZ1e3ZyhYxT28="; + // Changed to record when client code is generated first time manually. #pragma warning disable SA1600 // Elements should be documented public FulfillmentTests() - : base(true, RecordedTestMode.Playback) + : base(true, RecordedTestMode.Record) #pragma warning restore SA1600 // Elements should be documented { this.config = new ConfigurationBuilder() @@ -49,6 +54,18 @@ namespace Microsoft.Marketplace.Tests NUnit.Framework.Assert.IsTrue(subscriptions.Any()); } + [RecordedTest] + public async Task GetAllSubscriptionsAsListWithCertAsync() + { + var sut = this.InstrumentClient(this.GetMarketplaceSaaSClient(true)); + var subscriptions = await sut.Fulfillment.ListSubscriptionsAsync().ToListAsync(); + + Debug.Print($"Received {subscriptions} subscriptions"); + Debug.Print($"Received {subscriptions.Select(s => s.Id).Distinct().ToList().Count} distinct subscriptions"); + + NUnit.Framework.Assert.IsTrue(subscriptions.Any()); + } + [RecordedTest] public async Task GetSubscription() { @@ -92,7 +109,23 @@ namespace Microsoft.Marketplace.Tests // This needs to be run manually after receiving a marketplace token on the landing page, and adding here. // Don't forget to urldecode if you are copying from the url param - var marketplaceToken = "RUA01U9XFK7hkUoCGo0yOCEnXyJHu3cP9VihTQREWTyUkDySoSiMb5j3t3PHXPZUIPN61g1IRQESVIfVRimE+XfdKYiMjg9El3nP0AFhYxuuRMX4jhGeaJHP1JAdz9SP0cti/o6z3RgJDzWTN0eXtLgzbCoRUgdWa64/iHGIFKN30RA9njDxuJkuUp1Ml3wFsQKYcq4HjfD5lUcYOw6amefQ4RzHk9L+krn83OrHfwo="; + var marketplaceToken = MarketplacePurchaseIdentificationToken; + var resolvedSubscription = await sut.Fulfillment.ResolveAsync(marketplaceToken); + + Debug.Print(resolvedSubscription.Value.SubscriptionName); + Assert.IsNotNull(resolvedSubscription); + } + + [RecordedTest] + + // [Ignore("Only use with a new marketplace token and record!")] + public async Task ResolveSubscriptionWithCert() + { + var sut = this.InstrumentClient(this.GetMarketplaceSaaSClient(true)); + + // This needs to be run manually after receiving a marketplace token on the landing page, and adding here. + // Don't forget to urldecode if you are copying from the url param + var marketplaceToken = MarketplacePurchaseIdentificationToken; var resolvedSubscription = await sut.Fulfillment.ResolveAsync(marketplaceToken); Debug.Print(resolvedSubscription.Value.SubscriptionName); @@ -116,7 +149,7 @@ namespace Microsoft.Marketplace.Tests // Cannot check whether this succeeed or not. var operationId = Guid.TryParse(result, out var value) ? value : Guid.Empty; - var operation = await sut.SubscriptionOperations.GetOperationStatusAsync(firstActiveSubscription.Id.Value, operationId); + var operation = await sut.Operations.GetOperationStatusAsync(firstActiveSubscription.Id.Value, operationId); Assert.IsNotNull(operation); @@ -154,12 +187,74 @@ namespace Microsoft.Marketplace.Tests Assert.IsTrue(availablePlans.Value.Plans.SelectMany(p => p.PlanComponents.RecurrentBillingTerms).Any()); } - private MarketplaceSaaSClient GetMarketplaceSaaSClient() + [RecordedTest] + public async Task PostSingleUsage() { - return new MarketplaceSaaSClient(new ClientSecretCredential(this.config["TenantId"], this.config["ClientId"], this.config["clientSecret"]), this.GetOptions()); + var sut = this.InstrumentClient(this.GetMarketplaceMeteringClient()); + + var usageEvent = new Metering.Models.UsageEvent { + ResourceUri = "/subscriptions/bf7adf12-c3a8-426c-9976-29f145eba70f/resourceGroups/ercmngd/providers/Microsoft.Solutions/applications/ercuserassigned", + Quantity = 15, + Dimension = "dim1", + EffectiveStartTime = DateTime.Now.AddHours(-65), + PlanId = "userassigned", + }; + + var result = await sut.Metering.PostUsageEventAsync(usageEvent); + } - private MarketplaceSaaSClientOptions GetOptions() + private MarketplaceSaaSClient GetMarketplaceSaaSClient(bool useCert = false) + { + TokenCredential creds; + if (useCert) + { + var password = this.config["certPassword"]; + var filePath = this.config["certFilePath"]; + + var store = new X509Store(StoreName.My, StoreLocation.CurrentUser); + + var certCollection = new X509Certificate2Collection(); + certCollection.Import(filePath, password, X509KeyStorageFlags.PersistKeySet); + + var cert = certCollection[0]; + + creds = new ClientCertificateCredential(this.config["TenantId"], this.config["ClientId"], cert); + } + else + { + creds = new ClientSecretCredential(this.config["TenantId"], this.config["ClientId"], this.config["clientSecret"]); + } + + return new MarketplaceSaaSClient(creds, this.GetMarketplaceSaaSClientOptions()); + } + + private MarketplaceMeteringClient GetMarketplaceMeteringClient(bool useCert = false) + { + TokenCredential creds; + if (useCert) + { + var password = this.config["certPassword"]; + var filePath = this.config["certFilePath"]; + + var store = new X509Store(StoreName.My, StoreLocation.CurrentUser); + + var certCollection = new X509Certificate2Collection(); + certCollection.Import(filePath, password, X509KeyStorageFlags.PersistKeySet); + + var cert = certCollection[0]; + + creds = new ClientCertificateCredential(this.config["TenantId"], this.config["ClientId"], cert); + } + else + { + creds = new ClientSecretCredential(this.config["TenantId"], this.config["ClientId"], this.config["clientSecret"]); + } + + return new MarketplaceMeteringClient(creds, this.GetMarketplaceMeteringClientOptions()); + } + + private MarketplaceSaaSClientOptions GetMarketplaceSaaSClientOptions() { var options = new MarketplaceSaaSClientOptions() { @@ -185,5 +280,32 @@ namespace Microsoft.Marketplace.Tests return this.InstrumentClientOptions(options); } + + private MarketplaceMeteringClientOptions GetMarketplaceMeteringClientOptions() + { + var options = new MarketplaceMeteringClientOptions() + { + Diagnostics = { IsLoggingEnabled = true }, + Retry = + { + Mode = RetryMode.Exponential, + MaxRetries = 10, + Delay = TimeSpan.FromSeconds(this.Mode == RecordedTestMode.Playback ? 0.01 : 1), + MaxDelay = TimeSpan.FromSeconds(this.Mode == RecordedTestMode.Playback ? 0.1 : 60), + NetworkTimeout = TimeSpan.FromSeconds(this.Mode == RecordedTestMode.Playback ? 100 : 400), + }, + Transport = new HttpClientTransport( + new HttpClient() + { + Timeout = TimeSpan.FromSeconds(1000), + }), + }; + if (this.Mode != RecordedTestMode.Live) + { + options.AddPolicy(new RecordedClientRequestIdPolicy(this.Recording, false), HttpPipelinePosition.PerCall); + } + + return this.InstrumentClientOptions(options); + } } } diff --git a/tests/Microsoft.Marketplace.Tests/Microsoft.Marketplace.Tests.csproj b/tests/Microsoft.Marketplace.Tests/Microsoft.Marketplace.Tests.csproj index a75fa10..ae58da5 100644 --- a/tests/Microsoft.Marketplace.Tests/Microsoft.Marketplace.Tests.csproj +++ b/tests/Microsoft.Marketplace.Tests/Microsoft.Marketplace.Tests.csproj @@ -18,12 +18,13 @@ - + + @@ -33,11 +34,10 @@ - + - - + diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json index 90d09a8..cbb1afc 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "ed24abfb-d973-f316-82a1-d715cbcad6e8", "x-ms-return-client-request-id": "true" @@ -16,19 +16,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "83978", + "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:03 GMT", - "ETag": "\u002211953bdf-2f00-440e-a9e7-2d803b16d65f\u0022", - "Server": "Microsoft-IIS/10.0", + "Date": "Fri, 19 Feb 2021 19:46:49 GMT", + "ETag": "\u00222cbf90c3-dbc8-46f3-ad14-9d73f549588a\u0022", "Set-Cookie": [ - "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", - "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" + "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", + "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "x-content-type-options": "nosniff", - "x-ms-activityid": "ce2ca8cc-feff-4d38-9f8c-6518a4a5e733", - "x-ms-correlationid": "033d9c77-ed0d-4825-9200-bbd33668a305", - "x-ms-requestid": "033d9c77-ed0d-4825-9200-bbd33668a305", + "X-Azure-Ref": "0qRUwYAAAAACnoSS6tQDORYhVai7R7w3\u002BV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "b2b5772f-c19e-4d6f-b2f3-d88e75947a02", + "x-ms-correlationid": "77ad69d2-8d6c-45b1-837a-c5fe5eb9807d", + "x-ms-requestid": "77ad69d2-8d6c-45b1-837a-c5fe5eb9807d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,8 +133,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -150,7 +150,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T17:41:07.1576845Z", - "lastModified": "2021-02-01T22:33:27.6541116Z", + "lastModified": "2021-02-11T21:56:01.1229201Z", "sessionMode": "None" }, { @@ -1859,8 +1859,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-12T00:00:00Z", - "endDate": "2021-02-11T00:00:00Z", + "startDate": "2021-02-12T00:00:00Z", + "endDate": "2021-03-11T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -1876,7 +1876,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-29T19:24:46.8480754Z", - "lastModified": "2021-01-12T18:15:04.5716647Z", + "lastModified": "2021-02-12T04:17:22.9227318Z", "sessionMode": "None" }, { @@ -2009,8 +2009,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2026,7 +2026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T15:48:58.5963255Z", - "lastModified": "2021-01-11T00:01:33.4511326Z", + "lastModified": "2021-02-11T02:18:11.7678927Z", "sessionMode": "None" }, { @@ -2267,8 +2267,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2284,7 +2284,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T18:12:41.5561984Z", - "lastModified": "2021-01-11T21:25:38.6063496Z", + "lastModified": "2021-02-11T21:19:06.6443612Z", "sessionMode": "None" }, { @@ -2998,6 +2998,62 @@ "created": "2021-01-22T17:46:42.8121831Z", "lastModified": "2021-01-22T17:56:35.4880589Z", "sessionMode": "None" + }, + { + "id": "489f64b6-98ec-a062-a8b4-5367484d1d14", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "test", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "purchaser": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0", + "fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-02-04T17:29:21.8405148Z", + "lastModified": "2021-02-04T17:32:19.0300527Z", + "sessionMode": "None" } ], "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" @@ -3011,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "0888f65e-3aea-b998-47c1-52f4bf33b100", "x-ms-return-client-request-id": "true" @@ -3019,15 +3075,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "89604", + "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:03 GMT", - "ETag": "\u0022ea67fc5c-5fc1-4391-b673-389c7c5b65d4\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "02d146d5-0361-457c-ae77-2a76859ada02", - "x-ms-correlationid": "3849d3b1-c6a8-40d4-98d1-c85888c21692", - "x-ms-requestid": "3849d3b1-c6a8-40d4-98d1-c85888c21692", + "Date": "Fri, 19 Feb 2021 19:46:49 GMT", + "ETag": "\u0022393e492f-e1ee-4c9a-99c8-b419f61fb0b8\u0022", + "X-Azure-Ref": "0qhUwYAAAAADCZpswwYhLR7Oe5IfrXJ6RV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "db4f18fc-e0a8-4e24-a435-7cecb660ed6e", + "x-ms-correlationid": "2fd330bd-7539-4a81-a34c-b3e327380be9", + "x-ms-requestid": "2fd330bd-7539-4a81-a34c-b3e327380be9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5548,8 +5604,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5565,7 +5621,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T19:13:14.9763056Z", - "lastModified": "2021-01-11T13:45:22.9808889Z", + "lastModified": "2021-02-11T13:18:00.464219Z", "sessionMode": "None" }, { @@ -6274,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "d5b7c9bd-cd42-93fe-96c4-7917aadb933b", "x-ms-return-client-request-id": "true" @@ -6282,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118394", + "Content-Length": "118383", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:03 GMT", - "ETag": "\u0022dbe993fd-d993-42f8-bd2f-e15db3ff2043\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "08a6e026-975c-4de8-8da9-db7502075f74", - "x-ms-correlationid": "94c694f3-5fa3-4454-ae16-16dcc8158f47", - "x-ms-requestid": "94c694f3-5fa3-4454-ae16-16dcc8158f47", + "Date": "Fri, 19 Feb 2021 19:46:49 GMT", + "ETag": "\u0022dfd55375-b6e4-4a71-a005-2dc50bb2a140\u0022", + "X-Azure-Ref": "0qhUwYAAAAADM9HHEPLIyR7Wf\u002B6dwfudqV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "17426b74-6eda-4b20-b113-dc0a756806bf", + "x-ms-correlationid": "3948e001-62d1-4936-a322-dc74d43bd935", + "x-ms-requestid": "3948e001-62d1-4936-a322-dc74d43bd935", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6515,8 +6571,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -6532,7 +6588,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T16:51:35.2238173Z", - "lastModified": "2021-01-07T21:16:38.0056464Z", + "lastModified": "2021-02-07T17:36:47.4081955Z", "sessionMode": "None" }, { @@ -8825,8 +8881,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8842,7 +8898,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-07T15:38:39.5264795Z", - "lastModified": "2021-01-07T13:24:33.1506448Z", + "lastModified": "2021-02-07T19:42:33.5592454Z", "sessionMode": "None" }, { @@ -8894,7 +8950,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T23:19:04.6687978Z", - "lastModified": "2021-01-11T21:23:34.7767656Z", + "lastModified": "2021-02-11T02:13:53.2938907Z", "sessionMode": "None" }, { @@ -9623,8 +9679,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9640,7 +9696,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-21T17:52:54.0642703Z", - "lastModified": "2021-01-21T18:57:17.9829907Z", + "lastModified": "2021-02-14T02:51:35.1862122Z", "sessionMode": "None" }, { @@ -9667,8 +9723,8 @@ }, "planId": "public", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9684,7 +9740,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T18:10:33.2525465Z", - "lastModified": "2021-01-14T20:06:23.9230469Z", + "lastModified": "2021-02-14T14:48:21.1638543Z", "sessionMode": "None" }, { @@ -9711,8 +9767,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9728,7 +9784,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T21:11:58.5885238Z", - "lastModified": "2021-01-14T22:32:18.8778354Z", + "lastModified": "2021-02-14T12:33:52.5867286Z", "sessionMode": "None" }, { @@ -9861,8 +9917,8 @@ }, "planId": "instant-portal-standard", "term": { - "startDate": "2021-01-05T00:00:00Z", - "endDate": "2021-02-04T00:00:00Z", + "startDate": "2021-02-05T00:00:00Z", + "endDate": "2021-03-04T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9878,7 +9934,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-05T02:42:08.2082173Z", - "lastModified": "2021-01-05T15:02:26.6216391Z", + "lastModified": "2021-02-05T08:37:15.6026716Z", "sessionMode": "None" }, { @@ -9957,8 +10013,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-19T00:00:00Z", - "endDate": "2021-02-18T00:00:00Z", + "startDate": "2021-02-19T00:00:00Z", + "endDate": "2021-03-18T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9974,7 +10030,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-19T17:49:25.4024396Z", - "lastModified": "2021-01-19T08:07:38.8873732Z", + "lastModified": "2021-02-19T02:01:09.0269304Z", "sessionMode": "None" }, { @@ -10334,7 +10390,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "redmond115", - "saasSubscriptionStatus": "PendingFulfillmentStart", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@hotmail.com", "objectId": "d2858116-704b-480d-acf8-340adbab114f", @@ -10376,7 +10432,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2021-01-15T22:01:18.6098849Z", - "lastModified": "2021-01-15T22:01:22.5319981Z", + "lastModified": "2021-02-15T06:27:41.7806117Z", "sessionMode": "None" }, { @@ -10481,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "f53712ca-db7c-d3be-b4b6-e2e64d9a52ff", "x-ms-return-client-request-id": "true" @@ -10491,13 +10547,13 @@ "ResponseHeaders": { "Content-Length": "97842", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:04 GMT", - "ETag": "\u0022daa10250-d597-4c44-a9ed-d1071036803c\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "37596bf6-396e-418b-8319-121cb468e5f2", - "x-ms-correlationid": "c12cde84-09a5-49c8-b234-b4c47cc864db", - "x-ms-requestid": "c12cde84-09a5-49c8-b234-b4c47cc864db", + "Date": "Fri, 19 Feb 2021 19:46:49 GMT", + "ETag": "\u00222413e284-e67e-4b81-8870-aa7a133d7b55\u0022", + "X-Azure-Ref": "0qhUwYAAAAABwM9LK78BOSrs\u002BZ9SSq1FTV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "3088ff02-225e-4f10-93c4-4acc8536d852", + "x-ms-correlationid": "d97d01c6-3cda-4968-b356-a93e098af1cc", + "x-ms-requestid": "d97d01c6-3cda-4968-b356-a93e098af1cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13066,8 +13122,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-10T00:00:00Z", - "endDate": "2021-02-09T00:00:00Z", + "startDate": "2021-02-10T00:00:00Z", + "endDate": "2021-03-09T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13083,7 +13139,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-10T16:29:54.8329451Z", - "lastModified": "2021-01-10T18:15:18.1894662Z", + "lastModified": "2021-02-10T03:47:57.9818166Z", "sessionMode": "None" }, { @@ -13154,8 +13210,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13171,7 +13227,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-14T23:24:49.8054763Z", - "lastModified": "2021-01-14T18:31:57.2401121Z", + "lastModified": "2021-02-14T20:46:24.2746881Z", "sessionMode": "None" }, { @@ -13198,8 +13254,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-15T00:00:00Z", - "endDate": "2021-02-14T00:00:00Z", + "startDate": "2021-02-15T00:00:00Z", + "endDate": "2021-03-14T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13215,7 +13271,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-15T19:47:31.1572826Z", - "lastModified": "2021-01-15T12:34:41.6980612Z", + "lastModified": "2021-02-15T11:35:56.7024853Z", "sessionMode": "None" }, { @@ -13426,8 +13482,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13443,7 +13499,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-28T17:32:17.3885671Z", - "lastModified": "2021-01-14T02:02:09.9020713Z", + "lastModified": "2021-02-14T13:03:16.3618579Z", "sessionMode": "None" }, { @@ -13821,7 +13877,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-01-20T18:30:26.4474061Z", + "lastModified": "2021-02-13T06:06:32.6033421Z", "sessionMode": "None" }, { @@ -13934,7 +13990,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "984d73dd-9da4-02bf-4761-9443877d48a9", "x-ms-return-client-request-id": "true" @@ -13942,15 +13998,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "115879", + "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:04 GMT", - "ETag": "\u00228eb6d704-09f4-41d5-b51b-9696d7799188\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "5e8f8739-5d2c-4dc8-a696-c4cbecaf63df", - "x-ms-correlationid": "61dcf29c-6e1e-4c68-8c0a-e488920b5a19", - "x-ms-requestid": "61dcf29c-6e1e-4c68-8c0a-e488920b5a19", + "Date": "Fri, 19 Feb 2021 19:46:49 GMT", + "ETag": "\u0022250730c4-66a3-477e-8f40-4976b4f113bd\u0022", + "X-Azure-Ref": "0qhUwYAAAAACKaL3J/Jo4T7d4sqU77j4bV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "e63376ac-2838-4880-a5cb-f6e79e2a8dfe", + "x-ms-correlationid": "ee531349-285b-4e60-9bbf-f2898dcea872", + "x-ms-requestid": "ee531349-285b-4e60-9bbf-f2898dcea872", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14683,8 +14739,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-09T00:00:00Z", - "endDate": "2021-02-08T00:00:00Z", + "startDate": "2021-02-09T00:00:00Z", + "endDate": "2021-03-08T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -14700,7 +14756,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-12-09T13:18:30.9138381Z", - "lastModified": "2021-01-09T22:58:42.1164947Z", + "lastModified": "2021-02-09T10:56:54.980815Z", "sessionMode": "None" }, { @@ -15237,8 +15293,8 @@ }, "planId": "base", "term": { - "startDate": "2021-01-13T00:00:00Z", - "endDate": "2021-02-12T00:00:00Z", + "startDate": "2021-02-13T00:00:00Z", + "endDate": "2021-03-12T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -15254,7 +15310,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-02-13T18:17:58.7971727Z", - "lastModified": "2021-01-13T19:41:10.283823Z", + "lastModified": "2021-02-13T04:25:20.8252684Z", "sessionMode": "None" }, { @@ -15414,7 +15470,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond 3-2-1", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -15446,7 +15502,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-03-02T16:43:30.3063035Z", - "lastModified": "2021-02-02T18:18:19.1298285Z", + "lastModified": "2021-02-08T18:10:24.3657561Z", "sessionMode": "None" }, { @@ -15970,7 +16026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-09T23:40:30.887548Z", - "lastModified": "2021-01-09T11:39:50.1911926Z", + "lastModified": "2021-02-09T22:57:20.5118236Z", "sessionMode": "None" }, { @@ -16703,8 +16759,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -16720,7 +16776,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T15:36:22.2336759Z", - "lastModified": "2021-01-11T14:02:04.8101096Z", + "lastModified": "2021-02-11T11:23:24.9257264Z", "sessionMode": "None" }, { @@ -17786,8 +17842,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -17803,7 +17859,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-29T14:09:59.8172835Z", - "lastModified": "2021-01-14T02:19:03.7107539Z", + "lastModified": "2021-02-14T18:57:22.4601469Z", "sessionMode": "None" }, { @@ -18016,7 +18072,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond1292", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -18054,7 +18110,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-29T21:39:09.5744025Z", - "lastModified": "2021-01-29T21:48:16.511869Z", + "lastModified": "2021-02-09T15:25:01.2941457Z", "sessionMode": "None" } ] diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json new file mode 100644 index 0000000..4c8d486 --- /dev/null +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json @@ -0,0 +1,18123 @@ +{ + "Entries": [ + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?api-version=2018-08-31", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + ], + "x-ms-client-request-id": "20b90979-b4b1-cec1-c063-1da3cdec6824", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "85609", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 19 Feb 2021 19:46:50 GMT", + "ETag": "\u0022c01eddb2-2ba8-487f-ae9e-d7391c136e77\u0022", + "Set-Cookie": [ + "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", + "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" + ], + "X-Azure-Ref": "0qxUwYAAAAADfwnXLjUPVRbqrtWcLXrQbV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "81ef97c3-6acb-4571-928b-60dca1560efb", + "x-ms-correlationid": "9a010f57-b038-4419-bc50-6e5041870342", + "x-ms-requestid": "9a010f57-b038-4419-bc50-6e5041870342", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "subscriptions": [ + { + "id": "4aea5574-281c-7b2f-de26-e0f8369bc2d2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "basic", + "term": { + "startDate": "2019-09-24T00:00:00Z", + "endDate": "2019-10-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "265f0683-2b2c-4563-9e92-60bc630157d8", + "fulfillmentId": "badf9fce-f41d-4145-ab9d-9d4743eefe40", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-24T17:39:13.5661812Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "17adb6d2-4289-581c-2cb7-db784599a7bd", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2019-09-27T00:00:00Z", + "endDate": "2019-10-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "cb2e80db-2ee9-440b-8450-8655db9f7912", + "fulfillmentId": "999fbe02-4936-4851-9a31-4d65460c6e5d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-27T22:19:19.0417636Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "de8efdae-6fa2-47ba-7903-3ccda226f82f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk Azure Friday - 3", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e35bab38-81b9-4137-a55d-020606cf8f8f", + "fulfillmentId": "b6d9050d-da9c-4e81-a2f2-a81e9e4a2613", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-07T17:41:07.1576845Z", + "lastModified": "2021-02-11T21:56:01.1229201Z", + "sessionMode": "None" + }, + { + "id": "14fa0d89-51db-aceb-10e4-814bf3643b9b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-11-4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "56e0b18c-de16-4ced-8f36-a6174cb13f45", + "fulfillmentId": "44e4350d-942f-4cb5-a985-d7aa8400c8cf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-11T20:37:45.040721Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b6d2be11-775e-1d68-204d-3e7baebf14ae", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk 10-15-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ea926562-84c7-4a65-9050-59926be66511", + "fulfillmentId": "f9f993b0-3d34-4a9d-bbb5-6299bb800c2b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-15T15:26:15.1106956Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "01626a07-558f-b0c9-5eca-3033e927100b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test13", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2019-10-31T00:00:00Z", + "endDate": "2019-11-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7903c454-c189-454e-9934-19b58e9ed0bd", + "fulfillmentId": "e67173d4-60b1-4111-a2af-1064ffdb0021", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-31T06:07:52.096491Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "80595e5c-5391-b449-5730-eca9db789bf0", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test16", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "startDate": "2019-12-01T00:00:00Z", + "endDate": "2019-12-31T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "33353d45-cf3b-4570-a3aa-a99a24475b6f", + "fulfillmentId": "c628883a-5c68-4219-bdce-c7132ad8cb5d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-01T05:07:51.4262352Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7b653961-7b8f-a1d9-0c7d-cd760bb32f10", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e91711de-8794-4944-8c3c-1d70029587a4", + "fulfillmentId": "a4d423d8-e7a8-4f88-b0ea-015d333bb5e6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-21T03:28:03.6739492Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a4997efb-103c-6560-14c9-8901fd8c49cd", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk test 11-21", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c9a9b322-6156-4993-adbb-95f866df3a6f", + "fulfillmentId": "0b4b39de-0eb8-490d-b877-8d38011f7730", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-21T16:44:32.2365913Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ef22d7d6-7d18-3c97-b6c7-3a2f73cfa7db", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk test 11-25", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2019-12-25T00:00:00Z", + "endDate": "2020-01-24T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "18f159a5-82c3-4c91-85b8-91da9cf8cac1", + "fulfillmentId": "c70d5544-51d1-4428-a980-c70654a8a96b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-25T22:04:19.5592806Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e6d5d64e-15fd-0372-1b05-bd3a20bd17ad", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk test 12-4-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2020-01-04T00:00:00Z", + "endDate": "2020-02-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5a71afdb-90c4-45f1-b5e6-4a9c939426e5", + "fulfillmentId": "76ac2b1c-cfb5-41d6-ad9a-6c3b1a7df817", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-04T16:42:57.8714251Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7e836175-bd65-9e02-be08-3e9e7bdac466", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test-op", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "523a38ed-49c8-497c-8d97-bb6e4dd38a4e", + "fulfillmentId": "ceaf3ae3-54b5-4153-9485-56d5bad5ee34", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-05T16:13:38.943085Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "88e0840b-df6a-3e5b-83ce-db965e8866a5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-optra", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6e82043f-fb7d-4107-a02b-4bebd615f4d0", + "fulfillmentId": "e94cc698-83ca-42b2-a1ed-75599b814ed7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-12T16:11:26.2780238Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "49d27975-edb0-f4ae-52e4-172171da614c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-snapnstyle", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "57703b77-3ddb-40f6-b617-ffade93874f7", + "fulfillmentId": "b31bb18e-cbaa-4f63-8c47-fe3f52a14108", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-13T18:09:41.5284199Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "4c49739f-217f-5d1b-5722-69278d4015c1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Istanbul 14", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2020-05-18T00:00:00Z", + "endDate": "2020-06-17T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6f5eba14-f7da-497a-8833-56bafcc4bb95", + "fulfillmentId": "26d6e491-ce0b-45aa-b7a4-47794db62343", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-18T14:13:54.449084Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a4cb2fb4-dd3f-2271-035c-17fbc7fac4bc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "bf9dff51-95d8-4e50-87fe-c861a3b52c71", + "fulfillmentId": "04c0f3bb-0432-4ac1-8c59-5d5f6c9f877c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-07T19:21:19.97553Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1483813d-ea71-9780-65ca-891ee36d9e6b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-ai", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-08T00:00:00Z", + "endDate": "2020-02-07T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6af1a3ae-dcf1-452e-8143-57590cccb118", + "fulfillmentId": "132e4e49-fc0d-493a-9a76-a48c984ed734", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-08T19:12:35.5307505Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a5395223-d6eb-645e-7e3f-628f32ca0b11", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-dd", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "964be651-d86b-4999-a1c0-d3ac8e3c2373", + "fulfillmentId": "aafffff6-d5ed-4d5b-b599-839b6396a97b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-10T18:58:58.0358783Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1a1e5ad7-48e4-d915-4108-b74b3d20cf59", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "My Instant Portal", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-01-31T00:00:00Z", + "endDate": "2020-03-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "55ecc341-4e82-4ebc-9c2f-2bec48b85ef0", + "fulfillmentId": "51e88f40-c039-494d-a5b8-3fa5eda60894", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-27T18:22:31.4439817Z", + "lastModified": "2020-09-18T23:56:34.1501321Z", + "sessionMode": "None" + }, + { + "id": "26e63fd3-4477-c234-25c3-713143cb80fc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-27-2020-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "60065994-d648-473e-8f01-a9ce23704667", + "fulfillmentId": "db3e7528-16f5-4e63-9ce6-95886b0b077e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-27T23:02:00.3877718Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "46dd92e1-8a3a-93a6-8ac4-addec182f734", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-ft-test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3cd4b5e8-7f60-4aa9-9554-7fb36776dbe4", + "fulfillmentId": "459ce87b-ae7c-46e3-a12d-fcd7cd0a0208", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-31T21:43:55.1150307Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "979bdc39-aa3f-f8c1-e048-96445af96706", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Scott\u0027s Instant Portal", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-02-05T00:00:00Z", + "endDate": "2020-03-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "aaa9cf48-40cd-40cc-b3f9-94e33fe93223", + "fulfillmentId": "8900550e-f6bc-441e-a5bb-0843273437cd", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-05T01:08:52.4400831Z", + "lastModified": "2020-09-18T23:56:49.0267478Z", + "sessionMode": "None" + }, + { + "id": "f107578b-6e3d-49ff-dd32-e49d9162e41f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Delete this", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-10T00:00:00Z", + "endDate": "2020-03-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "45c986f8-a053-45c2-a285-6958f6f750c3", + "fulfillmentId": "3b919778-1c90-4101-8c0a-a4248a8b7fb0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-10T22:46:44.2173022Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f63283ed-112d-dab3-dd2f-f8934c7e9eca", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 2-13-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "base", + "term": { + "startDate": "2020-05-13T00:00:00Z", + "endDate": "2020-06-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e186e68a-4411-438d-a8e3-d82e9476d859", + "fulfillmentId": "57309189-6287-45f1-b56f-80dfaec8b42d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-13T19:20:26.6786724Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7029baa6-847e-efd6-b6aa-52d022cebcb3", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-q", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-13T00:00:00Z", + "endDate": "2020-03-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e8966729-6725-46ba-a51b-4a4798d5660d", + "fulfillmentId": "7b9088ba-fe53-48d9-a6f0-1e5e56e2ae72", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-13T19:40:38.5428325Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e118a090-d97b-c58b-2af9-a12c260cd217", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 20-2-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "840535ec-5d8a-45f7-b089-661be56454fa", + "fulfillmentId": "8573f26c-767b-4ec4-aafc-568bbd14cefc", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-20T19:33:45.3042494Z", + "lastModified": "2020-11-03T23:00:44.1406667Z", + "sessionMode": "None" + }, + { + "id": "80b57295-d9f2-b536-fbe1-b274eb60da45", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 3-4-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-04T00:00:00Z", + "endDate": "2020-04-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "91ce001c-0238-465e-b3d1-d605427391c5", + "fulfillmentId": "12514007-eb8a-44ef-9e69-26e1390e5557", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-04T20:25:46.9761071Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "85ef31e3-e3d5-c353-b500-84a0a3ace818", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "madiha", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-05T00:00:00Z", + "endDate": "2020-04-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e5dbb80b-98a1-44fd-b465-6399c56c2ae5", + "fulfillmentId": "d2b2cfe0-a70c-4ae6-9037-2e4d547cbe7c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-05T22:14:36.3078935Z", + "lastModified": "2020-09-19T17:33:09.5328509Z", + "sessionMode": "None" + }, + { + "id": "31c9fd9c-513c-b896-4aac-a6fcf2082f19", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test different sub", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-03-24T00:00:00Z", + "endDate": "2020-04-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7a48f6aa-1a8a-453f-9328-384bada9f9ef", + "fulfillmentId": "350697bf-dca8-4ee0-b96f-50a87596c7a7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-24T14:06:02.5962145Z", + "lastModified": "2020-09-22T00:05:53.2631939Z", + "sessionMode": "None" + }, + { + "id": "e00d065c-5991-de7b-bfc6-f86f7992e3ae", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 3-27", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "base", + "term": { + "startDate": "2020-05-27T00:00:00Z", + "endDate": "2020-06-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c8f0a731-6a7b-43ec-9b40-dcc9a865d069", + "fulfillmentId": "02a128be-c19c-4d91-9bda-7c9d30679b24", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-27T16:13:07.0305734Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "884357ff-b140-66f7-4165-bc37cfb2f01e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-eg", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-30T00:00:00Z", + "endDate": "2020-04-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "00f7390f-37f4-439d-9593-ff02a6d18400", + "fulfillmentId": "9ecd3b35-e705-49b7-b3f9-ca9d38d9bb80", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-30T13:48:12.7384078Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "fccb0865-1898-2406-bf5c-80bd142f5ab7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-p360", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-30T00:00:00Z", + "endDate": "2020-04-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "60e4ac8a-c801-4096-b267-43ab664df16b", + "fulfillmentId": "161085dc-2659-4193-83a9-840408d776a1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-30T17:51:59.9378478Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "0b89c6a5-2f04-9d64-a173-0769acc1975f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-06-01T00:00:00Z", + "endDate": "2020-06-30T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "fd2a10f1-0e63-44e6-bd7c-0c79966fb18c", + "fulfillmentId": "82197985-d479-4f59-a130-f811d510e82e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-01T14:48:06.3660454Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "9d8d6b4e-d4d0-4853-b07f-389fd1ef00e7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-04-02T00:00:00Z", + "endDate": "2020-05-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "330c7444-5838-4c1a-beb7-82ce62519bf6", + "fulfillmentId": "133fc733-189b-49da-837f-58ac6391bed8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-02T17:25:27.9080196Z", + "lastModified": "2020-09-19T17:39:09.8667088Z", + "sessionMode": "None" + }, + { + "id": "cf8f1a3e-3024-5cac-53c1-b55f04dace57", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Liiliwaup 4-8", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2020-06-08T00:00:00Z", + "endDate": "2020-07-07T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1347499f-5384-42b4-ab4b-4c98120f884f", + "fulfillmentId": "4f51e886-ed9a-495a-b134-869baa107534", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-08T22:30:28.9150925Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "693c4c43-a120-d9dd-4e83-4840eb5e00fc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-04-09T00:00:00Z", + "endDate": "2020-05-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "76729b9d-fdba-4bbf-9fc0-c55aace7253f", + "fulfillmentId": "e3025dc0-2f24-48dd-8645-7f6ce3042841", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T23:30:38.9452264Z", + "lastModified": "2020-09-19T17:38:17.8451247Z", + "sessionMode": "None" + }, + { + "id": "7c807bfb-728b-29a3-7811-8f80ec964869", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-13-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "37169cea-b84b-47f2-84f3-ac9f5f5329d7", + "fulfillmentId": "df4fe085-8a83-4293-a3d9-334712495ed3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-13T18:04:59.2296195Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "4e70ca31-b1f6-e61d-b60e-f94d10d8a151", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-14-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2020-05-14T00:00:00Z", + "endDate": "2020-06-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3e8328d4-6cf7-4a63-8e16-9ce789843d70", + "fulfillmentId": "6c5f7ba4-02a0-4278-bf0e-ff689596bd69", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-14T14:16:27.1363496Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e81121ff-5514-5b11-84e1-107f91150017", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliaup 4-14-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "cc042854-a8d1-41d8-87d6-f0a4cabbeb32", + "fulfillmentId": "3626bc58-8041-45ee-a0e1-76c80011379e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-14T22:16:09.326069Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7da4299f-6e48-a727-a221-7f606d6c4983", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-15-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "efc0b112-9c5a-4f55-90b4-66e1a625549b", + "fulfillmentId": "f61497c0-52b8-45e5-b6ff-524e91e5f689", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-16T02:50:13.0424568Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ab8923e0-9ac5-b203-7fac-e23fb89de995", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-29-2020", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-12T00:00:00Z", + "endDate": "2021-03-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "31dc09af-653c-496d-abc6-ff5e3bf2fc6f", + "fulfillmentId": "d2b7defc-1c97-4035-972a-1a45ab946b2c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-29T19:24:46.8480754Z", + "lastModified": "2021-02-12T04:17:22.9227318Z", + "sessionMode": "None" + }, + { + "id": "e612ebf2-b007-b32f-f538-784a8da3d517", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2d52a02d-79c8-42cb-8c49-3dc6840ea1c4", + "fulfillmentId": "880d5321-1115-4c7b-9586-44d7843b4525", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-29T21:07:06.3566114Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ac6f03d7-b62f-c60a-c135-ed6b8dd5d80e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-05T00:00:00Z", + "endDate": "2020-06-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "eabd70f9-8d8c-42e8-a3ad-16342923ab1c", + "fulfillmentId": "d75ee72f-c845-4887-8545-a0900de7d16f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-01T21:54:28.3293254Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ac65bb0a-81d3-17f9-0f99-ba7e23cdbf0b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-6-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ca6277a8-5717-4443-a6ef-a2488401c3f4", + "fulfillmentId": "144fde0d-6d7c-4c8e-91f1-1948f519b4a9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T15:48:58.5963255Z", + "lastModified": "2021-02-11T02:18:11.7678927Z", + "sessionMode": "None" + }, + { + "id": "82940fbd-8ff6-9e9f-dbc2-3510fadb3553", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c24294fb-1006-4273-9c05-69867a0d2d97", + "fulfillmentId": "bafcf98a-c737-4427-8058-9b91379b2a9d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-11T23:16:55.3841385Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "bf08d973-41a7-8dcd-0ea9-26b5c28217c7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-12T00:00:00Z", + "endDate": "2020-06-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "73baff0c-5603-43ef-9234-13bc2411c0ce", + "fulfillmentId": "1072cafb-cf10-4a9a-81b1-1353d5e088ae", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-12T00:01:21.1178342Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "06a7b97e-48a6-6db1-de5d-68cdd83da2a6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-12T00:00:00Z", + "endDate": "2020-06-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a312f92d-2d0e-4891-ac7f-770bf7b162ff", + "fulfillmentId": "69abfbb7-bf74-479b-94ca-65767cae2bd8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-12T15:16:22.4474004Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e2524e7b-4c25-1c06-9856-79edd655595f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Whatever name", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-06-09T00:00:00Z", + "endDate": "2020-07-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f695bdf3-9ef1-4f81-9d4b-915eb1b195a2", + "fulfillmentId": "9e569c0b-efdc-4cc1-9d94-f9255510347d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-09T18:09:43.138565Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "399e310f-3600-3b81-1448-29cbbbc88d45", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 6-11-2020-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "97781e1f-cd80-4550-ba02-2205cec55ad2", + "fulfillmentId": "0155b3af-c2e9-4ca9-b546-435d75bfe31a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-11T18:12:41.5561984Z", + "lastModified": "2021-02-11T21:19:06.6443612Z", + "sessionMode": "None" + }, + { + "id": "f281106b-3855-f5c5-10cc-8ec97b37532d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Erc 6-29-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-06-29T00:00:00Z", + "endDate": "2020-07-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0e3f0934-e613-410a-baa7-8e0dff23da36", + "fulfillmentId": "48ce6215-1a86-4acf-b052-cf1c82af7898", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-29T15:34:35.0791759Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f7f09350-3917-3614-7a13-40939252e633", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7 28 silver", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-07-28T00:00:00Z", + "endDate": "2020-08-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "613c7d56-4a66-4cf3-9297-90d11b17a848", + "fulfillmentId": "38e61a61-7632-47fc-8ab3-4e3dc05b60c7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-28T15:21:36.1660843Z", + "lastModified": "2020-08-06T23:58:24.7446184Z", + "sessionMode": "None" + }, + { + "id": "15501d57-9c3c-bc73-c35d-449081a31bfb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-17-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "577d6ea0-951a-4cf0-bfe7-6e31f5476f35", + "fulfillmentId": "b8cc7437-9ca6-44ae-892f-16410cca62df", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-17T16:58:16.9353186Z", + "lastModified": "2020-12-21T14:09:53.6265428Z", + "sessionMode": "None" + }, + { + "id": "ab4e6088-232e-6594-e6d3-13903b20ec39", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "scs-basic monthly", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2020-10-29T00:00:00Z", + "endDate": "2020-11-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "87c51788-31f9-4c46-a6d3-cc00a950452f", + "fulfillmentId": "2930b16f-7a90-46d8-aaa9-3786f62f8a3a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-21T23:59:46.2792211Z", + "lastModified": "2020-11-05T01:56:16.3635385Z", + "sessionMode": "None" + }, + { + "id": "297c5d98-e11d-602e-bd91-a7146e2e2ae2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "scs advanced annual", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "advanced-annual-only", + "term": { + "startDate": "2020-09-22T00:00:00Z", + "endDate": "2021-09-21T00:00:00Z", + "termUnit": "P1Y" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d63c0c61-b536-4dd4-9fe8-a62ce8c3667c", + "fulfillmentId": "adcb0eb0-2853-426a-a9db-feb97b7eea5e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-22T00:04:38.7791066Z", + "lastModified": "2020-11-05T01:56:15.8455691Z", + "sessionMode": "None" + }, + { + "id": "6ba876df-8031-cdb0-cfe1-0d89ef68b671", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "annual", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic-annual-only", + "term": { + "startDate": "2020-09-23T00:00:00Z", + "endDate": "2021-09-22T00:00:00Z", + "termUnit": "P1Y" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "18ee26c0-0c51-4319-9da6-1c3c3dac684d", + "fulfillmentId": "1449ba1c-9065-4be3-a1c7-dc2a5345d284", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-23T17:01:08.1524826Z", + "lastModified": "2020-09-23T23:04:25.9590716Z", + "sessionMode": "None" + }, + { + "id": "02a56d88-7635-a08d-8a7a-16196a1ecfea", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 10-27-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "startDate": "2021-01-27T00:00:00Z", + "endDate": "2021-02-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "bac96070-4f8d-4089-b5c5-a2131cfc8f7c", + "fulfillmentId": "0058875e-2ea7-4310-8eef-dae281c32d3e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-27T17:11:53.3184601Z", + "lastModified": "2021-01-27T13:28:07.0406304Z", + "sessionMode": "None" + }, + { + "id": "c57ecfa5-7d1b-435c-6bf3-59d6cea84bde", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmodn 10-29-2", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-29T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c7a05cff-1195-43d9-869f-08d6a595370d", + "fulfillmentId": "b800a522-6284-48e4-be5a-bd0da19069c5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-29T17:17:58.6292131Z", + "lastModified": "2021-01-29T00:14:24.0847325Z", + "sessionMode": "None" + }, + { + "id": "0b9849cc-9c3d-1864-f592-c2a30ec33d00", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 10-29-4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2020-11-30T00:00:00Z", + "endDate": "2020-12-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b0a2e294-9507-4ba0-80b4-4f1d818eb53a", + "fulfillmentId": "39db6b51-41a2-4086-a6be-03c0337d6822", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-29T21:38:12.9994178Z", + "lastModified": "2020-12-02T00:54:34.2664397Z", + "sessionMode": "None" + }, + { + "id": "6b76f8c1-2af4-1bb6-9b3c-7729356937ed", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Tuesday Morning Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-11-17T00:00:00Z", + "endDate": "2020-12-16T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3f675019-ef2e-4a61-b553-0031c919150e", + "fulfillmentId": "6851150d-3431-4c5b-8548-6863344f632a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-17T15:40:29.1941327Z", + "lastModified": "2020-11-17T19:52:18.7997631Z", + "sessionMode": "None" + }, + { + "id": "a994c9dd-75c2-9c23-6df5-e69c48839f7b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond1118", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "startDate": "2020-11-19T00:00:00Z", + "endDate": "2020-12-18T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2e88b114-94c3-4b08-807a-5b7c4eb32935", + "fulfillmentId": "a1545fd8-0ea4-48b6-b50b-ca75b9054281", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-19T02:31:19.5863429Z", + "lastModified": "2020-11-19T02:47:57.2092167Z", + "sessionMode": "None" + }, + { + "id": "baee5a62-3a26-db02-e1f6-866657875df8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Basic", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-12-03T00:00:00Z", + "endDate": "2021-01-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ffe1e47e-1df2-494a-ad4e-80f190af7ca3", + "fulfillmentId": "7d013b7c-0772-4c27-b78c-41a302a229ef", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-03T16:44:28.9492888Z", + "lastModified": "2020-12-09T20:23:27.7231766Z", + "sessionMode": "None" + }, + { + "id": "c9e4b706-1b36-2e55-879a-4f24511ea131", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "unlimited-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f80d5b67-8c92-4578-a744-4fbbd127ce87", + "fulfillmentId": "f5f9b275-7ad4-4f76-a37b-0485638b54c9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-10T16:06:16.2472024Z", + "lastModified": "2021-01-06T17:00:25.7459622Z", + "quantity": 211, + "sessionMode": "None" + }, + { + "id": "c3594158-e6af-56d0-9f30-d53ccaff36e4", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "Demo on Wednesday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:44864" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:44864" + }, + "planId": "standard", + "term": { + "startDate": "2021-01-06T00:00:00Z", + "endDate": "2021-02-05T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8580c53b-c408-48a3-b1ce-1cb6dce626ce", + "fulfillmentId": "94605def-adc2-4b8f-ba15-08cd53f66f62", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-06T16:40:07.3761307Z", + "lastModified": "2021-01-06T16:58:23.4561869Z", + "quantity": 100, + "sessionMode": "None" + }, + { + "id": "28127426-daf5-65ff-a0f9-e3e76e64d9c1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "Demo Friday for MicroFocus", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:3778" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:3778" + }, + "planId": "basic-annual-only", + "term": { + "startDate": "2021-01-22T00:00:00Z", + "endDate": "2022-01-21T00:00:00Z", + "termUnit": "P1Y" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "facd60c8-bdc8-4a0f-aa02-3c8425478fd0", + "fulfillmentId": "33724530-4516-49c4-a23c-2949c43c47a2", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-22T17:46:42.8121831Z", + "lastModified": "2021-01-22T17:56:35.4880589Z", + "sessionMode": "None" + }, + { + "id": "489f64b6-98ec-a062-a8b4-5367484d1d14", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "test", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "purchaser": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0", + "fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-02-04T17:29:21.8405148Z", + "lastModified": "2021-02-04T17:32:19.0300527Z", + "sessionMode": "None" + } + ], + "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" + } + }, + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + ], + "x-ms-client-request-id": "bf04b4d9-dc0e-5267-ed3a-390c8ebdcb52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "89603", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 19 Feb 2021 19:46:50 GMT", + "ETag": "\u0022f10b1d18-c115-4ae6-9989-274d62c0f366\u0022", + "X-Azure-Ref": "0qxUwYAAAAABf6W3TPiUjS4svJsn3\u002BcNaV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "eb026384-4722-44a3-92ca-52a3d88c53b5", + "x-ms-correlationid": "978ce10b-4c71-449e-8ed8-1e0540685686", + "x-ms-requestid": "978ce10b-4c71-449e-8ed8-1e0540685686", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "subscriptions": [ + { + "id": "3cbc023e-72d6-6d65-9501-1ab8919cc4bb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "basic", + "term": { + "startDate": "2019-09-21T00:00:00Z", + "endDate": "2019-10-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "756a15d4-16cd-4bd4-a02f-e80aa73051c7", + "fulfillmentId": "27490944-fff7-4151-b421-fb9c5295fca1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-20T18:46:29.5151351Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1be86829-c7ec-1738-ab03-a6cacebe3832", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2019-09-23T00:00:00Z", + "endDate": "2019-10-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2d0bfa5d-8588-4a42-b2d2-a650a0da283c", + "fulfillmentId": "07d14713-f24b-418e-b731-b94f7278b870", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-23T19:55:35.2774102Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "943f5224-f873-d5de-1af2-5bf7bbe86508", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-1-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-02T00:00:00Z", + "endDate": "2019-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "653ce125-1a9a-4e86-9470-08c1cc559b44", + "fulfillmentId": "6d993623-93fb-4298-8593-5e460276adb5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-01T18:50:16.1862551Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e5d7c3fc-a40e-793c-0185-5f03410213a0", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-9", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-02T00:00:00Z", + "endDate": "2019-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ff03f86c-f152-44f3-9854-96bba88dd07c", + "fulfillmentId": "eb64f7c6-4bc6-45ac-9e9c-2dfb4af6074b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T22:11:55.5740951Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "61ce840c-8ad1-50de-e93f-24ce860b4940", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-9-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-09T00:00:00Z", + "endDate": "2019-11-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a20315a5-fd2f-43f5-ae41-ce967478860b", + "fulfillmentId": "cb2f6ecd-7baa-440a-9bbd-173393ac63ed", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-09T20:47:37.3361422Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b17db62e-b78f-eb50-4791-a741b89d47a2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk 10-11-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c7f9f5cd-6ed8-4173-bb5e-017c806a6e4a", + "fulfillmentId": "860ec18c-b054-4685-9ca6-796a3fdf5c03", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-11T18:28:39.8588361Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "9083c1af-7be7-1c4c-5d71-8057d8598674", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c1095dc8-0528-4345-9de6-b1c592b1ff93", + "fulfillmentId": "65e9a544-cde0-4232-be3f-1ef89ef13a9b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T19:14:12.3035098Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "12c655c9-f545-7de9-9408-34c59bbee28c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test5", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "67ad1ecb-90dc-4479-a0e1-3a0a9dc6e87a", + "fulfillmentId": "8b594395-c993-42f7-8711-f12494c37a33", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T22:50:00.6398263Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f60d3e80-d702-50ea-c856-f9532e7bab4e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test14", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-11-30T00:00:00Z", + "endDate": "2019-12-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0c60e2d1-38fe-46dc-bc84-f5bc34213136", + "fulfillmentId": "933d157d-162f-4f87-bb6b-1a68b82b6b90", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-31T06:24:58.3886714Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "387d0358-48d0-5a1f-8525-9a0b69822d70", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test19", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2019-11-12T00:00:00Z", + "endDate": "2019-12-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9504ef44-fb39-4bf7-8678-51fd8efa414e", + "fulfillmentId": "3be5afc0-beb5-4cc7-a3ab-31e12969c55a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-11T18:49:08.0760435Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "78ffffbd-343f-281d-e90c-716cd83d9a27", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test21", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b1d00450-d472-4d33-96d3-29aee4443057", + "fulfillmentId": "fec52697-ec2c-4c06-afab-5662c92770f4", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-12T22:55:22.838723Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "aca55726-87f1-dfc0-5527-bd4e47f03e50", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "SFO-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2020-05-19T00:00:00Z", + "endDate": "2020-06-18T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e465aa94-38bd-474a-a1b2-9388bec6e10e", + "fulfillmentId": "aa772e19-efcf-4551-9792-b295f00297b8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-19T21:48:14.7042973Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7a3b6879-1e7b-a553-631e-9ccecc8761f6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 11-26-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-26T00:00:00Z", + "endDate": "2020-02-25T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "40ae8598-0c33-47bf-ace7-3f9a2bbae683", + "fulfillmentId": "7e548ce2-5f9d-4671-a938-15fcacbaeadb", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-26T17:23:22.8977962Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "cfb4b662-ef59-ee55-d062-e1513484ab4d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ignite Tour - 12-5-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2020-06-05T00:00:00Z", + "endDate": "2020-07-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a48d16bb-3166-4440-9d42-367ede2d44bd", + "fulfillmentId": "ee42b9e0-7a91-4289-9918-f51bdbdfe8c1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-05T12:17:34.8545873Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "4b92bd4f-40c9-5c2a-f1ae-162d227b6f4e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test29", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "407a754a-6921-4071-a72f-d36e41bfa0ca", + "fulfillmentId": "7d1526a1-619a-4f9c-8e3b-d25ddfd1bfdb", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-10T00:15:20.1990165Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7f0cb3ba-99b1-c755-f217-0abcf34443e6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Istanbul - 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2019-12-13T00:00:00Z", + "endDate": "2020-01-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5f03fc54-9377-4ef5-a56e-feb43fc70469", + "fulfillmentId": "f8a06346-2183-4c1b-bf26-4485c4c7d66b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-13T10:38:48.13156Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f4d77179-6f40-5f08-9f2a-27689a12883c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-pointr", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c28e4e9f-6622-4e72-ab9d-a636dfe6f5c7", + "fulfillmentId": "ba7b7d11-8a68-4ed8-a7d6-a2e93d0a9dd0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-19T15:12:20.4962534Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "8d89b8bb-0d50-f9aa-36b0-e77c3f8e304f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-pc", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2019-12-23T00:00:00Z", + "endDate": "2020-01-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "36bab28c-248b-4fea-b029-25ccab664522", + "fulfillmentId": "fdfaf197-f6d2-4cfd-bc1a-81d64f0606de", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-23T16:05:28.2866091Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "0616c7e9-0417-a7b2-1470-788b8699e069", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-a", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-18T00:00:00Z", + "endDate": "2020-04-17T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "05760cc8-76e0-429b-b9f7-d8a6836b5f45", + "fulfillmentId": "e1082271-3830-4ad4-bc9a-16987d8479d8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-23T18:55:59.6896954Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "92e8fa8c-41a7-14c4-56ad-b607ab2f1a18", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-value", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-08T00:00:00Z", + "endDate": "2020-02-07T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2152763d-3de9-419d-9816-1baa3b3caebf", + "fulfillmentId": "77527d37-c10c-48d8-b8ca-30f486590e85", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-08T15:34:09.4580749Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "d08615c5-d355-2a7c-589b-c008428f2527", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ignite tour London - 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "32229f4a-d347-409e-bcd6-97a4ee38d0bc", + "fulfillmentId": "2a9c8502-f22f-465b-8996-7e694c7b5126", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-16T14:23:22.7623654Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "952144ad-a1d7-093c-30c5-a5263572c15b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-22-2020", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2020-01-22T00:00:00Z", + "endDate": "2020-02-21T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "72fa30ea-3a34-473b-90ab-dff640a293cc", + "fulfillmentId": "a49680fa-d1a3-4833-987c-14e8c1a9d5db", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-22T18:55:45.3769123Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "2b96874d-74e8-9ffa-7591-99c361cc10c7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-23-2020-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2021-01-23T00:00:00Z", + "endDate": "2021-02-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6fa4b8f8-9baa-4dcf-8bd2-b9133aaeddb7", + "fulfillmentId": "b805beed-f4e0-4709-99ae-431e25b3156d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-23T15:51:15.6322077Z", + "lastModified": "2021-01-23T05:45:01.8530141Z", + "sessionMode": "None" + }, + { + "id": "b19f4194-a662-4f70-e1c2-b817edd1094d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-27-2020-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-27T00:00:00Z", + "endDate": "2020-02-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e639541c-3e7f-4e7e-8c49-c6ec9f3e5e67", + "fulfillmentId": "72ba8ff4-f472-4d90-8fe7-66fd507337c2", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-27T20:13:04.5576051Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "aca8838d-6dcc-1e00-8bc7-0cc8399eae67", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-cg", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "startDate": "2020-04-29T00:00:00Z", + "endDate": "2020-05-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7bad1228-6104-4a51-95f4-0d0fa3e62bb1", + "fulfillmentId": "a12710a1-f186-43a4-b694-81fc55c28ae0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-29T16:16:07.9617694Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "67d82a7a-aa9f-aa63-34bb-dd1d103bfffc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 2-4-2020", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f5d5d9c0-9288-484a-a203-e7e23ab56956", + "fulfillmentId": "4ffe98ab-eb38-4fec-9c95-05d2b7c7f187", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-04T19:19:09.4797461Z", + "lastModified": "2021-02-04T02:50:31.3588895Z", + "sessionMode": "None" + }, + { + "id": "34e6a830-08d9-5af4-048b-4a2387b67ca9", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-6-2020-7", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e967a742-aaaa-4b46-ad80-da5ca1ed3df8", + "fulfillmentId": "fc467ab5-c80a-4b63-800e-dc972c9cbadf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-06T21:02:20.5321136Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "3b28037b-a655-5571-80c2-2caf9d3db607", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-cd", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-07T00:00:00Z", + "endDate": "2020-03-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3f611de2-e179-42b8-a2f3-f88fa0eb064d", + "fulfillmentId": "1e01921d-09e3-425c-bb02-8fbba35ad2a3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-07T18:09:17.6638341Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7d934814-0c3f-406d-3fa9-496babd96a3b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Ignite Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-02-10T00:00:00Z", + "endDate": "2020-03-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8efdfc1a-5516-460e-b791-641f834e2938", + "fulfillmentId": "2e0bfbf7-d86f-4c72-a29e-8e978421e482", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-10T13:08:52.1312723Z", + "lastModified": "2020-09-19T17:37:52.1163578Z", + "sessionMode": "None" + }, + { + "id": "93322b1c-f76e-0c76-fbc1-78ce4596a6d9", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-d", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-11T00:00:00Z", + "endDate": "2020-03-10T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "044e87c3-2a89-4355-9c88-fbf0c13e81c1", + "fulfillmentId": "c0cef4c0-c5c3-48e2-b7e9-68aa853435ec", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-11T18:12:43.6211807Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1eb11966-d460-042d-1a1d-381ef94b6a7d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-ch", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-13T00:00:00Z", + "endDate": "2020-05-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "47e00e72-e2cf-49d2-b7e3-0588333e76d9", + "fulfillmentId": "ef478dbd-eee6-4fdd-ac6a-c888c34b2054", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-13T16:07:03.7520777Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "913f37ef-e317-f1e9-779a-cb3f34281dbc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 2-13-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-05-13T00:00:00Z", + "endDate": "2020-06-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4a2dc75c-ab0b-4183-a287-0da88c6ae3ca", + "fulfillmentId": "2d18dce4-8580-4950-9450-8143fd7ecb67", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-13T18:28:44.5785296Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1b3aaf36-d43b-11d0-376d-26a393088e4a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-id", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b", + "c", + "8", + "a", + "0", + "-", + "2", + "9", + "d", + "4", + "1", + "6", + "3", + "f", + "7", + ",", + " ", + "5", + "e" + ], + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b", + "c", + "8", + "a", + "0", + "-", + "2", + "9", + "d", + "4", + "1", + "6", + "3", + "f", + "7", + ",", + " ", + "5", + "e" + ], + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "70ac270f-06af-46b4-80f5-b2c292245d6a", + "fulfillmentId": "ad5010d9-446d-42f9-8272-7b0b861bce88", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-18T17:37:32.5767942Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "13302142-0475-9039-062b-8ed2cc1859de", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 2-24-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2020-02-24T00:00:00Z", + "endDate": "2020-03-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b7cf3e7e-c19f-4db0-9c3c-0df43b55c898", + "fulfillmentId": "8af4b1c4-887e-4265-b5eb-98b9d584f479", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-24T20:11:19.0068216Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "4ecbc6ec-651e-7c94-00dd-7d756a244ea7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-25-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "352f825f-aaab-4703-976d-81a683408b8f", + "fulfillmentId": "6d4ff833-3981-47b3-9800-ded0dbbc1919", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-25T16:17:11.0232054Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "db55e129-6acc-77ba-bc61-d1a1934e9056", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk redmond 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-25T00:00:00Z", + "endDate": "2020-03-24T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "29316f2f-359a-42fc-a8b4-e2d76d51206f", + "fulfillmentId": "bf705d48-009b-4595-9f1f-7b46a4421dfd", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-25T22:22:13.3582941Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "4cadbb49-0476-9817-60e3-821123ec71a7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo for Rattlehub", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ec03e99f-1646-414f-a7bd-2feac0662ec7", + "fulfillmentId": "3d6192bb-7ec9-4f56-8d6f-6ec27b007b00", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-27T16:38:29.1056797Z", + "lastModified": "2020-09-19T17:33:41.20518Z", + "sessionMode": "None" + }, + { + "id": "6e6bff53-3af8-e5f0-9bb7-c0bc3152ad9e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-one", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514" + }, + "planId": "platinum", + "term": { + "startDate": "2020-04-05T00:00:00Z", + "endDate": "2020-05-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1654ab93-0f50-40b3-b774-4c30231edf47", + "fulfillmentId": "3ba89d8f-485c-4048-98d5-007c74e83c77", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-05T17:23:14.5758765Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "fa9ca956-a5c2-0e41-2434-310bea78cdde", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "earlyafternoondemo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-05T00:00:00Z", + "endDate": "2020-04-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ea2b02b9-cbba-4893-8e84-74fe63e476d3", + "fulfillmentId": "e2188d26-36a5-4f4e-81a8-e5b602b7f14a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-05T17:23:49.780056Z", + "lastModified": "2020-09-19T17:33:29.820629Z", + "sessionMode": "None" + }, + { + "id": "483326f0-3ac5-a647-f3c7-7267ddfe34c2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "YeahItsThursday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-05T00:00:00Z", + "endDate": "2020-04-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "797083b7-7c8a-46bb-a5e1-f1cf62c3fc90", + "fulfillmentId": "93388972-595c-4d4e-8c4f-a2f129317ff5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-05T18:26:35.7257149Z", + "lastModified": "2020-09-19T17:33:21.3001506Z", + "sessionMode": "None" + }, + { + "id": "acfc40f2-d735-42f8-80e2-0c6792b23b50", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-med", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "539feab7-0666-4287-a672-2f9c038be171", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "539feab7-0666-4287-a672-2f9c038be171", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-20T00:00:00Z", + "endDate": "2020-04-19T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ffc9b76c-9c7d-4497-9f1f-7d1d8500ca5c", + "fulfillmentId": "64687a22-7d91-4cd0-8ca9-52762f9e21ae", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-20T20:23:51.1979776Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "107aeaff-7052-dd24-1c58-2e0b45d51e1e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-24T00:00:00Z", + "endDate": "2020-04-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d95c053f-7688-42b2-add9-0c37771e91e1", + "fulfillmentId": "80320f29-a218-4375-9910-9333b9202702", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-24T13:12:42.4773959Z", + "lastModified": "2020-09-19T17:37:42.6111903Z", + "sessionMode": "None" + }, + { + "id": "eb0c692c-d95b-23a7-e91f-5d73c03f76b4", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-24T00:00:00Z", + "endDate": "2020-04-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "332fc50c-bb27-4c85-b9e1-05eeb84cebd8", + "fulfillmentId": "63514cad-378c-44a8-8109-2848f3b16b0b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-24T13:32:01.1738039Z", + "lastModified": "2020-09-19T17:37:32.8699754Z", + "sessionMode": "None" + }, + { + "id": "de5068f5-0586-e599-9605-83749431de66", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test again", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-24T00:00:00Z", + "endDate": "2020-04-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "48e6d2ef-0e3e-4300-8249-826e7186d97c", + "fulfillmentId": "1243d179-c981-4691-9150-38b6b4461997", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-24T14:02:44.6762499Z", + "lastModified": "2020-09-19T17:37:36.2604529Z", + "sessionMode": "None" + }, + { + "id": "a4c51296-c5d2-8398-630b-3140b9f005b0", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-9", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2020-05-09T00:00:00Z", + "endDate": "2020-06-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "384d1d71-3ef9-4d29-b66a-f4dc8015f2ed", + "fulfillmentId": "2ec346ee-0515-4b71-9a32-170bf44b58b2", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T17:38:12.4932326Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f8e10382-9312-c7e1-b6db-2c7fb7cf63fc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-9-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2020-04-09T00:00:00Z", + "endDate": "2020-05-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a28f0ca9-c99f-4a7a-b977-3de79f7c841e", + "fulfillmentId": "f1ce3dbf-7e8c-4fef-9257-d638a85ef497", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T20:07:56.9221836Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "72fd731e-bca7-866c-4616-4fe3d6ec120a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "mondaydemo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-04-20T00:00:00Z", + "endDate": "2020-05-19T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f1487d84-c9a0-461b-95af-956317c5c429", + "fulfillmentId": "335bdd08-208a-494b-90b0-f4ed15d5920d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-20T11:44:54.2112148Z", + "lastModified": "2020-09-19T17:36:26.4942119Z", + "sessionMode": "None" + }, + { + "id": "73a094d3-e803-af95-bee2-0c19ce298c3e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-29-2020-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-30T00:00:00Z", + "endDate": "2020-05-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5ed32622-48d1-449b-8111-bb341e9b795d", + "fulfillmentId": "e86fbe8e-3e0c-4f15-a38b-73a09eed0e55", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-30T00:34:48.9055782Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "4c54ec2e-95d1-fa84-3b9f-27c3856bb544", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "ProdInstance", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-01T00:00:00Z", + "endDate": "2020-05-31T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9d8df0b1-4290-4530-bed0-7ad285435a8d", + "fulfillmentId": "97e6a035-3b04-4ea4-a7dc-1b41749a7fb1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-01T22:09:39.8725246Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "96cdc354-c502-3bca-ee8a-2b5297624184", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-e", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "acfb9324-b8d4-4b52-b056-08896fccd96f", + "fulfillmentId": "95f3ad00-4ddd-4829-bd7c-610bbcce8e56", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-04T23:39:04.4363708Z", + "lastModified": "2020-08-14T00:14:38.3771694Z", + "sessionMode": "None" + }, + { + "id": "c17b11b0-badd-25fd-c5db-56a050480468", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4aee62f7-15b6-4ae2-92de-f9e85d9b60b9", + "fulfillmentId": "90beb423-4821-44ab-a704-5ab72c425cf3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-11T23:17:48.4166081Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "81e3280b-0254-7d45-85d8-ee1d8a763eb5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "814263e9-4103-476d-8642-6317df83856f", + "fulfillmentId": "ef12c399-0f96-4e33-8452-7057de7efa02", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-29T14:46:25.4933875Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "90419b90-50bb-0024-1da2-74f2f66042e3", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 6-11-2020-2", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d2365269-5bb4-40be-82cf-0e5151667eab", + "fulfillmentId": "8f590d81-c415-4073-8fcf-acf890fa2e24", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-11T19:13:14.9763056Z", + "lastModified": "2021-02-11T13:18:00.464219Z", + "sessionMode": "None" + }, + { + "id": "fcdc7c93-81be-5c68-15f3-ddaded0e71a7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-06-15T00:00:00Z", + "endDate": "2020-07-14T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0ab1eb24-c309-4c46-8504-5018ecdc5767", + "fulfillmentId": "ae0aba2b-c725-44e3-af11-9edb943f3009", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-15T13:53:52.7262282Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f91df473-f164-f03e-0354-8a9f2fe03349", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7 28 2 silver", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "92ab2beb-c7f7-4754-a481-89c05655b015", + "fulfillmentId": "bfc74dc8-eab2-458e-841c-9edef0c50ed5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-28T16:11:50.9624754Z", + "lastModified": "2020-12-12T15:58:59.8396102Z", + "sessionMode": "None" + }, + { + "id": "e7365fd6-448c-e642-41a7-c34fffe4b7bf", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 8-18-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b3a7f9cc-ca92-4ff0-b53d-6e71aa45b571", + "fulfillmentId": "08900ab2-cabf-4fbe-b645-71e2187bc778", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-08-18T20:20:00.6031371Z", + "lastModified": "2020-12-20T10:34:52.0074383Z", + "sessionMode": "None" + }, + { + "id": "5203a148-d035-0cd8-3336-0662d52aff8c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Erc 8-21-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-01-21T00:00:00Z", + "endDate": "2021-02-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ce4fb863-c8f6-4eaa-8e32-cc628a8755d6", + "fulfillmentId": "c069fba2-886b-4880-8a16-5a34ecda432e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-08-21T17:48:41.5747662Z", + "lastModified": "2021-01-21T02:53:46.0117546Z", + "sessionMode": "None" + }, + { + "id": "48579e89-3520-9795-3b66-f553607e1afb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-2-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "startDate": "2020-09-02T00:00:00Z", + "endDate": "2020-10-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "22288ee6-03ba-4a70-bd9b-1bd2536328f9", + "fulfillmentId": "559d2873-61c0-4b17-aec8-80f24674d8ce", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-02T19:33:21.9105254Z", + "lastModified": "2020-09-02T19:51:14.955701Z", + "sessionMode": "None" + }, + { + "id": "71e76a10-6e31-54c3-3715-79b62121f712", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9 - 3 -1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "base", + "term": { + "startDate": "2021-02-03T00:00:00Z", + "endDate": "2021-03-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6f91bc07-0a1c-4e99-9017-a6de28f290bc", + "fulfillmentId": "62ea2307-cd88-4604-a59b-7556de1f87fe", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-03T14:29:55.0976355Z", + "lastModified": "2021-02-03T10:29:20.470809Z", + "sessionMode": "None" + }, + { + "id": "1b77564e-44bb-0dfb-233f-f645d3c1fc5d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Sample", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1624fe70-fea5-40b6-b418-d4ccb4f692e8", + "fulfillmentId": "65198674-fd46-4c30-8c72-9a5b8b5ee2ea", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-18T23:29:11.8982979Z", + "lastModified": "2020-09-19T18:01:51.3048365Z", + "sessionMode": "None" + }, + { + "id": "168da435-3ed9-8789-b66a-b65c464d4e45", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-30-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "startDate": "2021-01-29T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3870cbb7-ef71-4b1a-a3ad-71e2aa7065ee", + "fulfillmentId": "09f195a3-f1ea-49ac-86dd-49e1eeaad4d1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-29T19:50:36.1654944Z", + "lastModified": "2021-01-29T22:10:26.3362666Z", + "sessionMode": "None" + }, + { + "id": "21b75490-9ee6-1f5a-a7c5-d7bad78e38ff", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-30-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b1330d72-41a6-47a2-acd1-cc83c0087cc7", + "fulfillmentId": "509864ae-9a4b-45eb-b3dd-15092065d69f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-29T21:48:32.7732867Z", + "lastModified": "2020-12-22T07:54:50.2265667Z", + "sessionMode": "None" + }, + { + "id": "0c3d340c-7083-2c37-512b-b435abe585d8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "scs-seismic", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-10-22T00:00:00Z", + "endDate": "2020-11-21T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1d03fb9d-47b7-4336-a99a-06b473a4e999", + "fulfillmentId": "764afd26-dfe2-4a68-93a7-0e25e0c4d571", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-22T15:32:49.6086355Z", + "lastModified": "2020-11-05T01:57:26.0863101Z", + "sessionMode": "None" + }, + { + "id": "d9b96aac-9db8-d971-38bd-c0690e7a978d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond-11-13", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8fe53184-5634-4c81-a260-61a0f8c12d65", + "fulfillmentId": "5f61add6-eb55-461b-b385-71dab1f9589f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-13T18:51:50.7456986Z", + "lastModified": "2020-12-24T08:10:03.5348791Z", + "sessionMode": "None" + }, + { + "id": "2ab18392-9802-5a8a-d998-a799fee575b1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk1231", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7822e434-424b-4339-ae0b-cb98713e2bad", + "fulfillmentId": "ba0ebf64-8eeb-4a42-bc21-73cbcbba9b72", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-03T17:16:01.5014829Z", + "lastModified": "2021-01-03T06:13:21.6777987Z", + "sessionMode": "None" + }, + { + "id": "62f68e3f-efef-9b4c-dd96-b7f02b6fb68e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "contoso", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "15a6c21a-dac7-4f8a-9038-bcb248b55179", + "fulfillmentId": "b2306b11-b8dd-4f9e-8739-d360d9ba5e1d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-09T20:22:31.9317679Z", + "lastModified": "2021-01-06T17:02:43.6392931Z", + "sessionMode": "None" + }, + { + "id": "3f8371e1-5e04-ffe1-aa2d-67ef45ac78ca", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "Office Hours", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic", + "term": { + "startDate": "2020-12-10T00:00:00Z", + "endDate": "2021-01-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "424b22b9-74dc-482b-a033-42c9e293b0e3", + "fulfillmentId": "40005fd1-a1c3-4d8c-b8d4-24b57a9173da", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-10T17:48:15.5279325Z", + "lastModified": "2021-01-06T16:59:54.9954499Z", + "quantity": 50, + "sessionMode": "None" + }, + { + "id": "5c413d95-1ddf-68bd-6fa0-5226194e08aa", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "Other Demo", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:22337" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:22337" + }, + "planId": "unlimited-basic", + "term": { + "startDate": "2021-01-27T00:00:00Z", + "endDate": "2021-02-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c0531e71-95dd-4b49-977f-31b82cde35ae", + "fulfillmentId": "23646173-708c-40a3-9e35-e6390d9f8e1e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-27T21:47:06.5630317Z", + "lastModified": "2021-01-27T21:51:05.5302752Z", + "quantity": 200, + "sessionMode": "None" + } + ], + "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1D9CD673398%22%2c%22max%22%3a%2205C1E399CD6732%22%7d%7d%5d\u0026api-version=2018-08-31" + } + }, + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1D9CD673398%22%2c%22max%22%3a%2205C1E399CD6732%22%7d%7d%5d\u0026api-version=2018-08-31", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + ], + "x-ms-client-request-id": "19c98c7d-a9e8-c416-7185-29e7bc55100c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "118383", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u00223c999fe1-387d-44b6-ae8d-104185ffc567\u0022", + "X-Azure-Ref": "0qxUwYAAAAAAevwhc4w0hSaaJjEP/10HpV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "a506d376-4da2-472b-8035-94ec0dbe08c5", + "x-ms-correlationid": "c7feddd6-fc8d-411c-b578-bc11925d9daf", + "x-ms-requestid": "c7feddd6-fc8d-411c-b578-bc11925d9daf", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "subscriptions": [ + { + "id": "11517558-2399-4880-bf8b-d84c8cb17c9e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 5", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2019-09-30T00:00:00Z", + "endDate": "2019-10-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "fe09fc9a-ecfc-4db9-ae87-5a0e84d2797b", + "fulfillmentId": "517e8fd4-c960-4197-957a-e48a6c4d60ba", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-30T16:15:35.1233036Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7ab32bee-1abf-b629-d39d-edf58c3d752e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-03T00:00:00Z", + "endDate": "2019-11-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "64bdf486-eccc-40e9-bfd1-bb7527c826af", + "fulfillmentId": "a10a4b22-0c39-4704-923b-acf56ba21b5d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T20:12:37.1041007Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "99f28e10-3e52-2eaf-be81-7d4ad274a126", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-02T00:00:00Z", + "endDate": "2019-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a67f7254-8e7f-435d-9dc5-9cee2bc5aae1", + "fulfillmentId": "5988cea1-d95b-438e-a337-ebe3e05b22ff", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T20:34:44.0086205Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "cd5323ab-e3bf-87f1-99c8-628d8be54b4b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-6", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-02T00:00:00Z", + "endDate": "2019-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a75d3ff8-7d1e-4cd1-9f36-518db3bdef9b", + "fulfillmentId": "8ef4e5b6-2d7c-4d14-91fc-2e26abbf9a93", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T20:40:56.3886214Z", + "lastModified": "2020-09-02T18:03:50.2247871Z", + "sessionMode": "None" + }, + { + "id": "9ab56b8f-927a-3eb3-2eab-d725293f57ed", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk Azure Friday - 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-07T00:00:00Z", + "endDate": "2019-11-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "76d7f70b-6ebe-4f51-b643-cf83e772839b", + "fulfillmentId": "42a7a946-66c5-447c-be7f-e45c238d183d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-07T16:48:00.3398338Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "30312e36-aced-29bc-772a-69b083a038de", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk Azure Friday - 2", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5bf87f62-4edd-4a65-88c2-861fafcb2f08", + "fulfillmentId": "1d39862c-8ed8-4bda-ba6e-987968e6f94f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-07T16:51:35.2238173Z", + "lastModified": "2021-02-07T17:36:47.4081955Z", + "sessionMode": "None" + }, + { + "id": "96c10136-4df9-4ec5-cd4e-0b9a7d126acc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-11-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d01344b2-502b-4790-8698-ee0d75858f86", + "fulfillmentId": "a78c8c29-891e-4f81-b955-1ffde1b02c94", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-11T20:21:27.0735072Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "2cef227d-96a5-8046-a7c4-df3815dca80a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test7", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5f683744-cef2-4b59-8e95-3683453aaab7", + "fulfillmentId": "f49235b5-5d2c-4e06-8a43-bf7042f7236a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T23:13:24.5985129Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f22a04e5-0458-8e93-4874-853fcf9f4f91", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test9", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ff99f1e4-51b6-43d8-9606-afb0829a0f5d", + "fulfillmentId": "65f8b8a1-2a01-4ce3-a24a-54826ba557f3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T23:44:27.0630285Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "dcbbdff5-7dee-7921-a180-09752b3c8d03", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test12", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-31T00:00:00Z", + "endDate": "2019-11-30T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "aa322b56-5b23-404e-a2f4-6b23d5521329", + "fulfillmentId": "ada02d8e-f823-44ef-b348-1473d9c5d3b1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-18T21:54:48.5798101Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "76afaa43-998f-2785-627c-e70379be0c8f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ignite test-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-01T00:00:00Z", + "endDate": "2021-02-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "92aeabdc-ca05-4f49-a4c0-6d7dac0027b1", + "fulfillmentId": "847e064a-0d40-4e61-85c9-c961e5693218", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-01T19:47:02.8018426Z", + "lastModified": "2021-02-01T06:23:03.8293057Z", + "sessionMode": "None" + }, + { + "id": "79ed2bf7-1c74-a013-e90f-313b87f47e90", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test16", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4bcf6e2d-9c58-46e8-a7b6-289fcf6c4f73", + "fulfillmentId": "59043e85-1c1a-41ba-a718-1d8988674f98", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-06T15:49:25.3630436Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "0fab302d-49ab-fc91-5d1f-bd388181d73d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Contoso SaaS - Ignite 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "base", + "term": { + "startDate": "2020-01-07T00:00:00Z", + "endDate": "2020-02-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a283eec4-2607-4f26-b3ac-4bb84148f240", + "fulfillmentId": "55e402da-df67-48e2-8300-ee11b3875c3d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-07T14:28:46.2623681Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "06e4b12a-9e81-ff57-2b3c-06e7d7fa124f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test-20", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "715e2f48-9f32-4d1a-8876-825fc023db5b", + "fulfillmentId": "05fa1f67-1f86-4b7a-a967-5fd266916f38", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-11T19:14:25.4135885Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b174d205-4015-a469-2330-32982d09709a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test20", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9af49733-a7a6-4c66-ad39-bc20d3b00295", + "fulfillmentId": "221a9970-8a78-4a20-b802-10e981828641", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-12T18:56:19.8603366Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "62bcbbdb-fa44-06c4-1e00-c9598f0987af", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test21", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5fffe354-153e-4550-a861-88c6960ba8e0", + "fulfillmentId": "e030e9ff-a2fb-4e22-bfd1-50ce6eef7623", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-15T18:24:33.8870559Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7a443f6e-2c43-d041-783f-7d352fd8373e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Istanbul 12-2-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2019-12-02T00:00:00Z", + "endDate": "2020-01-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "504f7e81-9c36-4eca-b15a-2cbade850b24", + "fulfillmentId": "4a7976f5-3168-4857-8c42-3b3f418eef23", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-02T13:30:00.6888333Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "8615e4ae-e20d-a466-4039-5054017dfbb6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Istanbul - 10", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1f6bc160-e9ee-49bf-95fb-86161721c89c", + "fulfillmentId": "19503e5c-5485-48f3-9f6c-de9aed630eed", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-16T15:45:29.1953726Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a34df2a7-6d1e-0fb4-2214-151f7db36a24", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-servicechannel", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e68fa394-a653-49c4-9b74-fd330882e414", + "fulfillmentId": "107a7dd9-204c-4d93-bcab-59a94fb43309", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-16T18:18:54.0885315Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f8b29707-4d8a-28f3-3cd9-35b3a5d158ff", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Istanbul - 13", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2019-12-17T00:00:00Z", + "endDate": "2020-01-16T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "288017ba-f252-4d6e-8fa9-08000c8fe737", + "fulfillmentId": "c911d294-cd65-4ade-86b2-7aa42408579c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-17T11:15:27.8274714Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "9da9a223-c22f-38e3-6084-f54590f597d9", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Istanbul - 15", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-12T00:00:00Z", + "endDate": "2020-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "994a0b57-73a3-448f-819b-391764772444", + "fulfillmentId": "2c701feb-4a25-4cb8-b81c-fd96d51053c2", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-18T15:15:00.095625Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b1936573-27ea-ba35-4e01-f0e4778328f2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-marty", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0c2e98a5-1646-4b40-abd5-4da2e7e3d75c", + "fulfillmentId": "0a908720-720e-4622-8f80-df948e1aea17", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-26T20:54:14.1644927Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "57586f15-7298-dc2b-8612-013e3d46e81c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-wowza", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-06T00:00:00Z", + "endDate": "2020-02-05T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2f9b284e-5147-4c33-bd86-0260815f84f5", + "fulfillmentId": "18f2efca-bca2-4042-b1e5-febd6ea278d7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-06T18:46:52.0717122Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "dbea8e19-818a-2fe3-a757-aca468a2722e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo On Thursday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "913b872f-1503-4194-aae3-86c5bfceaab3", + "fulfillmentId": "71aef494-f4f6-41b9-8107-63373872f2cc", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-30T14:52:57.6259929Z", + "lastModified": "2020-09-19T17:36:09.2706083Z", + "sessionMode": "None" + }, + { + "id": "880243be-4404-f0c5-cdda-e171d951d11c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "San Diego - 1-30-2020", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2021-01-29T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "24c39402-d67e-4ca4-be55-305c1287b20c", + "fulfillmentId": "71529633-b9fc-48e8-a5d6-ffc8a725d0de", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-30T15:13:06.7988264Z", + "lastModified": "2021-01-29T11:23:37.2645724Z", + "sessionMode": "None" + }, + { + "id": "1b4e6ce2-82db-fb89-8b18-7552e77e85b6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "My Instant Portal", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "44863f44-8cad-4949-93ec-adfbaf4d087d", + "fulfillmentId": "1d861882-a200-4e78-87e9-56ae2eb2d5f4", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-31T15:32:14.237308Z", + "lastModified": "2020-09-19T17:35:59.1274914Z", + "sessionMode": "None" + }, + { + "id": "d5d7fded-38c8-18a2-f5c7-0538429780ab", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo For Floww.io", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "51a9439c-ac09-4d27-b903-cc5abc1eef2e", + "fulfillmentId": "8640a811-b72c-46a4-b060-1d1b092b15cf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-31T15:42:33.5316101Z", + "lastModified": "2020-09-19T17:33:46.1778272Z", + "sessionMode": "None" + }, + { + "id": "bc42afd5-bb75-67f9-a769-1645400a2040", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-6-2020-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-06T00:00:00Z", + "endDate": "2020-03-05T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4ed948f2-e28a-430d-89c2-b0b40018f2ae", + "fulfillmentId": "ebf36181-5650-4c9b-b818-5d2d61157b08", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-06T19:05:55.9087272Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a93e82b8-8802-b2ed-0460-1289b859955e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-6-2020-4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a85200aa-22ce-44af-a426-e97a1fb7f71e", + "fulfillmentId": "0060830a-3b1b-4a14-aedc-f069c3db0f5b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-06T20:27:34.3970799Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "494ee7c2-4e03-12d7-af8e-d68547c5e37e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-6-2020-5", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1f559f06-2c9e-4abe-889a-0c2c8d2b4a70", + "fulfillmentId": "dd3e0623-1d31-4771-a858-4b623073a7ff", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-06T20:57:55.5011498Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "34120567-5133-e1df-9827-22363c62a815", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-7-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0effe6cf-f5a4-4b55-8bea-97fec803fb22", + "fulfillmentId": "27d4a7cb-42f9-41a4-8108-91a1b838f990", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-07T18:07:26.6208494Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b842d5ca-1dd1-fa9c-d519-2e2985a70dcd", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Ignite Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-02-09T00:00:00Z", + "endDate": "2020-03-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f1c11292-40cc-44e4-beae-a1d146b33f04", + "fulfillmentId": "eed6a763-f15e-47c0-826c-f706c3a74148", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-09T11:36:28.1907212Z", + "lastModified": "2020-09-19T17:33:59.3209378Z", + "sessionMode": "None" + }, + { + "id": "552c6830-f08a-8aac-89d5-27574694731c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond - 2-11-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-05-11T00:00:00Z", + "endDate": "2020-06-10T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "275b1edc-a4e0-4ae3-ae37-96500bf7a11b", + "fulfillmentId": "341147ff-607e-4bd0-bbe9-06f827aec0ca", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-11T20:23:19.9039424Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "91af3ed8-37c7-9cc2-018a-7411552a0f21", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-cc", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b", + "c", + "8", + "a", + "0", + "-", + "2", + "9", + "d", + "4", + "1", + "6", + "3", + "f", + "7", + ",", + " ", + "5", + "e" + ], + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b", + "c", + "8", + "a", + "0", + "-", + "2", + "9", + "d", + "4", + "1", + "6", + "3", + "f", + "7", + ",", + " ", + "5", + "e" + ], + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ad1e3717-6c9c-4f17-8ec5-9a2f00166e1e", + "fulfillmentId": "78458f86-7ee4-4220-ab86-a42bfb0ac005", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-02T19:08:19.5860779Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "9a920953-a57e-548f-4d0d-60a49e75821f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Scott\u0027s App", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-03-04T00:00:00Z", + "endDate": "2020-04-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3be98787-d3fa-4ccf-be3f-b6342c3638a7", + "fulfillmentId": "67646e9f-535b-453b-ae65-22f2774f3071", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-04T13:10:59.5810033Z", + "lastModified": "2020-09-19T17:35:50.3955071Z", + "sessionMode": "None" + }, + { + "id": "61ffe7fc-1b86-6037-4a81-3ec35871165f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-in", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-04T00:00:00Z", + "endDate": "2020-05-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b8fdf7c7-d554-49fd-974f-c64cf4284770", + "fulfillmentId": "9483eb6e-da79-4526-a70d-eadb41f97e95", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-04T19:34:38.4017097Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e910cf06-0fad-76b5-6b38-3ea1aa5bc75a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "veripark demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-05T00:00:00Z", + "endDate": "2020-04-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "423459ee-4748-46a7-9257-ba0957710898", + "fulfillmentId": "7a04ba0d-6851-4550-b74a-cf7374f50a8e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-05T14:55:21.8014936Z", + "lastModified": "2020-09-19T17:35:41.8583997Z", + "sessionMode": "None" + }, + { + "id": "99fc0bb2-eb99-92e0-4a07-d3b183eeb33b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "veriparkDemo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-03-12T00:00:00Z", + "endDate": "2020-04-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "fdd4fe00-5599-40e8-a5a6-121597aeaf9c", + "fulfillmentId": "6005095d-5dbc-487a-9105-8fd91a9999f0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-12T14:19:45.6448551Z", + "lastModified": "2020-09-19T17:34:14.918566Z", + "sessionMode": "None" + }, + { + "id": "588dbd9f-bef3-4e6f-2482-8d96c24fb341", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-gt", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-13T00:00:00Z", + "endDate": "2020-04-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "43a806a7-741c-4fcd-b8bc-3e1a087410b3", + "fulfillmentId": "dcca1ce8-b8c5-412e-b83d-58de2238479e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-13T13:40:08.0890332Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "81112583-c831-52bb-c5e0-4cd9d7b3b636", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "saas app", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-06-23T00:00:00Z", + "endDate": "2020-07-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "61d5d764-62ce-4ea5-be08-6c6c507dee96", + "fulfillmentId": "0a63cb03-2a6e-4335-9297-7f25c5596d15", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-23T17:18:15.4429418Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "8bbec436-f32a-dabb-6e2d-ab86ef4c8a2c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "My Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b8b796fe-ce4e-4d02-b2fd-f1d0fb42bd68", + "fulfillmentId": "8ebdca18-0d1b-4d1b-b524-a32700dd7b62", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-02T17:33:54.139152Z", + "lastModified": "2021-02-02T14:04:29.5318767Z", + "sessionMode": "None" + }, + { + "id": "5b597128-f37f-1bc5-75f5-56caef47aeb1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "df4aa43a-04e6-4d66-b8ea-5ae69d277027", + "fulfillmentId": "52781275-f558-44d4-9611-559a612a6c6c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-02T19:34:25.0464119Z", + "lastModified": "2021-02-02T00:51:36.9744464Z", + "sessionMode": "None" + }, + { + "id": "746009b3-40b4-29ef-a6f3-56a3afdec70f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-3", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-03T00:00:00Z", + "endDate": "2021-03-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "88000568-903e-4e22-831d-640b9dcec131", + "fulfillmentId": "264edff0-d781-43d0-9e51-037df1383a32", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-03T21:00:28.1011935Z", + "lastModified": "2021-02-03T01:17:31.7035846Z", + "sessionMode": "None" + }, + { + "id": "a2f0e370-0547-9646-15e2-27702f8bccf0", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup - 4-7", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2020-06-07T00:00:00Z", + "endDate": "2020-07-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8b208814-c03b-4935-80f6-0c6e69a32b26", + "fulfillmentId": "2c97a48a-462b-49b2-881a-fb591dcb6ca4", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-07T23:29:42.107597Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "0ccee9a3-a02f-44b6-f232-b1f60a40fdd8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-20-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "base", + "term": { + "startDate": "2020-05-20T00:00:00Z", + "endDate": "2020-06-19T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "71cd0795-b044-4da0-b9ec-e815b3e37d4d", + "fulfillmentId": "70dadb8d-b90e-47b4-a670-bc4089b8ef6b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-20T15:11:46.2964629Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "08d11a4f-1a10-49ab-46f5-70fc327930d6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-23-2020", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-23T00:00:00Z", + "endDate": "2020-05-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "125f3f56-691e-4af7-adf3-db40d87dac75", + "fulfillmentId": "2ecede0a-0a6e-4c76-9b56-fe0a0ecb9c71", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-23T14:39:26.2639247Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "35defa99-c199-23ca-48c4-b71e2295d3d0", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test for art", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "27bdb759-20bc-43b1-9a63-dcb4c1deb4c0", + "fulfillmentId": "8a6e7c9b-7e73-4f4a-b9ca-fa0f47b10282", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-24T15:20:57.2861443Z", + "lastModified": "2020-09-19T17:36:57.6623785Z", + "sessionMode": "None" + }, + { + "id": "188a2727-834c-cf1a-c301-e6b2b8ce1a92", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6754517c-046e-45c8-8b92-1489e25921ee", + "fulfillmentId": "ccbc8dbd-fc05-4834-a2b4-aaec75c1e3f6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-24T16:58:22.7135434Z", + "lastModified": "2020-09-19T17:39:15.9009145Z", + "sessionMode": "None" + }, + { + "id": "f7c5234a-fb56-6f13-8a7b-7ed2aa1d3f02", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-28-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2020-05-28T00:00:00Z", + "endDate": "2020-06-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0e3d6572-7653-4f6c-ba02-ca766c7ab9fa", + "fulfillmentId": "06242225-3f99-4c2f-a42b-663b913bc8d6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-28T16:31:39.2814342Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b5950cee-c869-2e49-be58-0902ca7ae55a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-b", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5209c38f-3f9c-42c6-aa31-ab7d85c753e2", + "fulfillmentId": "bbf63524-4aa0-47a8-aec6-8a27469cf832", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-01T16:41:29.7114143Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "cd9788e5-1a1a-21ac-b2cc-ce3dc7845eff", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk-5-5-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-21T00:00:00Z", + "endDate": "2021-02-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "90772799-3687-4ba9-9eb3-cd9fcd2f5b11", + "fulfillmentId": "bbcb5031-d47b-4e4c-afcd-5d1f348a8a41", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T10:45:54.8085763Z", + "lastModified": "2021-01-21T08:39:32.7090194Z", + "sessionMode": "None" + }, + { + "id": "25ff4e13-08ee-e2b9-6693-cd6f6eec6fbe", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "AvidXchange Offering", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c8c06ec6-75eb-4004-897e-0efa3e41798a", + "fulfillmentId": "217e99df-2822-484f-a5e8-ac750b5deaad", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T10:46:40.0376237Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "9893aaa6-fd70-dcac-7994-ff9e3acfb65f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-6-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7cf301e5-3565-4c52-9669-8f45ce3a9490", + "fulfillmentId": "d7e14a03-3a86-4f0e-a527-7c077509b40e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T14:35:23.991366Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "cf359dad-9b74-1245-a331-d229627fbf2b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-7-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "07e8da69-e184-4f59-b9b1-00b3a2938bf8", + "fulfillmentId": "b52fb189-d297-48bd-ac51-85bf4abf54cd", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-07T15:38:39.5264795Z", + "lastModified": "2021-02-07T19:42:33.5592454Z", + "sessionMode": "None" + }, + { + "id": "5790d980-ba72-c4fb-d0b8-02fc046ef794", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "bc3bde29-4df2-4624-b02e-7a8705223a28", + "fulfillmentId": "d71d4973-38c8-4b2d-b2ea-94a46138d767", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-11T23:19:04.6687978Z", + "lastModified": "2021-02-11T02:13:53.2938907Z", + "sessionMode": "None" + }, + { + "id": "3f3163de-5c3c-c4a5-afb7-08938d8b6c2f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-h", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ea803f65-cfe2-4251-872a-aa0b29717edb", + "fulfillmentId": "0057b648-7f95-4f8f-952d-5d1d542d9ac9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-15T15:38:28.096311Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a9fcb2ba-8e2b-b797-5f89-0f4d8a1f97b8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 5-21", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7aa5b25f-99d0-456d-9f14-5cae968ae573", + "fulfillmentId": "5e30432e-2e36-4e9e-b632-3ccd3c6f463c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-21T19:19:47.3693979Z", + "lastModified": "2020-12-03T20:04:31.1802848Z", + "sessionMode": "None" + }, + { + "id": "249320b7-2d2f-bbe8-a461-975b32ba046e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "May 29", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-05-29T00:00:00Z", + "endDate": "2020-06-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "58fc869d-deea-4d07-b290-15b1d0c17060", + "fulfillmentId": "2c6e6334-d73d-4f17-bfae-7c88ec3bea3e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-29T15:12:17.0783799Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "463697ef-1a5b-bf92-6738-dc0c898b3af3", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-05-29T00:00:00Z", + "endDate": "2020-06-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5c751d04-4f48-4b1d-813d-16257db2b360", + "fulfillmentId": "8d99aecc-4994-4090-95e1-c351c379e3cb", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-29T17:47:44.8136129Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ee5abc3d-e01f-2f42-47e9-6d01e6fb0625", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "GrowthEnabler", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-06-06T00:00:00Z", + "endDate": "2020-07-05T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "61e2d6dc-f35d-4535-aba7-7eb8bf00f4fa", + "fulfillmentId": "e7554be9-cd6c-430f-9672-35e102fd8a24", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-06T04:00:48.070414Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b7886ce5-bb49-4c93-38ee-5e216a8a290d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 6-12-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4809fce3-98e0-4992-aa75-d6d772a14227", + "fulfillmentId": "c5b90972-7391-42bc-9d97-7e8a709507a0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-12T21:17:34.813046Z", + "lastModified": "2020-12-09T16:02:55.7676973Z", + "sessionMode": "None" + }, + { + "id": "3c93b085-3598-0587-6d0d-ecc55d0c49e7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 6-29-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-06-29T00:00:00Z", + "endDate": "2020-07-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ac369446-2c2d-4e04-817c-0fb008c93735", + "fulfillmentId": "91d16411-0aae-49eb-93e1-2c634f8864cc", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-29T21:42:12.577863Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ec1a383c-07fb-b8f8-a2bf-a507bb37e136", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7 28 3 silver", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "946dac2f-9a5e-47c4-afab-42cff8c09430", + "fulfillmentId": "9f397cc7-4206-446c-8641-bc43f220c04f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-28T16:30:31.0438849Z", + "lastModified": "2020-12-12T15:56:58.2816874Z", + "sessionMode": "None" + }, + { + "id": "2cbbe0a2-2da5-1697-6856-a64273f39966", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-18-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-09-18T00:00:00Z", + "endDate": "2020-10-17T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a908723d-6045-471c-a2af-8e26502cf7ed", + "fulfillmentId": "1080750c-8bd1-4d4a-91d3-f2bfd7ace92c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-18T15:37:32.0265847Z", + "lastModified": "2020-09-18T15:46:20.3023072Z", + "sessionMode": "None" + }, + { + "id": "c9c7ed15-d461-ddf0-04a0-400dc8ecd3be", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-21-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e99701e9-3f22-4464-b897-546691182006", + "fulfillmentId": "0dec4a99-fbc0-4534-b208-c8e358c15ccc", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-21T16:35:46.8401065Z", + "lastModified": "2020-12-21T14:48:37.2940064Z", + "sessionMode": "None" + }, + { + "id": "65201aa9-17a1-6515-124a-cbcdc066433d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "scs basic annual", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic-annual-only", + "term": { + "startDate": "2020-09-22T00:00:00Z", + "endDate": "2021-09-21T00:00:00Z", + "termUnit": "P1Y" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ecd3acfe-bcf5-4099-9be1-3d1964af186c", + "fulfillmentId": "76d9e292-2ef3-42de-826c-8969b671ccae", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-22T00:02:54.5918235Z", + "lastModified": "2020-11-05T01:55:49.5841264Z", + "sessionMode": "None" + }, + { + "id": "4da2c10c-5b4e-5184-1612-467c98fbc300", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "basic monthly", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic-monthly-only", + "term": { + "startDate": "2020-09-23T00:00:00Z", + "endDate": "2020-10-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "46d85a2c-fefd-4517-a157-21f11364e2f1", + "fulfillmentId": "82c9a21d-eb0f-4f27-bf41-34b8ee992f96", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-23T16:00:08.4495143Z", + "lastModified": "2020-09-23T23:09:11.1520063Z", + "sessionMode": "None" + }, + { + "id": "a39a3bf2-2011-f90d-070b-9d31f03139d7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo On Thursday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-11-01T00:00:00Z", + "endDate": "2020-11-30T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d8746c43-d5c7-4c8d-a16f-3f65601a8ba1", + "fulfillmentId": "5f08ae23-9cb2-4c42-9218-82e1ac69e400", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-01T15:40:53.8075374Z", + "lastModified": "2020-11-05T01:56:02.6946522Z", + "sessionMode": "None" + }, + { + "id": "9a3983c0-69b1-5c7f-a13b-1507b6c28e6a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 10-21-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1c2631be-1557-4d35-b0fe-a4cc83dd85ff", + "fulfillmentId": "c9d6e1d3-1ee2-41a2-bb5a-0784b27cb1fd", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-21T17:52:54.0642703Z", + "lastModified": "2021-02-14T02:51:35.1862122Z", + "sessionMode": "None" + }, + { + "id": "77c9c254-008e-65f9-9d53-87610513a37a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 10-22-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a8955f14-3322-4151-9043-24f80bdf39ab", + "fulfillmentId": "de616d9d-aad7-4088-a832-a517bca4d1f9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-22T18:10:33.2525465Z", + "lastModified": "2021-02-14T14:48:21.1638543Z", + "sessionMode": "None" + }, + { + "id": "3daa5b26-2caa-4627-01c7-b51a4c739b37", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 10-22-2", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "98d50fe3-7b5c-4fc9-b1f9-eaff3eed5c7d", + "fulfillmentId": "a87dbe02-b73d-4b51-ae57-23c91fcca450", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-22T21:11:58.5885238Z", + "lastModified": "2021-02-14T12:33:52.5867286Z", + "sessionMode": "None" + }, + { + "id": "853db13a-b669-7ee5-84ef-2f3b73c48ca1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "unlimited-basic", + "term": { + "startDate": "2020-11-26T00:00:00Z", + "endDate": "2020-12-25T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9899249f-a635-4e1b-b55b-04df85f0c88e", + "fulfillmentId": "b3309a9d-4e95-42fd-b8a1-c738441a9fa4", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-26T20:09:59.0313947Z", + "lastModified": "2020-12-01T21:47:18.7596553Z", + "quantity": 200, + "sessionMode": "None" + }, + { + "id": "02b70010-4159-b983-fcb2-00067814cd75", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "adobe", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "unlimited-basic", + "term": { + "startDate": "2020-10-29T00:00:00Z", + "endDate": "2020-11-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "702d56ed-5731-4bde-a0c7-35d37add8896", + "fulfillmentId": "3a792517-5c78-4364-a6a9-4e76eb5e7140", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-29T22:17:55.8146603Z", + "lastModified": "2020-11-05T01:52:25.6730089Z", + "quantity": 199, + "sessionMode": "None" + }, + { + "id": "bea36674-41e2-9480-cf1e-b68b8507fed5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "testscs", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2021-02-05T00:00:00Z", + "endDate": "2021-03-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4f08fa8f-5c84-4ad2-8552-7d05896e5c86", + "fulfillmentId": "a81fb362-a534-4805-87a4-a2b36ef4635d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-05T02:42:08.2082173Z", + "lastModified": "2021-02-05T08:37:15.6026716Z", + "sessionMode": "None" + }, + { + "id": "7b7adef6-ca74-95d5-7b81-c6f4bc017235", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo for spin", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-11-13T00:00:00Z", + "endDate": "2020-12-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f8c20260-0465-4f61-8499-711b9bd362cf", + "fulfillmentId": "52a03aa4-c916-47c7-aff3-4b2b8575dbd9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-13T17:25:50.5154605Z", + "lastModified": "2020-11-17T19:50:47.5223871Z", + "sessionMode": "None" + }, + { + "id": "0156c6b1-37e6-96af-0040-0719c53fb493", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond-11-19-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-19T00:00:00Z", + "endDate": "2021-03-18T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7f383a6f-92de-4121-89ba-76cf0038cda4", + "fulfillmentId": "53831a2f-527d-4ea4-aba8-3bc31cbf8b60", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-19T17:49:25.4024396Z", + "lastModified": "2021-02-19T02:01:09.0269304Z", + "sessionMode": "None" + }, + { + "id": "42b3b315-8528-9baf-f924-28bd8d24aa68", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-12-01T00:00:00Z", + "endDate": "2020-12-31T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f8378c1d-8a5b-441c-8127-e0fc5e17f56d", + "fulfillmentId": "b09d5cb0-ae4f-4888-8665-743095c755f0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-01T20:27:40.8068406Z", + "lastModified": "2020-12-01T21:16:14.6532485Z", + "sessionMode": "None" + }, + { + "id": "e691a0a6-71c0-9507-2a35-f736f548763c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "unlimited-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7e4b5f16-726d-478e-ad94-b2d058f9bd99", + "fulfillmentId": "f27b8b71-fa52-4157-850c-d142e912cbbf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-02T23:42:22.7442829Z", + "lastModified": "2020-12-08T07:18:48.9697186Z", + "quantity": 211, + "sessionMode": "None" + }, + { + "id": "71d8e806-3767-1616-6aea-a5bbd90a3426", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond12161", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:35521" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:35521" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5972122c-0a7e-4c4a-b265-5065b1f0e209", + "fulfillmentId": "ff0c00d3-7d00-4717-b69b-a3351410cd82", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-16T19:45:34.4852649Z", + "lastModified": "2021-01-17T06:25:32.3653835Z", + "sessionMode": "None" + }, + { + "id": "7bc38994-364a-eb77-980c-8de17e7bfe10", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond12162", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:28544" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:28544" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "966adc85-5c68-4446-8f7a-c5252a019735", + "fulfillmentId": "6720a175-04e2-4a11-b6d3-d6c26e7d5714", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-16T19:49:41.1699507Z", + "lastModified": "2021-01-17T06:26:55.5346008Z", + "sessionMode": "None" + }, + { + "id": "4e76088d-52b2-dd7f-d014-08ed72eb910d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "Thursday PM Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:23296" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:23296" + }, + "planId": "standard", + "term": { + "startDate": "2021-01-07T00:00:00Z", + "endDate": "2021-02-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d37fcef1-f377-4d51-8d39-836706ca86c4", + "fulfillmentId": "972a8d30-8f7a-4025-99bc-705c84b5d780", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-07T21:08:44.1171512Z", + "lastModified": "2021-01-15T00:43:12.6247626Z", + "quantity": 100, + "sessionMode": "None" + }, + { + "id": "2f18f6c8-3b38-d085-cb8a-6dd7d225923a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:30976" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:30976" + }, + "planId": "unlimited-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2040b3e4-0f3d-4bb7-8488-b62da7836b69", + "fulfillmentId": "55bad741-70c6-4178-b432-f49ca40a7daf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-15T00:23:06.6776278Z", + "lastModified": "2021-01-15T00:43:54.0898965Z", + "quantity": 200, + "sessionMode": "None" + }, + { + "id": "fec7005f-8795-eeef-3302-6bae34308ba8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "test edge", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:44864" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:44864" + }, + "planId": "unlimited-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a054b650-f183-45d4-afe7-1a94230a1e85", + "fulfillmentId": "f304cac4-3bcd-418b-9d49-d63a1c069dd6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-15T00:38:08.7737915Z", + "lastModified": "2021-01-15T00:43:43.063009Z", + "quantity": 201, + "sessionMode": "None" + }, + { + "id": "6996db3d-65df-edb0-238d-ca8bd41ddfe5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "redmond115", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@hotmail.com", + "objectId": "d2858116-704b-480d-acf8-340adbab114f", + "tenantId": "dba46d5b-306d-4364-910b-4c1c394ffd65", + "groupIds": [ + "92505146-af9e-4dae-ac61-30e3ce10d462" + ], + "puid": "000128374C27FA21", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:28544" + }, + "purchaser": { + "emailId": "ercenk@hotmail.com", + "objectId": "d2858116-704b-480d-acf8-340adbab114f", + "tenantId": "dba46d5b-306d-4364-910b-4c1c394ffd65", + "groupIds": [ + "92505146-af9e-4dae-ac61-30e3ce10d462" + ], + "puid": "000128374C27FA21", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:28544" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7865c21a-0e1f-4862-a0f0-fd7cf98b2101", + "fulfillmentId": "b56b12e9-9aa4-4bdc-b985-4da686f78894", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-15T22:01:18.6098849Z", + "lastModified": "2021-02-15T06:27:41.7806117Z", + "sessionMode": "None" + }, + { + "id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond121", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:6720" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:6720" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-21T00:00:00Z", + "endDate": "2021-02-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f4919bd3-7eb4-47a4-990b-90c750c3fce1", + "fulfillmentId": "33f11f78-64d2-4ea2-a7ec-c4bc8581542b", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-01-21T18:47:25.2241546Z", + "lastModified": "2021-01-21T21:58:31.1651311Z", + "sessionMode": "None" + }, + { + "id": "255b2f4f-e2ca-938e-f80d-1a3339b5693c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "redmond1291", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "52.146.28.175:5249" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "52.146.28.175:5249" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "54a7bbab-d7c3-49b8-ba7c-69b5b17e61c4", + "fulfillmentId": "e8567483-7e3b-466e-b476-362598e77e15", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-01-29T15:53:28.604857Z", + "lastModified": "2021-01-29T16:00:30.5002086Z", + "sessionMode": "None" + } + ], + "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E399CD6732%22%2c%22max%22%3a%2205C1E9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" + } + }, + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E399CD6732%22%2c%22max%22%3a%2205C1E9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + ], + "x-ms-client-request-id": "018f290c-b2f3-8169-819f-c3159408c751", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "97842", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u0022aa3727d2-fcc9-4e7a-b241-7dbcc5c66483\u0022", + "X-Azure-Ref": "0qxUwYAAAAACQQEejf/EuRbGkU2uUYMi8V1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "93383579-aeef-4fea-8b95-b506e615c124", + "x-ms-correlationid": "2bd5977f-37d2-4468-9db3-79202bb234b0", + "x-ms-requestid": "2bd5977f-37d2-4468-9db3-79202bb234b0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "subscriptions": [ + { + "id": "cc7c879a-64a0-e972-4102-2d87a0d069a3", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-7", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-03T00:00:00Z", + "endDate": "2019-11-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a4b00ed4-49d1-4593-bf73-b6299443b322", + "fulfillmentId": "27b87440-2f36-4215-b603-ea29e20caed9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T20:49:59.5508939Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "cc052ae9-bf72-74e6-81ee-b70e512b5e49", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk 10-10-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "basic", + "term": { + "startDate": "2020-01-10T00:00:00Z", + "endDate": "2020-02-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1dbcb3db-9b9d-4ef0-84d1-9f39f47c20c1", + "fulfillmentId": "669f76f9-3a80-4037-a761-f48ee566493c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-10T19:37:43.7535812Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "24f1837a-d4f9-dbee-6c53-09f27033edd2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "603341d8-869c-4cb0-a6f3-258669edee5a", + "fulfillmentId": "460a056e-c46f-404c-a14a-1dcbdb4e79c1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T15:46:19.8096783Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1e2adc24-418f-9eaf-4199-90d637a0e6d2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test6", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7216cbae-3d79-462f-9f0a-988fea172b66", + "fulfillmentId": "004013f6-fcad-4c4a-8250-8bdcba758654", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T22:57:48.1763036Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "301037de-ccd9-b1d9-9e08-9dc3f53f937f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test10", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8fa98aea-ff8c-4c20-a690-3f7c87ea1d4d", + "fulfillmentId": "07797cd9-fea2-4983-8a04-7d4fc5e72673", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T23:48:11.3182669Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "770b5ad0-6b4a-b2d6-ddbd-e9940aa5e5cd", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test21", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8fb81e97-5a20-4b3f-8f33-afead151096f", + "fulfillmentId": "8f4293c9-7c09-4d68-9345-c47c161a20ed", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-13T22:08:29.108259Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "6c08ebc9-d3d6-465a-8382-f37b8a3c7c6a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 11-26-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "188197d5-54b6-4197-8b71-f850cd2ae416", + "fulfillmentId": "abf8605e-cfb2-47c7-8fb4-ee71ac7a5b9a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-26T20:55:13.2186994Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "aa1ff5a9-5ddb-85a7-c110-611577946ccb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Customer1-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-10T00:00:00Z", + "endDate": "2020-02-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4d740162-6fce-4212-a8f1-6e470d1521a3", + "fulfillmentId": "491cf421-5f1d-4130-99b0-aa4353d7a5e0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-10T19:35:15.7251219Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "07e1a5ac-5a94-9a0f-13b7-6e78b8dad636", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ignite Tour Lonbdon - 2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "52022059-3de0-49ce-9174-0617821ce574", + "fulfillmentId": "40df76cf-243a-4b35-b8c7-7028dc1e6712", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-17T09:53:06.8045887Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "316110fb-7615-e596-6e9d-ab77eb1a0cf6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "London - 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0535400d-bb81-4268-9081-52c1af5fb11b", + "fulfillmentId": "a4f826d9-1323-4f09-b200-46fce7b46457", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-20T14:45:05.0834287Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "bf25faef-0b8c-eee2-acb7-60bcbaebc747", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "London - 2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e438bedf-0920-4ea4-b18b-c411d52fb511", + "fulfillmentId": "47fe55c3-2fcc-4feb-a5e7-f87f5c3e1670", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-20T16:03:16.2029988Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1d756d96-80f4-68bb-2291-7d6de7475157", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-clear", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-21T00:00:00Z", + "endDate": "2020-02-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f4d484b4-d55d-4db8-8e2a-5ab270360390", + "fulfillmentId": "a13f8f04-8a9d-470e-bca2-569a930099ce", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-21T18:11:11.9287371Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "f8ed3087-5152-be5e-1b0d-2a3d4947bd7d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-22-2020-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2020-01-22T00:00:00Z", + "endDate": "2020-02-21T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "445df821-061f-45e5-af8e-cbb040d107a6", + "fulfillmentId": "41099189-ae00-4ac9-90f5-2b33ec0dbf8f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-22T21:46:25.1492327Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "23ad0e7b-2847-be01-6371-b87abfa8a4ca", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk - Redmond - 1-24-2020-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2020-01-25T00:00:00Z", + "endDate": "2020-02-24T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "71edd2f2-1416-4a24-ad13-7ca4862483e7", + "fulfillmentId": "526b527b-2fc0-45e8-9084-f86e9888db25", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-25T00:11:18.4526993Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e71a3692-1171-f582-a7d5-3f91ce45dd23", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-27-2020-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-27T00:00:00Z", + "endDate": "2020-02-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "911105c7-d46a-4000-9ffa-25637670726f", + "fulfillmentId": "76836382-b7f6-48ef-8d61-7d9001d709ff", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-27T21:18:21.1093974Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "a3cdf848-60ba-0ce9-1801-a5eb86911fdf", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "To be cancelled -1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b84bd804-bbed-4814-9d64-4a47fcca9da7", + "fulfillmentId": "7b1d6528-ab02-49bb-aee6-85add8cfd4d3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-10T19:22:28.1539915Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "68deb6a4-811f-7287-70b0-6cc220ea4b69", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo for Ferrari", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "6", + "0", + "2", + "8", + "f", + "1", + "-", + "3", + "4", + "a", + "e", + "b", + "7", + "c", + "d" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "6", + "0", + "2", + "8", + "f", + "1", + "-", + "3", + "4", + "a", + "e", + "b", + "7", + "c", + "d" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "288bf3d9-4b15-4838-9d5c-da665396aa5f", + "fulfillmentId": "b2a093d8-a8a6-4b15-9f54-0e166ba83a69", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-19T16:03:29.2092084Z", + "lastModified": "2020-09-18T23:55:18.8377166Z", + "sessionMode": "None" + }, + { + "id": "c8dcd355-15f0-0694-b66c-60c32f672e7f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Nasdaq Portal", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "6", + "0", + "2", + "8", + "f", + "1", + "-", + "3", + "4", + "a", + "e", + "b", + "7", + "c", + "d" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "6", + "0", + "2", + "8", + "f", + "1", + "-", + "3", + "4", + "a", + "e", + "b", + "7", + "c", + "d" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-02-20T00:00:00Z", + "endDate": "2020-03-19T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9da4f548-563d-4808-acc0-f2813b1019ff", + "fulfillmentId": "9b1c8920-99e9-4e3e-877a-c4ba0acc402e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-20T10:05:26.6496784Z", + "lastModified": "2020-09-18T23:55:37.5418848Z", + "sessionMode": "None" + }, + { + "id": "13a87e08-03c6-1405-a37a-59869eb47066", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-wb", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b", + "c", + "8", + "a", + "0", + "-", + "2", + "9", + "d", + "4", + "1", + "6", + "3", + "f", + "7", + ",", + " ", + "5", + "e" + ], + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b", + "c", + "8", + "a", + "0", + "-", + "2", + "9", + "d", + "4", + "1", + "6", + "3", + "f", + "7", + ",", + " ", + "5", + "e" + ], + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-21T00:00:00Z", + "endDate": "2020-03-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4cf4206b-0d88-4bc7-8d97-cdf3eaa70c24", + "fulfillmentId": "eb6cefd8-85d8-4cd4-9f38-2d4f2eb59675", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-21T18:39:11.2214368Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "5c264ab9-e3e7-20ad-d0cb-fe3649e1f3d5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2020-11-25T00:00:00Z", + "endDate": "2020-12-24T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "40c14cea-be7c-47ca-9d20-20240abb50bb", + "fulfillmentId": "827ab2fb-d80f-41ff-b47b-91ad0fd9b5be", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-25T23:08:01.1625829Z", + "lastModified": "2020-12-01T16:08:08.2741106Z", + "sessionMode": "None" + }, + { + "id": "55921b8c-aeed-9771-bf63-213e5a797b82", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-sy", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-28T00:00:00Z", + "endDate": "2020-03-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "be96d212-636f-4ba1-90b4-913fdca2b278", + "fulfillmentId": "07f84416-1aa2-4a89-b9e5-83085f79e151", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-28T15:10:23.2150238Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "c76e2a63-7bc3-c1f4-194e-b98fed95fa38", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 3-4-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "base", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8244e40a-22f0-40be-9f52-99159fb1c0c8", + "fulfillmentId": "4b4820bf-a755-4a06-bf49-4856088d9e14", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-04T21:09:41.4341668Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ca0ca520-1c71-57a8-905f-c830a2c791d8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 3-12-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2020-11-12T00:00:00Z", + "endDate": "2020-12-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c3facec8-0cf4-4c4c-b7cc-a651b2a7c497", + "fulfillmentId": "85f31a44-3302-4f35-9a77-956be8519799", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-12T19:22:52.5038037Z", + "lastModified": "2020-12-02T19:34:12.6604208Z", + "sessionMode": "None" + }, + { + "id": "3738084a-e562-3a4b-80ba-ee37a0f9369e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-i", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "bcbc8a80-2a9d-41cc-9621-3f13aa770203", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "0891294d-ceba-41e5-832d-e25d7bff58cb", + "d64fbeac-7cf9-470b-9b77-ed4391f7970e", + "9672cc2c-c469-4c67-9ee6-8986b394c27b", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9974d899-d73b-4324-b149-681868edc59e", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "95039783-d400-4cba-be2c-b607aef00d28", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-13T00:00:00Z", + "endDate": "2020-04-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "28ba0228-9112-49ea-8bcb-48d41a7bffd6", + "fulfillmentId": "85f8952c-c0c8-4c3f-abb6-5ddf253af80b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-13T00:34:04.2032163Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "c159c6d4-7a49-ef95-95f7-726e65b4fe95", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-24T00:00:00Z", + "endDate": "2020-04-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d29d3bee-9e13-4665-a0c6-3947c3963906", + "fulfillmentId": "2ff93aa4-72c0-4c23-9967-5c973d49bc65", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-24T13:58:40.7126099Z", + "lastModified": "2020-09-18T23:54:52.5372156Z", + "sessionMode": "None" + }, + { + "id": "8c050a8b-aa49-1b9e-57ec-2ef3c34e77fc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup 3-25", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2021-01-25T00:00:00Z", + "endDate": "2021-02-24T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0a77f69f-febe-433c-90d3-7ee83006903e", + "fulfillmentId": "2b5e30f9-56e5-49bf-b5fd-09c0bc98d382", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-25T17:42:23.6603034Z", + "lastModified": "2021-01-25T00:24:26.778631Z", + "sessionMode": "None" + }, + { + "id": "166dbced-d652-e17c-5083-ac36d958281f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-med", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e804580e-797e-4f74-ae17-3b25eab9193e", + "fulfillmentId": "f8675bef-312b-4281-9351-3d491019f3c0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-25T18:29:54.7465345Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "457667dd-585f-91ce-79d3-593622f9f0af", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-innv", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-03-26T00:00:00Z", + "endDate": "2020-04-25T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f373766f-9f2c-4907-91ff-e04214680ce3", + "fulfillmentId": "34ec6169-72c1-4fcc-b328-18c6c91d99b1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-26T15:11:48.2925781Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "5fa45825-c52d-d619-9458-f653233aa7ce", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "demo saas", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-06-27T00:00:00Z", + "endDate": "2020-07-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3e433a8f-144e-47e9-adb2-1b9a70d926b8", + "fulfillmentId": "6ae1afa4-8bdf-4c4e-b472-c4d93bf18ba6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-27T15:31:36.4828922Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "25ed4560-8fdf-eafd-1aa9-0937681705fa", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-e", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-09T00:00:00Z", + "endDate": "2020-05-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ea5e8833-69d2-4386-bd2e-939dd23d9e82", + "fulfillmentId": "f4e27885-bbac-4fb2-ac4d-70947409aec5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T16:40:45.9179152Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b82c31c8-8f10-d5a4-0964-111fb75e33c7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo ", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-04-16T00:00:00Z", + "endDate": "2020-05-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "22dbd9bf-d795-4905-b16e-05a7db5c5d66", + "fulfillmentId": "7df37b08-cd38-46d2-af2d-b8a5745f7447", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-16T22:29:26.4703428Z", + "lastModified": "2020-09-19T17:39:25.0511501Z", + "sessionMode": "None" + }, + { + "id": "e2b23b48-f559-693e-b178-584c5b0cc57d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Name of app", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f03f193c-6881-468a-b3f7-a6f703ce45d0", + "fulfillmentId": "a98771e3-24bc-40e1-96ad-fabd0b17242a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-28T16:51:37.0196725Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "813b56b9-a007-e6ed-680b-714d8a2e7b98", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-5-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "49bf20a1-f64b-4aa4-a2ea-587dca83ed8e", + "fulfillmentId": "f0b4ac26-8977-47d3-a5a0-4f8d303b4c44", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T10:45:25.6540513Z", + "lastModified": "2020-12-01T16:04:07.3245624Z", + "sessionMode": "None" + }, + { + "id": "fa0d5e8f-0572-f469-14a7-b60740686bf5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Bitvore", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-08T00:00:00Z", + "endDate": "2020-06-07T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e8e51d9e-88b1-4b7d-970a-986e4a1927b1", + "fulfillmentId": "87a48a4c-a3b7-414a-81b7-163e17709142", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-08T16:46:12.2583905Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "5cd73725-8ee0-7353-42c6-3e73fd2ddc56", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-z", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "77f405bb-e37a-4f53-b262-9840f8bb311b", + "fulfillmentId": "b06b3d15-c61d-4341-877b-9d0b9584df71", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-11T16:26:42.7272755Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b46e3e1f-70b3-21d0-890f-94a4e149ce1f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond - 5-27-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2021-01-27T00:00:00Z", + "endDate": "2021-02-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "95540108-9871-48a7-bd42-78911e6a8835", + "fulfillmentId": "9747a079-bdc5-48f1-8908-77dd9006ace5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-27T20:38:40.8686979Z", + "lastModified": "2021-01-27T06:55:27.3102298Z", + "sessionMode": "None" + }, + { + "id": "8d775ced-9896-f3ed-cee0-639a192f5e55", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 6-2-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-08-02T00:00:00Z", + "endDate": "2020-09-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6389bae8-0399-4cb5-a862-d5e17f64c38f", + "fulfillmentId": "c8eb07f4-8950-42ba-b483-b4330028435e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-02T20:18:52.4924939Z", + "lastModified": "2020-09-01T14:57:24.0247758Z", + "sessionMode": "None" + }, + { + "id": "e4341ec7-1e1a-4bbe-2a0c-4b66fcc65249", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 6-4-20", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b2be879e-1df6-4398-ae45-d47c21fc6529", + "fulfillmentId": "6d1c8db4-e2fb-4aa6-b2c6-c9d8767d1eca", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-04T15:15:30.9816843Z", + "lastModified": "2021-02-04T14:59:17.5036712Z", + "sessionMode": "None" + }, + { + "id": "27c33d60-4dda-13b4-3de4-b2249b6a75aa", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "June4Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1ef36747-3bae-4c4d-b320-c081decdb47f", + "fulfillmentId": "328033d6-9707-4f8d-a472-37326504e6dd", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-04T15:31:39.7028145Z", + "lastModified": "2021-02-04T04:33:01.2309212Z", + "sessionMode": "None" + }, + { + "id": "a59b3373-9520-e9b3-a6ab-a69632d6d48f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "TestGE", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "32fcf74d-fbf3-4e06-b2b2-0ae8b9356955", + "fulfillmentId": "42b813fd-4b88-4371-b9ad-90c89044d68c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-08T15:00:07.4868592Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e075b90c-610a-becf-a2e3-6c6d90065f3c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Tuesday Morning Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-07-16T00:00:00Z", + "endDate": "2020-08-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9df392b1-9183-4b73-8b6c-232ca9d8798d", + "fulfillmentId": "184b616f-ef80-45b8-bcd8-7c9795cf9cd2", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-16T13:26:40.4573638Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "42aba5c4-8540-c0f4-ef5d-25bc252da595", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 6-30-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-11-30T00:00:00Z", + "endDate": "2020-12-29T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4b19e4c1-1b01-4d18-b720-6c8c9885563d", + "fulfillmentId": "68862ad5-85b1-4209-a4b1-ce8ea378898e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-30T16:19:31.9158389Z", + "lastModified": "2020-12-02T19:09:04.5757517Z", + "sessionMode": "None" + }, + { + "id": "fe09a85c-b308-22e5-09f2-13ad46a6b9c3", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Basic plan", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "83348cd3-47cd-411c-88e4-9644a46730b0", + "fulfillmentId": "b7148585-1369-448d-8af1-c9a7485713f3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-06T19:58:00.1276715Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "5032cf6e-3ea2-f099-af1c-85aecb527328", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7-8-20-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f6db6046-baf8-44fa-91e7-75b523e11a67", + "fulfillmentId": "ba74a417-c877-41eb-aa51-63dc544aa65b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-08T19:14:15.5327278Z", + "lastModified": "2020-07-30T22:24:40.1973597Z", + "sessionMode": "None" + }, + { + "id": "fdd48e36-90ae-da1e-f026-32b5963c3629", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "adarTestContoso", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "adkendel@microsoft.com", + "objectId": "f499f126-922a-4eb4-afc4-de39505d62ef", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFAC473062", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "adkendel@microsoft.com", + "objectId": "f499f126-922a-4eb4-afc4-de39505d62ef", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFAC473062", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d9f1bbe9-0085-499c-8993-0c6dd6698afa", + "fulfillmentId": "d39ee746-8688-4898-8176-dc25da5710fc", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-16T09:39:53.6521421Z", + "lastModified": "2020-12-11T15:57:43.6897205Z", + "sessionMode": "None" + }, + { + "id": "f9d9c710-9c44-2f6a-c757-1440eee4bafb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Erc 7 28 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2c54c0f2-c9d2-4f64-a926-829437793d98", + "fulfillmentId": "f7fbe579-7d19-4256-9655-bfb13d4499d5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-28T15:20:19.372291Z", + "lastModified": "2020-12-12T16:13:23.8101378Z", + "sessionMode": "None" + }, + { + "id": "84e81fab-27c5-9720-2e8d-155d85127b83", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7 30 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "200e161b-6d6b-40d0-8f3d-67d410534744", + "fulfillmentId": "993b5234-1b34-4339-9a9e-5f60bac6d02a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-30T21:48:42.230062Z", + "lastModified": "2020-12-12T16:09:46.9197967Z", + "sessionMode": "None" + }, + { + "id": "22bfaa3e-5fdc-b497-0728-2a6c31a55864", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 8-10-2", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "startDate": "2021-02-10T00:00:00Z", + "endDate": "2021-03-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "bb01e8af-44a4-4573-bd27-5bedf7483301", + "fulfillmentId": "efd2ab00-ede8-4929-9626-cefaddc7485a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-08-10T16:29:54.8329451Z", + "lastModified": "2021-02-10T03:47:57.9818166Z", + "sessionMode": "None" + }, + { + "id": "884408b5-249c-27b5-ed41-7d1367237d6c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk - 9- 2- 1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-02T00:00:00Z", + "endDate": "2021-03-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d9f4eb39-c8c8-4676-9daf-927cd4ff5a3f", + "fulfillmentId": "32019ecc-b719-4812-afcc-3d4f49885a0f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-02T17:55:08.5652063Z", + "lastModified": "2021-02-02T05:58:50.4970925Z", + "sessionMode": "None" + }, + { + "id": "9bb67b02-d8cd-e89d-4a75-455325e63ba1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-14-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b1be759d-2026-4ff0-8d59-0a85c25c03fe", + "fulfillmentId": "99739617-8770-4b75-9b4c-297cba44e140", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-14T23:24:49.8054763Z", + "lastModified": "2021-02-14T20:46:24.2746881Z", + "sessionMode": "None" + }, + { + "id": "c8de2c29-aa79-79b4-5b30-6de461ccc85b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-15-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-15T00:00:00Z", + "endDate": "2021-03-14T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3a170407-d215-4b13-a9f4-caec13cc2187", + "fulfillmentId": "f6f7c74e-6f10-4182-b17f-c089be4ddb57", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-15T19:47:31.1572826Z", + "lastModified": "2021-02-15T11:35:56.7024853Z", + "sessionMode": "None" + }, + { + "id": "5c9f753c-8a79-13bb-fbdc-7ee4a047f3a2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "scs advanced monthly", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "advanced-monthly-only", + "term": { + "startDate": "2020-09-22T00:00:00Z", + "endDate": "2020-10-21T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c96f9ec0-dbb8-488b-8a12-b996329c6eb5", + "fulfillmentId": "b1ab6bca-2686-4df4-b2c6-fa7fc6f701f6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-22T00:01:20.2365039Z", + "lastModified": "2020-11-05T01:55:37.476969Z", + "sessionMode": "None" + }, + { + "id": "038bed6b-b5c1-7af1-8687-541aba462e03", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "scs advanced both", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "advanced-monthly-or-annual", + "term": { + "startDate": "2020-09-22T00:00:00Z", + "endDate": "2020-10-21T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c48cae8c-f7e3-417d-8495-8e59cd83317a", + "fulfillmentId": "3918dd78-8dd3-409e-8999-3d5d8f52d477", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-22T00:06:43.4018934Z", + "lastModified": "2020-11-05T01:55:27.4122225Z", + "sessionMode": "None" + }, + { + "id": "702c33a0-f64e-6016-a578-65e669f9ca2d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Thursday Night Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-10-02T00:00:00Z", + "endDate": "2020-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d1cf8317-088e-40e5-8d98-7fc103addc88", + "fulfillmentId": "f90d65e5-92c1-4dd8-8947-3de86286ea06", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-02T00:34:27.5305543Z", + "lastModified": "2020-10-26T20:12:06.2609314Z", + "sessionMode": "None" + }, + { + "id": "dcf2a4f8-801e-06d8-d266-50f956bb629b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 10-20-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-20T00:00:00Z", + "endDate": "2021-02-19T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0aca6751-4459-4eff-acc7-00f573dd41a9", + "fulfillmentId": "c81fa323-b271-4e8b-ab81-843ff9bbd982", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-20T22:44:02.8963755Z", + "lastModified": "2021-01-20T05:10:30.5666476Z", + "sessionMode": "None" + }, + { + "id": "419a4256-e217-f924-5f00-e8093c92e2c0", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 10-28-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "47383c68-a6cb-4647-b209-1a7934a9889f", + "fulfillmentId": "03d23af7-6cc3-4073-b2a7-f4d143fbb248", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-28T17:32:17.3885671Z", + "lastModified": "2021-02-14T13:03:16.3618579Z", + "sessionMode": "None" + }, + { + "id": "6e94842f-a9ad-9418-8719-66cf123fc7b5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "basic", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-11-02T00:00:00Z", + "endDate": "2020-12-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e930ee48-3053-4db5-9019-de93a784e6a1", + "fulfillmentId": "89c31149-c0b6-44c8-95d3-fa0d2029577a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-02T21:39:27.7193713Z", + "lastModified": "2020-11-12T23:01:08.6669021Z", + "sessionMode": "None" + }, + { + "id": "806241dd-8acd-361e-ea16-3c7ffa1fa5ff", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "TestForSpin", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic-monthly-or-annual", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "74e24598-8d11-4d13-9b1b-c612978008f3", + "fulfillmentId": "e1c817d9-5608-4ce2-8d49-9bb61dd02b4f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-10T15:52:05.0793125Z", + "lastModified": "2020-11-17T23:56:26.4596921Z", + "sessionMode": "None" + }, + { + "id": "c6a3194e-b1fa-49b5-eeb4-ced12d97b2c6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "preview demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-11-12T00:00:00Z", + "endDate": "2020-12-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "58e4a83b-4c7b-4695-aaae-6a6fd0b1c3e1", + "fulfillmentId": "fa4d80a5-cd05-460a-a9ab-c6d0a773cf5a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-12T21:47:01.0090356Z", + "lastModified": "2020-11-17T19:51:08.5429033Z", + "sessionMode": "None" + }, + { + "id": "15a80a8e-48ae-18a3-8e96-319de9cd1abb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 11-16-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "500d56a4-c6d9-4d91-ab8a-e67df78b68a7", + "fulfillmentId": "6f70b44b-2ebf-4e79-84d0-ed95279acbbf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-16T17:58:58.743227Z", + "lastModified": "2020-12-24T10:05:39.5982191Z", + "sessionMode": "None" + }, + { + "id": "5adc19a0-dedb-2d0a-90ad-45aa4c811c48", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 11-23-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-11-23T00:00:00Z", + "endDate": "2020-12-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d533fd23-0788-4bac-8d43-b670ff2ab015", + "fulfillmentId": "51e6638c-5983-40fa-8a84-e18d4e5d26b7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-11-23T19:24:30.0245584Z", + "lastModified": "2020-12-01T15:56:51.9335674Z", + "sessionMode": "None" + }, + { + "id": "1035a5a4-5314-ff65-8a1c-b6d6f43480f1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "My Instance", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-12-08T00:00:00Z", + "endDate": "2021-01-07T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "61058747-be27-477c-bc36-5889217a8a43", + "fulfillmentId": "b84cf3df-50d5-455f-ad0f-35c4bf6f55ec", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-08T19:35:29.6649911Z", + "lastModified": "2020-12-09T20:23:13.6751127Z", + "sessionMode": "None" + }, + { + "id": "a01c74cc-cd65-0218-caee-e2e7380825eb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond1291", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6ba97eba-3e4e-46c3-a810-f2923748d5ee", + "fulfillmentId": "9655ec5a-14f9-42c2-b8a4-e509552616fd", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-09T23:25:56.745619Z", + "lastModified": "2021-01-09T06:40:44.2319065Z", + "sessionMode": "None" + }, + { + "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "redmond120", + "saasSubscriptionStatus": "PendingFulfillmentStart", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:25728" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:25728" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", + "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-01-20T18:29:27.3784172Z", + "lastModified": "2021-02-13T06:06:32.6033421Z", + "sessionMode": "None" + }, + { + "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "Demo for ISV", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:30273" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:30273" + }, + "planId": "basic-monthly-only", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "85943e63-6960-4ca5-9352-64fa7bdb9fb4", + "fulfillmentId": "08ee1cc3-87ee-4b36-bd2e-193b0eeabc45", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-27T21:45:21.9455362Z", + "lastModified": "2021-01-27T21:48:33.6663393Z", + "sessionMode": "None" + }, + { + "id": "a269ae3f-62ec-86e2-140b-c53963efb3d6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond1281", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "52.146.28.226:17856" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "52.146.28.226:17856" + }, + "planId": "base", + "term": { + "startDate": "2021-01-28T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "0a3ef310-93be-427e-b7fc-6870bc03c229", + "fulfillmentId": "c584159a-ccfa-4b8e-98d2-c2353ec4425a", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-01-28T15:27:00.3366827Z", + "lastModified": "2021-01-28T15:30:36.2471755Z", + "sessionMode": "None" + } + ], + "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E9CD673398%22%2c%22max%22%3a%22FF%22%7d%7d%5d\u0026api-version=2018-08-31" + } + }, + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E9CD673398%22%2c%22max%22%3a%22FF%22%7d%7d%5d\u0026api-version=2018-08-31", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + ], + "x-ms-client-request-id": "92da956e-0fc6-2419-bcbc-87adefe187bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "115884", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u0022f8db4045-2f14-4ba2-92ee-36eacbe9ba84\u0022", + "X-Azure-Ref": "0qxUwYAAAAACBEbbzlIwkQZihH9kgyDrzV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "ee0d411c-a7eb-4fbd-a26d-f092c49e79db", + "x-ms-correlationid": "cafb2a5e-7ff4-4068-81bd-00f37d114bd2", + "x-ms-requestid": "cafb2a5e-7ff4-4068-81bd-00f37d114bd2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "subscriptions": [ + { + "id": "fb494e49-67ca-4673-658b-01f8c56393ec", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk\u0027s offer sample for TwinThread", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "basic", + "term": { + "startDate": "2019-09-23T00:00:00Z", + "endDate": "2019-10-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "00422741-0462-4c74-9ec8-eb1a80c9c4f0", + "fulfillmentId": "c553eb5f-7a8e-4431-8ac1-6cdf15ed217f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-23T19:37:21.0289749Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "9297c560-900e-6237-c40f-e7283be012c8", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-09-27T00:00:00Z", + "endDate": "2019-10-26T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "413fe73c-5b72-47e4-bf25-6b093b406ca3", + "fulfillmentId": "8f614bb1-1aed-4d9e-b1bc-48bf39f2e146", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-09-27T21:28:19.1685513Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "51e79378-79b9-1ce9-d639-cc44a01e077e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2019-10-02T00:00:00Z", + "endDate": "2019-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "474496f7-56e1-4269-af63-4f8eb131ebb4", + "fulfillmentId": "45e937f2-27a8-4a72-8081-5d1ebe7a96bf", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T18:25:40.8835837Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "20d4a17f-5d56-78fb-b13d-7338901970de", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2019-10-02T00:00:00Z", + "endDate": "2019-11-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2de692e4-8997-4a9b-ad1a-71eac56a5fcf", + "fulfillmentId": "fd062f04-50be-4475-8c0c-abb297d9ae3f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T20:13:47.6674069Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "7900f905-19fe-0ff8-918a-86877cc6a965", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-2-8", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-03T00:00:00Z", + "endDate": "2019-11-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2a2c6320-f3df-4644-b071-a436d9d47f45", + "fulfillmentId": "87b17d81-80e1-45b5-aa6b-cc24a40b06f6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-02T22:10:58.5885306Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "133645f3-bf13-9787-1076-80262001b3ad", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk test 10-4-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2020-02-04T00:00:00Z", + "endDate": "2020-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "85cb5bd7-37c1-4257-9ae7-a821959282f5", + "fulfillmentId": "7535d4c0-89f1-4cf4-9ee0-e3b9900a8383", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-04T15:32:58.2408298Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "c9135678-6e1c-f6a4-5450-0068694aca7b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d9673e82-fce5-4307-a1ff-d1f8953fccac", + "fulfillmentId": "2b9b6a26-d1d1-4adf-a912-9bfad91d1124", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T17:23:23.0499919Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "93e7fbe3-f1a1-a9c5-ef04-8db4d94a2827", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4a720939-4f57-4dda-8ff8-ba9faedde64a", + "fulfillmentId": "f8d1da1f-1b37-416a-84a7-dfa7e6d76309", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T21:31:40.2105383Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "27b1e427-fb24-4954-7a74-e5be7758dcbc", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test8", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "startDate": "2019-10-16T00:00:00Z", + "endDate": "2019-11-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "842ba675-a554-49ff-9531-de59245fb175", + "fulfillmentId": "86c9200e-1329-4d19-adbc-9b605b1d6f0d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T23:25:04.426565Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "202f4df3-0782-266b-112f-19cd2302b137", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test9", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "35d5914d-d403-4979-9849-8a529a124201", + "fulfillmentId": "25b2d129-dc8f-48d8-8046-c89df30597a7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-16T23:26:26.6882239Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "8825a024-7b90-462d-b553-4c4ef5d4a26c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test11", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "startDate": "2019-11-18T00:00:00Z", + "endDate": "2019-12-17T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4092e992-efee-4116-8030-6b6a98eef483", + "fulfillmentId": "f7e98a67-b62d-44fb-a9b6-9c918c550b9e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-18T15:14:43.9406219Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "6a155332-58e7-5215-1e2f-b66f51951265", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "Ercenk 10-31-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b7c7637e-b63a-4ffa-a9b1-9b3f445480ee", + "fulfillmentId": "58ffd3e8-af8d-434e-b097-03f600d7ef28", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-31T18:24:33.2401664Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "dab7a6b2-21f3-88e5-973d-24dd36117caf", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test-15", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "95b671e8-a517-4c23-b32f-391e7c009537", + "fulfillmentId": "54431aaa-956a-4e21-a71c-b343f79f28b7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-10-31T22:40:22.6700735Z", + "lastModified": "2020-11-03T20:01:50.3817106Z", + "sessionMode": "None" + }, + { + "id": "2565700c-7a39-8405-a0ee-0e26c2a59b44", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "ignite-demo-2019", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "pabutler@microsoft.com", + "objectId": "1bee5da7-8adb-498a-a626-55e6514901cc", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA001FC09" + }, + "purchaser": { + "emailId": "pabutler@microsoft.com", + "objectId": "1bee5da7-8adb-498a-a626-55e6514901cc", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA001FC09" + }, + "planId": "gold", + "term": { + "startDate": "2019-11-07T00:00:00Z", + "endDate": "2019-12-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "128c728c-6494-488f-91f2-cc0a5318950c", + "fulfillmentId": "cc87ee1b-ff77-4491-a5a8-f146fc3a67e8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-06T19:15:50.5679614Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "103a6d84-f329-bdb8-5911-527b2ef25617", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test17", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8f5559f1-3af2-4833-8e0e-b2de00f9a9eb", + "fulfillmentId": "01f9d24b-75c9-483d-b1fa-32653cfc16b9", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-06T21:50:37.1685056Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "c2e4da32-e6b4-931c-350f-3ee7db7b850f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 11-26-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "dc4d9b31-d0b3-400b-abde-1d0b6fa1549d", + "fulfillmentId": "987931de-e94e-4a8a-aa5c-7d030694fe01", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-11-26T22:50:36.6303547Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "3962e518-01ff-5a0e-7e6c-1ce5605fac7f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ignite Tour 1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "14cec05f-e277-4062-8239-076e42f69186", + "fulfillmentId": "ba33aeef-ec91-4f73-8841-f408fd07192c", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-05T12:15:01.4427932Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "46727429-3d81-1c32-f784-fdb7449d50fb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-test-qz", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "gold", + "term": { + "startDate": "2020-01-05T00:00:00Z", + "endDate": "2020-02-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "05948337-2e6f-40f8-96c2-f446c60f0d62", + "fulfillmentId": "bad2bc37-23be-4246-8af7-ba8ae4acdedb", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-05T15:06:58.6437872Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "47996a78-d824-a85e-ce33-4f7c0ab7f7f9", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 12-9-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-09T00:00:00Z", + "endDate": "2021-03-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "66bf8623-ac35-4853-969e-1937be491697", + "fulfillmentId": "d0b88763-124a-4f08-90ec-03266b6d19a5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-09T13:18:30.9138381Z", + "lastModified": "2021-02-09T10:56:54.980815Z", + "sessionMode": "None" + }, + { + "id": "9fed22ef-41bf-11f0-9d55-d31c74498fa6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-segasec", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2019-12-23T00:00:00Z", + "endDate": "2020-01-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "85ef110d-1d08-4a57-8dee-cf0a6bb9ecfd", + "fulfillmentId": "5c9c8502-1344-44c5-9960-5c4c60166ad8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-23T14:11:56.4507852Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "c5a4dd47-da25-d07d-df40-92c1ab247a42", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-tb", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-06T00:00:00Z", + "endDate": "2020-03-07T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6526dbdc-98b0-405b-b367-ef57e3f4a340", + "fulfillmentId": "85deb4d0-77ec-4132-9e4e-c6feec1b398b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2019-12-24T15:14:17.6834853Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "48aaa88e-5b55-c7a4-cee7-07633253f3fa", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-13T00:00:00Z", + "endDate": "2020-02-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a032f35b-1199-4783-9cab-c068c8d96d26", + "fulfillmentId": "aa3c9ac4-0641-441e-9d85-9893e3ee9603", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-13T18:04:08.0778063Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "bcf8f809-4a5c-0d7d-fb1b-e5ed636b0fe7", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk-1-14", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "gold", + "term": { + "startDate": "2020-01-14T00:00:00Z", + "endDate": "2020-02-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8f483010-b6fb-4d8b-a49e-a4e80f3b7b84", + "fulfillmentId": "378f6b12-c9aa-4b45-9a71-e1f687123d45", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-14T16:18:58.1852442Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "00a75c89-dd62-2ca9-f546-03dc4a3b3f8c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-29-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-29T00:00:00Z", + "endDate": "2020-02-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4cbcc5a9-7314-4569-8824-d03c6e05a610", + "fulfillmentId": "c62dd46f-a84c-46c9-8367-96b9c55b3e71", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-29T21:51:55.0416879Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "dbcb037b-ff0d-b7fe-6211-448b2bd648cb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "San Diego 1-30-2020-2", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-29T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "35897e2f-52f2-4a22-a4ac-4b2a4dc8253e", + "fulfillmentId": "8ef48fb7-1b0e-4383-a4bd-bca3eda27e07", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-30T19:28:43.0003529Z", + "lastModified": "2021-01-29T05:06:31.7062107Z", + "sessionMode": "None" + }, + { + "id": "adddedd4-0060-4173-19a7-90cd81a776c4", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 1-31-2020-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-01-31T00:00:00Z", + "endDate": "2020-02-28T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "063baad5-bc75-4109-ba08-348602b60384", + "fulfillmentId": "817dfca5-533c-411b-abe3-8a54b393cdc0", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-01-31T19:22:24.9352498Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "54d22657-8656-6a42-5436-226d4b26ba70", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-in", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-04T00:00:00Z", + "endDate": "2020-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a273ded6-25ac-43fb-acef-ed4355f4d9cf", + "fulfillmentId": "920b677a-71ac-433b-90ae-3747f7f0448b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-04T17:38:32.4904044Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "6a2fc44c-6895-552e-f788-41763223429e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 2-4-2020-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-04T00:00:00Z", + "endDate": "2020-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1af7afe8-331f-46a3-a0d4-a40c8ccd6cb2", + "fulfillmentId": "5567d985-c2b0-412a-930d-514ce8e1288e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-04T22:12:32.0336696Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "056d23c8-3333-e0fd-7961-648b1abe9d97", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-6-2020-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5c3ec148-accf-4ad6-ba59-64f10bc6a381", + "fulfillmentId": "09d7058f-2017-4908-b59d-8f083fcda40f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-06T18:36:44.2977874Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ddf3f70d-52a8-30cb-2017-3da07a05d1a6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-6-2020-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "01d9aaae-77e6-4ace-aa1b-8f3b9261c641", + "fulfillmentId": "8a469ae3-f67f-43be-9df5-38768cca3cc3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-06T18:52:08.463051Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "787feaf8-ea56-efda-f9fa-64f210c9f72a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-ec", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d87531a4-ed2e-433b-aafb-c5d24dcb284d", + "fulfillmentId": "14d97627-7ded-4594-b401-52669a65588e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-07T17:00:12.5089849Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "2d8c116c-2084-f74f-ee9b-aa7343ce40a1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-360", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10032000748AD514" + }, + "planId": "silver", + "term": { + "startDate": "2020-02-10T00:00:00Z", + "endDate": "2020-03-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "12996abe-b9ef-44e1-bb82-6d5e738aaea9", + "fulfillmentId": "8fc7ddbf-d78f-4aa2-950b-3fb742f6427d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-10T16:23:10.5352269Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "14c736f3-0586-5b60-dbc6-e677a1075d6e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk Redmond 2-13-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "base", + "term": { + "startDate": "2021-02-13T00:00:00Z", + "endDate": "2021-03-12T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a2bd388a-bba6-4cbc-98fa-515d4ee3ebe0", + "fulfillmentId": "a8fbc0ae-60dd-495c-87a3-dbd9e7f50b4f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-13T18:17:58.7971727Z", + "lastModified": "2021-02-13T04:25:20.8252684Z", + "sessionMode": "None" + }, + { + "id": "8bb94ade-e016-6f9c-ec0f-666a6aeda80b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Growth Enabled Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "6", + "0", + "2", + "8", + "f", + "1", + "-", + "3", + "4", + "a", + "e", + "b", + "7", + "c", + "d" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "6", + "0", + "2", + "8", + "f", + "1", + "-", + "3", + "4", + "a", + "e", + "b", + "7", + "c", + "d" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-02-25T00:00:00Z", + "endDate": "2020-03-24T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "27653640-3af6-4de2-977f-1f170a537076", + "fulfillmentId": "4e66e198-6c2c-4961-82da-1f97b552a88d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-24T18:18:35.2019798Z", + "lastModified": "2020-09-19T17:34:49.5380427Z", + "sessionMode": "None" + }, + { + "id": "954b6e7b-4371-0fa9-73b8-901eca0758c2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Erccenk 2-24-2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "platinum", + "term": { + "startDate": "2020-02-24T00:00:00Z", + "endDate": "2020-03-23T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9e8536c7-6a89-4332-ad7f-5c65a3efdf2a", + "fulfillmentId": "56f11235-a61c-4f7c-af83-591de8f24aad", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-24T20:23:18.9399952Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "792129dc-1b3b-89da-a2a9-208372649a9d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 2-28", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "8e6ae730-e0e1-4d38-8089-f5ec710d18ab", + "fulfillmentId": "24dfdb24-db60-4237-a350-7fa36b5bd0f4", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-02-28T20:25:01.3878893Z", + "lastModified": "2020-08-27T13:48:06.3778373Z", + "sessionMode": "None" + }, + { + "id": "178374fd-ce10-b439-55a4-3b87c38c2ce5", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 3-2-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D" + }, + "planId": "base", + "term": { + "startDate": "2021-02-02T00:00:00Z", + "endDate": "2021-03-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b5c83699-f2dc-4da8-92a2-cb010379d93c", + "fulfillmentId": "e205d9e7-aa18-441d-acf6-1670067348b7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-02T16:43:30.3063035Z", + "lastModified": "2021-02-08T18:10:24.3657561Z", + "sessionMode": "None" + }, + { + "id": "3089cf19-b652-e819-dbfc-360a3e148590", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Demo Instant Portal", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-basic", + "term": { + "startDate": "2020-03-03T00:00:00Z", + "endDate": "2020-04-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "725a3e3b-ee21-4eab-8c64-3e5918c7c11e", + "fulfillmentId": "91144c96-4956-4ea4-92f6-18ced7eb6e9f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-03T18:10:03.2337136Z", + "lastModified": "2020-09-19T17:37:49.5002685Z", + "sessionMode": "None" + }, + { + "id": "11e31da3-c990-6ab4-1f1d-7ab11bc4bb33", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "ScottsInstantPortal", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-03-05T00:00:00Z", + "endDate": "2020-04-04T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d61e7f10-c19b-469c-aae7-c6bfc6da6f01", + "fulfillmentId": "5e1253ee-563f-4997-84bd-3932abeff086", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-05T15:13:54.4488162Z", + "lastModified": "2020-09-19T17:35:00.7338534Z", + "sessionMode": "None" + }, + { + "id": "9d4d2f64-f6b9-5395-5374-4d2ebbad8346", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 9-3-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "platinum", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "047ef309-4712-4983-a71b-5bec2c13691b", + "fulfillmentId": "29d3cd28-6f1e-48d2-8718-2d0a286b2df1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-09T20:18:19.3122885Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "d6780cca-eea3-b05d-d5fb-48109a63a194", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "dc292cfd-f5e3-414c-8875-0994acb3a023", + "fulfillmentId": "db2a9958-dbe8-421c-aa4f-0aea24db0e2d", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-03-26T02:54:59.4123745Z", + "lastModified": "2020-09-19T17:35:09.7484556Z", + "sessionMode": "None" + }, + { + "id": "b352fef3-82f0-98e9-8257-14a741ef4b9b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-h", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-03T00:00:00Z", + "endDate": "2020-05-02T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "83ff1754-3bc5-48a8-aa75-703ef2d9a89e", + "fulfillmentId": "b53077d0-137d-4d2d-a27a-0354bb784ff7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-03T19:13:25.5873642Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "582d4da0-e2f4-2ad6-ebaf-6db216957823", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Lilliwaup 4-9-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9c8662ec-0fcd-4a72-b0ab-9670467a5158", + "fulfillmentId": "02ef63fd-2459-4337-839f-eb6fb0f37703", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T17:45:56.2936218Z", + "lastModified": "2020-10-07T15:37:10.3253056Z", + "sessionMode": "None" + }, + { + "id": "ae302cae-99d9-0918-8316-7cac30b99dd3", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-p", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-09T00:00:00Z", + "endDate": "2020-05-08T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "42cb07d3-8370-4867-b9dc-63f3748d7710", + "fulfillmentId": "56c12ce9-659b-416e-8bbf-776e71c1978f", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T18:38:05.8281311Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "266e0dcb-8e7e-ce25-853e-a21705d3d7be", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "248bf000-bbb4-4670-9770-281c528339b5", + "fulfillmentId": "3053f392-6fe7-49a5-8ff4-facdac7de450", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-09T23:40:30.887548Z", + "lastModified": "2021-02-09T22:57:20.5118236Z", + "sessionMode": "None" + }, + { + "id": "0f0dabfc-04b7-4a88-e6f8-3ce155aa392e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb-e", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "6c9764c1-fae1-4296-9144-ff3908561964", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-04-10T00:00:00Z", + "endDate": "2020-05-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "4bd565d1-db29-4917-953b-443b3dc3ca44", + "fulfillmentId": "74e47f73-8b3c-4267-b14b-b70ce37213b1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-10T00:27:59.438141Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "21c5f32f-730d-6e34-4b56-9d6fc140e175", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 4-15-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "2cbab651-fa8f-42f5-9001-fc7eb9e330d5", + "fulfillmentId": "7f4ec417-1799-466c-b9ab-6d40a8b3d948", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-15T20:52:31.5041269Z", + "lastModified": "2020-10-13T15:31:33.7717817Z", + "sessionMode": "None" + }, + { + "id": "fe2ed052-52d5-c9c4-bfe2-33fc14f8634a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-04-16T00:00:00Z", + "endDate": "2020-05-15T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1df45461-c76c-4c5d-a624-5538898a9f6b", + "fulfillmentId": "01eba8cf-c2db-4375-91a9-fe27ce84cdd7", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-16T22:00:46.3158344Z", + "lastModified": "2020-09-19T17:35:29.9956928Z", + "sessionMode": "None" + }, + { + "id": "11393530-a40c-9aa4-a8c3-3cf753a593fb", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk - 4-24-2020", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d789059a-bfac-4f0a-8fa5-e31abc8c1bd7", + "fulfillmentId": "e37c71b4-8fb8-404a-b49a-d3fbc0c906b8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-24T15:14:32.5506187Z", + "lastModified": "2020-11-27T14:54:55.3347667Z", + "sessionMode": "None" + }, + { + "id": "748f04dd-96cf-ef5b-a8e2-794f1d0e791c", + "publisherId": "testtestindustryexperiencestest", + "offerId": "ercsaastest1-preview", + "name": "sb", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "v-sanbom@microsoft.com", + "objectId": "20688948-5bcb-4b80-bc9d-4cb83b4e32fd", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "groupIds": [ + "9477a38d-64e6-408b-9b68-03123e57beef", + "c186fe21-c292-44b0-b6ef-dbec3ece6fb8", + "b5712c94-2327-46aa-83c5-c018a4b157c7", + "d7d39fe5-e7eb-4797-bd4b-e802e8fa26cc", + "65bba066-34ed-4720-9bab-dd3b2798073c", + "2b26abf5-3a69-4871-b93f-b52100932c08", + "71456846-5836-4543-a1ae-4269ba6de206", + "d2a26c91-62ca-4aee-8e73-3fc95bb05457", + "0353a503-cb90-401a-b7fc-06b65e1a42b6", + "f1e5a8fa-fdd0-4d38-8909-42fdd7c2f47f", + "5a1ec94c-0ac6-4a3e-a8a6-23d5f6a817c3", + "0e469544-cb9a-4596-9f15-dd2f1e967186", + "6c9764c1-fae1-4296-9144-ff3908561964", + "a9fa9258-ec7e-4783-8fa2-1f79669aae44", + "0587cbb9-18eb-47b4-bae8-537a21eb3c66", + "f7a9e0ab-04b9-46b2-b879-026ea8cedefc", + "d1c050b0-170b-4ccf-b1c1-a44091567619", + "43d3af59-48f0-4b08-932d-0a3e96b5aa7f", + "f7e9c4e0-33b6-4862-a66a-47b2bd8a8eea", + "e474e712-ac21-4dd9-93f6-43b0b6f05be4", + "27ce50e4-e9c5-4ad3-8a29-2be82eaf1945", + "800786aa-9be1-4630-a07e-868ff7581b87", + "9149e00d-0fae-431c-b72e-67c042ae2d35", + "d15bc7e1-75fa-45e2-ab81-24064bf2c696", + "9974d899-d73b-4324-b149-681868edc59e", + "d61f86db-2135-4d0d-86f1-da4c7e0f7227", + "daa4cf4d-b206-444d-94ce-e3d89287d603", + "986f4a28-bf0a-4dff-9412-a425c4239b2c", + "df4eda15-6bf7-43dc-8dff-7f88e04c1745", + "86802724-2f7d-4cd4-972a-55bcd63e2f7a", + "30907f22-48f0-45a2-9786-fd5263bb9de5", + "9d529d5e-b882-4ffb-a8e6-c4147c680735", + "be8ca378-bc74-46c1-b922-e7f552486ede", + "7e8fa32c-9841-4d08-b893-341c75a99ca2", + "5cf65559-1319-4f59-a3e8-46330ddcd035", + "cc021b18-532b-40cc-9328-9e73fd40c2af", + "e7c43d00-4200-44fe-8bdb-d48fc4841e2a", + "e9f5a2ff-5937-4d5e-83a6-14f0dfbf8baa", + "0d864676-7f55-4694-90f2-5b75eb77b342", + "17967d21-b30d-49ba-a987-8e2ca24cbc32", + "e8746e77-b22b-4d7f-a258-d9dcf4187eb3", + "96da890e-2a88-4c93-ab69-698d51310ccf", + "1edbe00c-07f8-41c1-8c0c-8ba58f3adffe", + "8f40af55-5617-43d0-8052-24488edd9d66", + "7ae220d9-d8fc-4b0d-8896-00076a48aa4f", + "42e59b17-1c53-4f3b-8d2a-b640bb7a7de6", + "2846190d-05dc-4048-90bc-7e236f34d84b", + "62edbd7b-8d46-4d2c-a5a1-da5b78ba1d38", + "62eceda4-05df-48aa-9dff-a8636461edd5", + "39084481-27f4-486b-af02-549dee49f15f" + ], + "puid": "10032000748AD514", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9fb9659b-de89-4fa6-bed5-7619c1533a70", + "fulfillmentId": "c8bfef7e-df44-4c51-a454-092f7a208c96", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-24T15:16:14.1301154Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "8db6cc41-8582-48b5-f34f-ad6d593801d1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "574341a8-7f8c-4e5e-b73f-c28e5b3cfc4a", + "fulfillmentId": "ccfb32c1-4435-4676-9ff9-0cc7ecc615a1", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-28T16:41:17.953134Z", + "lastModified": "2020-09-19T17:39:32.0907424Z", + "sessionMode": "None" + }, + { + "id": "5df83d96-4a8d-87b9-01c0-168e604a2568", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test again", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "7bbd3b81-6b1f-4ab8-9e51-0ce8e0d379b3", + "fulfillmentId": "bfe4e089-a6f3-4cf2-a3b3-af4559c73cd4", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-04-28T17:47:12.4446566Z", + "lastModified": "2020-09-19T17:39:44.1050117Z", + "sessionMode": "None" + }, + { + "id": "0d674eed-30ac-cb02-72aa-9e136c25c52d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Scott Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "42d4d70f-4855-4759-9be0-6b4783641404", + "fulfillmentId": "da7d140a-963c-4c3b-82ec-310a5ab53127", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-04T17:11:13.1780356Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "076d085b-e134-3fa6-e437-4be271213093", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Caddo Demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "e8da0f7e-9533-45d0-8b1b-f9561d287b94", + "fulfillmentId": "1949ba95-8c48-470a-8334-de2368a18032", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T10:46:55.549138Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "e6dc8589-6d2a-2009-0203-fa46d852ed5e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-6-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-05-06T00:00:00Z", + "endDate": "2020-06-05T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "5a2d0ea2-0a8e-4689-914c-b8c4fe6ad3fa", + "fulfillmentId": "be188537-c69f-4ce4-a4eb-25a2b4bfc72a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-06T22:24:02.1142811Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "39954d83-f920-204f-6e72-9fbfe23ee4d9", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-7-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-05-07T00:00:00Z", + "endDate": "2020-06-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "757dab5e-25a0-4e6f-878d-774c252a7266", + "fulfillmentId": "765239b5-b26c-4434-ad85-8c2191c6fdc8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-07T19:27:59.0839711Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "ed94de38-4440-959f-e4f5-8a57e80d604f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 5-11-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "429ad051-0352-402e-b197-f27a2c4f8c9b", + "fulfillmentId": "40061f03-a701-48ca-a1ff-f11fa98b84f5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-11T15:36:22.2336759Z", + "lastModified": "2021-02-11T11:23:24.9257264Z", + "sessionMode": "None" + }, + { + "id": "862ed180-7b20-f2e4-258b-858648aa3eec", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "ca194f23-9124-4585-9a77-a91606ed0857", + "fulfillmentId": "f6653a54-211b-47eb-b91e-6b9fab56dceb", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-11T22:14:56.3201112Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "18325528-7e4b-3f83-17bc-238e8bd2d04d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-12T00:00:00Z", + "endDate": "2020-06-11T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "afc3581d-5b4e-4e0a-9b6c-1af45892b14f", + "fulfillmentId": "d548fe70-fbbd-482a-8f30-7fa988603833", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-12T01:30:34.2047626Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "2ef7d61e-17cb-1acf-2813-b2a1755301b6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-05-18T00:00:00Z", + "endDate": "2020-06-17T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "612b163c-4a7d-4f29-add8-d5d11f90479a", + "fulfillmentId": "c572e53a-53c6-4f21-9589-1fa9a2fb84ee", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-18T14:54:14.616898Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "bac1bebd-bf04-16b2-8c8f-2b41a1d5a035", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "My Sample App", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "b420406f-4054-4a82-8418-a6bab4591fec", + "fulfillmentId": "88204014-6840-4a7f-813d-ca8c8e742477", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-05-26T13:55:16.347707Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "bfb11f15-a4fa-0b90-a7fd-3db10fd1d663", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 6-2-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "startDate": "2021-02-02T00:00:00Z", + "endDate": "2021-03-01T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "60498cff-e203-40eb-ada2-86ff8ceaf624", + "fulfillmentId": "93f54f6f-1f5a-4165-a087-5383818f1ed6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-02T14:20:20.3509299Z", + "lastModified": "2021-02-02T18:06:32.9612992Z", + "sessionMode": "None" + }, + { + "id": "58af0a52-b3ea-dfbb-3ed9-e4a3255d0ef2", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test-june4", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "64fa7886-ec87-4c34-9c91-88307b146c7b", + "fulfillmentId": "7b95a4ac-f900-47c1-8bb7-5cbdbedfa3a8", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-04T18:10:18.4373092Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "1cc9097d-f5ec-92e7-abc1-7bf4625b11d6", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "test", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-06-26T00:00:00Z", + "endDate": "2020-07-25T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "eac9aa78-6294-485f-af78-ddb311a082b9", + "fulfillmentId": "83ab4f6b-8c6d-4298-8863-da5c33f70055", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-06-26T13:42:40.873852Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "53d778c2-5d41-91d2-0ab9-7c53cffaac8b", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Telesign", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f", + "87913333-08ab-4f20-92d8-a9acabca9272" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-07-07T00:00:00Z", + "endDate": "2020-08-06T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "598e86e8-b0b9-4e08-a674-d3cc31d16037", + "fulfillmentId": "fe54da79-af45-43f9-8169-e2e28324c610", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-07T15:47:45.9312035Z", + "lastModified": "0001-01-01T00:00:00", + "sessionMode": "None" + }, + { + "id": "b95daeba-e264-117e-e7a3-b9e5b2a652ff", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7/7/2020", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "71d34168-d764-428c-afc9-5840ec0a31be", + "fulfillmentId": "66b7c138-8d33-44cb-8995-8c76b9642db3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-08T01:26:20.0662068Z", + "lastModified": "2020-07-31T23:01:48.2048392Z", + "sessionMode": "None" + }, + { + "id": "671a788a-dabf-6627-1be5-b1217eed4d69", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Erc 7 28 gold", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "gold", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3bf8711d-567b-4fcc-886b-0cc284b6b8c6", + "fulfillmentId": "04ffdcf1-d386-4867-9334-2bbdf24f6d37", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-28T15:25:57.3547397Z", + "lastModified": "2020-12-12T16:08:15.3783152Z", + "sessionMode": "None" + }, + { + "id": "1e4a679d-44e0-6ee5-81fb-23f9d0fa32ac", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 7 30 2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c6ec1c0b-a800-4902-a04b-a46c14e2d704", + "fulfillmentId": "123e81d4-b622-496d-848c-4a7c79a8f896", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-07-30T22:12:53.78487Z", + "lastModified": "2020-12-12T15:58:32.2940922Z", + "sessionMode": "None" + }, + { + "id": "b3bc8a0f-ba53-f15b-f119-73cc2e66aea1", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 8-6-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": true, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "3145fd39-51c9-4295-99f1-c296051da007", + "fulfillmentId": "ce50a05c-7975-4349-a501-4d2f91d7cb95", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-08-06T23:39:12.0161669Z", + "lastModified": "2020-12-15T14:22:44.0813143Z", + "sessionMode": "None" + }, + { + "id": "64d640d5-454a-316c-00d8-46554873c450", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmon 8018-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9312b0ba-cfd2-42c9-891e-800c94b941bf", + "fulfillmentId": "98cb2d43-2c9a-4bfa-adb9-10b20bd281ad", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-08-18T22:10:34.1484449Z", + "lastModified": "2020-12-20T10:34:51.6903872Z", + "sessionMode": "None" + }, + { + "id": "9d621ab1-aeaf-8d79-b037-343b8ed70889", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-17-5", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2020-09-17T00:00:00Z", + "endDate": "2020-10-16T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9281a2bb-5db0-4ea2-8c72-9106996cdf4c", + "fulfillmentId": "56b9ef1a-fe56-4a4b-9d59-3c615dc44563", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-17T23:31:36.8575367Z", + "lastModified": "2020-09-17T23:38:49.530404Z", + "sessionMode": "None" + }, + { + "id": "b669af0f-0bcf-2bdc-ef72-5c8b00e32561", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-21-3", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "public", + "term": { + "startDate": "2020-11-21T00:00:00Z", + "endDate": "2020-12-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "c115cf71-7bcd-4540-a8f6-01257e5cbedd", + "fulfillmentId": "dc4e0d12-5281-42de-97a1-9a9db9ebb8c2", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-21T19:19:02.4352998Z", + "lastModified": "2020-12-02T01:01:11.7822581Z", + "sessionMode": "None" + }, + { + "id": "ac6552d2-ba3c-5ffd-a325-10835a588c10", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "basic both", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "basic-monthly-or-annual", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "bc02797f-0e6e-4d13-baa9-2024cf849c95", + "fulfillmentId": "33ff3ae1-2976-4df8-b42b-e9b6e54f7c7b", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-22T00:06:10.2654988Z", + "lastModified": "2020-11-05T02:41:02.9509548Z", + "sessionMode": "None" + }, + { + "id": "998a5b53-db81-c106-6ce7-5c6b3c76f8ec", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "saas instant", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "startDate": "2020-09-23T00:00:00Z", + "endDate": "2020-10-22T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "a06f8a6b-d193-4892-9b34-3fb4d56e1ddf", + "fulfillmentId": "383514fa-40b8-406b-92be-67aef34ba4f3", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-23T16:22:40.119529Z", + "lastModified": "2020-09-23T23:07:03.6513647Z", + "sessionMode": "None" + }, + { + "id": "1a000db2-c566-9f91-def8-9494a07db2a4", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-24-1", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "76e2732a-c6ab-4ac3-b7ad-08a726d39436", + "fulfillmentId": "93b07356-3be9-4d85-b4ed-276dc9027e06", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-24T18:46:18.2049154Z", + "lastModified": "2020-12-22T06:54:51.6334568Z", + "sessionMode": "None" + }, + { + "id": "d4858928-ab63-0c43-9e57-6ddbf7b1cd5e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Ercenk 9-28-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-28T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9a051dd5-1eda-41e6-b81d-e6032cf3acba", + "fulfillmentId": "9433d91e-cb7d-4cfe-b9ab-73fa8b6b1888", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-09-28T15:33:34.6814947Z", + "lastModified": "2021-01-28T18:44:10.5019949Z", + "sessionMode": "None" + }, + { + "id": "ec7f3112-c7a2-ad22-834b-bfa5bb825200", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "DemoThursday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "6235cdca-adb1-4a47-b82f-98e8c4f5b213", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "072d3599-8236-4188-bf70-101631979523", + "fulfillmentId": "953002ad-467d-439c-8f9e-8239af964b66", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-01T14:58:27.0375421Z", + "lastModified": "2020-11-05T02:38:30.7645846Z", + "sessionMode": "None" + }, + { + "id": "8d938fd4-af0f-2f87-849e-1bfc66b1647d", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-instant-portal-preview", + "name": "Backup demo", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "instant-portal-standard", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "184a38e8-ee00-4c37-88b0-313bb187e249", + "fulfillmentId": "de845e1c-5630-4e05-995d-b19fa4faf46a", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-02T00:00:38.953711Z", + "lastModified": "2020-10-29T23:22:41.794778Z", + "sessionMode": "None" + }, + { + "id": "057f69d0-f254-45e5-5d9a-14c234c3168a", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "test2", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "unlimited-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "9596a235-884b-4a68-99a1-9170023dbb82", + "fulfillmentId": "38219052-2bc4-40af-849f-84c05e0898bb", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-27T21:15:34.4994262Z", + "lastModified": "2020-10-30T01:17:44.4108027Z", + "quantity": 195, + "sessionMode": "None" + }, + { + "id": "8f647612-8c03-cf6c-a3f6-e4afacd6b3fe", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond 10-29-1", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "silver", + "term": { + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6545d221-c2cf-4027-b411-6e971477a195", + "fulfillmentId": "227367a6-d868-45c6-b06a-16d60416b2d6", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-29T14:09:59.8172835Z", + "lastModified": "2021-02-14T18:57:22.4601469Z", + "sessionMode": "None" + }, + { + "id": "349c5169-2891-841d-6cc9-01b07f5bf83f", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "authtest", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "unlimited-basic", + "term": { + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "1873fc24-447f-4bd5-8978-aadbf23cc0ea", + "fulfillmentId": "9428146f-15d9-40b2-932f-92527ff302d5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-10-29T16:57:12.3342404Z", + "lastModified": "2020-10-29T22:28:37.7662927Z", + "quantity": 199, + "sessionMode": "None" + }, + { + "id": "5c5e448f-c5f7-0919-57a6-dd806dd76fa9", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "Test for Thursday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/" + }, + "planId": "standard", + "term": { + "startDate": "2020-12-10T00:00:00Z", + "endDate": "2021-01-09T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6226a5c9-79f7-4b36-9c1e-4fd4640664ca", + "fulfillmentId": "b5e5d341-93e2-49c1-86ea-f4711d94b6f5", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-10T16:23:07.7808932Z", + "lastModified": "2021-01-06T16:59:05.0045003Z", + "quantity": 200, + "sessionMode": "None" + }, + { + "id": "52621e2d-f569-4d23-cd0c-9b0e3ffd7f07", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond1223", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:48064" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:48064" + }, + "planId": "gold", + "term": { + "startDate": "2020-12-23T00:00:00Z", + "endDate": "2021-12-22T00:00:00Z", + "termUnit": "P1Y" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "fab590aa-eca0-4213-a8c7-6ef6200d4c5e", + "fulfillmentId": "2d1d3698-d85c-4eda-b2ff-0ce7ee1e472e", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2020-12-23T16:30:53.3515912Z", + "lastModified": "2020-12-23T16:48:16.4325035Z", + "sessionMode": "None" + }, + { + "id": "f4b649a7-714a-09af-b27f-bde46b71ea6e", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-users-meters-preview", + "name": "Demo Friday", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:26304" + }, + "purchaser": { + "emailId": "scseely@microsoft.com", + "objectId": "5a6679ea-4ace-4572-9d17-af40f85a9ae3", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "91fe0e60-031a-4190-b975-b4ae40b82b4f" + ], + "puid": "10030000A832AAAA", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.153.6:26304" + }, + "planId": "basic", + "term": { + "startDate": "2021-01-15T00:00:00Z", + "endDate": "2021-02-14T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "019b9074-421f-495a-bb90-95813b61fa7f", + "fulfillmentId": "ce023c15-8f0d-4151-8b4a-2d7f2baa1456", + "storeFront": "AzurePortal", + "sandboxType": "None", + "created": "2021-01-15T20:14:13.588201Z", + "lastModified": "2021-01-20T20:58:02.8312235Z", + "quantity": 100, + "sessionMode": "None" + }, + { + "id": "74dae307-66c0-70a9-1697-11c2afac64e4", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond1292", + "saasSubscriptionStatus": "Unsubscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18432" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18432" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-29T00:00:00Z", + "endDate": "2021-02-27T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "d4c5dd75-8122-4596-abed-ac55fee791d4", + "fulfillmentId": "44471a2e-8763-4e12-8524-d3e5d1f6ab94", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-01-29T21:39:09.5744025Z", + "lastModified": "2021-02-09T15:25:01.2941457Z", + "sessionMode": "None" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "450145490" + } +} \ No newline at end of file diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json index 45c5050..a8b9cf6 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "894d953e-2903-29c1-1b1c-5caef6e2ce28", "x-ms-return-client-request-id": "true" @@ -16,19 +16,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "83978", + "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:05 GMT", - "ETag": "\u0022e32c5540-69aa-468e-a793-4eeae1d10df0\u0022", - "Server": "Microsoft-IIS/10.0", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u0022c2d88805-fb5b-4d16-8574-3a56231fa6e9\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "x-content-type-options": "nosniff", - "x-ms-activityid": "fba417d4-82c9-4175-8a6a-8cfc94637737", - "x-ms-correlationid": "98939032-1d32-4852-83b6-73a723ec3b3a", - "x-ms-requestid": "98939032-1d32-4852-83b6-73a723ec3b3a", + "X-Azure-Ref": "0rBUwYAAAAADFKrQkv1vSQYXP\u002BjfmIClKV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "a893c7d2-2474-4f35-9792-ff539c95a596", + "x-ms-correlationid": "2708f0a5-f42d-4307-82f0-61b1f4a56dc9", + "x-ms-requestid": "2708f0a5-f42d-4307-82f0-61b1f4a56dc9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,8 +133,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -150,7 +150,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T17:41:07.1576845Z", - "lastModified": "2021-02-01T22:33:27.6541116Z", + "lastModified": "2021-02-11T21:56:01.1229201Z", "sessionMode": "None" }, { @@ -1859,8 +1859,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-12T00:00:00Z", - "endDate": "2021-02-11T00:00:00Z", + "startDate": "2021-02-12T00:00:00Z", + "endDate": "2021-03-11T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -1876,7 +1876,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-29T19:24:46.8480754Z", - "lastModified": "2021-01-12T18:15:04.5716647Z", + "lastModified": "2021-02-12T04:17:22.9227318Z", "sessionMode": "None" }, { @@ -2009,8 +2009,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2026,7 +2026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T15:48:58.5963255Z", - "lastModified": "2021-01-11T00:01:33.4511326Z", + "lastModified": "2021-02-11T02:18:11.7678927Z", "sessionMode": "None" }, { @@ -2267,8 +2267,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2284,7 +2284,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T18:12:41.5561984Z", - "lastModified": "2021-01-11T21:25:38.6063496Z", + "lastModified": "2021-02-11T21:19:06.6443612Z", "sessionMode": "None" }, { @@ -2998,6 +2998,62 @@ "created": "2021-01-22T17:46:42.8121831Z", "lastModified": "2021-01-22T17:56:35.4880589Z", "sessionMode": "None" + }, + { + "id": "489f64b6-98ec-a062-a8b4-5367484d1d14", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "test", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "purchaser": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0", + "fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-02-04T17:29:21.8405148Z", + "lastModified": "2021-02-04T17:32:19.0300527Z", + "sessionMode": "None" } ], "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" @@ -3011,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "918d903c-5bd9-e5bd-2fc6-4adfa1e48710", "x-ms-return-client-request-id": "true" @@ -3019,15 +3075,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "89604", + "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:05 GMT", - "ETag": "\u0022e30caa63-73a6-4108-8f2a-93e45ebbaf52\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "2b1bb462-77fa-4c44-bd77-3ba33e4d2a32", - "x-ms-correlationid": "faacb24b-c272-4821-b188-242593f289bb", - "x-ms-requestid": "faacb24b-c272-4821-b188-242593f289bb", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u0022fe8a727c-81ed-4222-bcef-69a12b4c5f29\u0022", + "X-Azure-Ref": "0rBUwYAAAAAAdjJLIM86nT4SU8MhMHLAUV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "6868d6ea-0361-4b4e-a95c-b4c4a1a064f5", + "x-ms-correlationid": "df998c77-583a-40d4-af8c-1de6662a8df6", + "x-ms-requestid": "df998c77-583a-40d4-af8c-1de6662a8df6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5548,8 +5604,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5565,7 +5621,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T19:13:14.9763056Z", - "lastModified": "2021-01-11T13:45:22.9808889Z", + "lastModified": "2021-02-11T13:18:00.464219Z", "sessionMode": "None" }, { @@ -6274,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "65724a3f-3d55-ce4f-3ec2-86a2f8d8e0f9", "x-ms-return-client-request-id": "true" @@ -6282,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118394", + "Content-Length": "118383", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:05 GMT", - "ETag": "\u0022ca6c25ac-3707-413d-8bdf-f19bbb6e6808\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "e983d805-ac3c-4d8a-a33c-8b0bec847c7b", - "x-ms-correlationid": "f76e6170-0ec7-4e43-9c13-601c210e4f4a", - "x-ms-requestid": "f76e6170-0ec7-4e43-9c13-601c210e4f4a", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u00222a6348f6-7921-4478-9159-e81d567212ee\u0022", + "X-Azure-Ref": "0rBUwYAAAAAClb0GvlAlZQpU/Ctcdv3lgV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "17bb8a2d-92ff-4e17-8304-8beac9edadf8", + "x-ms-correlationid": "d4a6654c-0cf5-4d8d-ae72-81e51b0e1aec", + "x-ms-requestid": "d4a6654c-0cf5-4d8d-ae72-81e51b0e1aec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6515,8 +6571,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -6532,7 +6588,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T16:51:35.2238173Z", - "lastModified": "2021-01-07T21:16:38.0056464Z", + "lastModified": "2021-02-07T17:36:47.4081955Z", "sessionMode": "None" }, { @@ -8825,8 +8881,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8842,7 +8898,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-07T15:38:39.5264795Z", - "lastModified": "2021-01-07T13:24:33.1506448Z", + "lastModified": "2021-02-07T19:42:33.5592454Z", "sessionMode": "None" }, { @@ -8894,7 +8950,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T23:19:04.6687978Z", - "lastModified": "2021-01-11T21:23:34.7767656Z", + "lastModified": "2021-02-11T02:13:53.2938907Z", "sessionMode": "None" }, { @@ -9623,8 +9679,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9640,7 +9696,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-21T17:52:54.0642703Z", - "lastModified": "2021-01-21T18:57:17.9829907Z", + "lastModified": "2021-02-14T02:51:35.1862122Z", "sessionMode": "None" }, { @@ -9667,8 +9723,8 @@ }, "planId": "public", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9684,7 +9740,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T18:10:33.2525465Z", - "lastModified": "2021-01-14T20:06:23.9230469Z", + "lastModified": "2021-02-14T14:48:21.1638543Z", "sessionMode": "None" }, { @@ -9711,8 +9767,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9728,7 +9784,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T21:11:58.5885238Z", - "lastModified": "2021-01-14T22:32:18.8778354Z", + "lastModified": "2021-02-14T12:33:52.5867286Z", "sessionMode": "None" }, { @@ -9861,8 +9917,8 @@ }, "planId": "instant-portal-standard", "term": { - "startDate": "2021-01-05T00:00:00Z", - "endDate": "2021-02-04T00:00:00Z", + "startDate": "2021-02-05T00:00:00Z", + "endDate": "2021-03-04T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9878,7 +9934,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-05T02:42:08.2082173Z", - "lastModified": "2021-01-05T15:02:26.6216391Z", + "lastModified": "2021-02-05T08:37:15.6026716Z", "sessionMode": "None" }, { @@ -9957,8 +10013,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-19T00:00:00Z", - "endDate": "2021-02-18T00:00:00Z", + "startDate": "2021-02-19T00:00:00Z", + "endDate": "2021-03-18T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9974,7 +10030,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-19T17:49:25.4024396Z", - "lastModified": "2021-01-19T08:07:38.8873732Z", + "lastModified": "2021-02-19T02:01:09.0269304Z", "sessionMode": "None" }, { @@ -10334,7 +10390,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "redmond115", - "saasSubscriptionStatus": "PendingFulfillmentStart", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@hotmail.com", "objectId": "d2858116-704b-480d-acf8-340adbab114f", @@ -10376,7 +10432,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2021-01-15T22:01:18.6098849Z", - "lastModified": "2021-01-15T22:01:22.5319981Z", + "lastModified": "2021-02-15T06:27:41.7806117Z", "sessionMode": "None" }, { @@ -10481,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "579f52d4-2172-81bb-5bf1-9ebeba550405", "x-ms-return-client-request-id": "true" @@ -10491,13 +10547,13 @@ "ResponseHeaders": { "Content-Length": "97842", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:05 GMT", - "ETag": "\u002206952062-b2c4-4ca5-a5a9-a7a61ed06384\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "f4f580f9-fefb-4e17-a194-8cd7c0235d58", - "x-ms-correlationid": "785b1515-e43f-4f99-bc01-c7b43e237b1c", - "x-ms-requestid": "785b1515-e43f-4f99-bc01-c7b43e237b1c", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u0022c62ebabe-d80f-4505-8e8d-2749b4d08d17\u0022", + "X-Azure-Ref": "0rBUwYAAAAACgLDKbDZcaQIgwd8uVz5VkV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "041a2752-7236-47cb-af7d-7f86f98c16eb", + "x-ms-correlationid": "70df7bd3-74e2-43a2-b803-9da844f1c422", + "x-ms-requestid": "70df7bd3-74e2-43a2-b803-9da844f1c422", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13066,8 +13122,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-10T00:00:00Z", - "endDate": "2021-02-09T00:00:00Z", + "startDate": "2021-02-10T00:00:00Z", + "endDate": "2021-03-09T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13083,7 +13139,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-10T16:29:54.8329451Z", - "lastModified": "2021-01-10T18:15:18.1894662Z", + "lastModified": "2021-02-10T03:47:57.9818166Z", "sessionMode": "None" }, { @@ -13154,8 +13210,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13171,7 +13227,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-14T23:24:49.8054763Z", - "lastModified": "2021-01-14T18:31:57.2401121Z", + "lastModified": "2021-02-14T20:46:24.2746881Z", "sessionMode": "None" }, { @@ -13198,8 +13254,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-15T00:00:00Z", - "endDate": "2021-02-14T00:00:00Z", + "startDate": "2021-02-15T00:00:00Z", + "endDate": "2021-03-14T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13215,7 +13271,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-15T19:47:31.1572826Z", - "lastModified": "2021-01-15T12:34:41.6980612Z", + "lastModified": "2021-02-15T11:35:56.7024853Z", "sessionMode": "None" }, { @@ -13426,8 +13482,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13443,7 +13499,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-28T17:32:17.3885671Z", - "lastModified": "2021-01-14T02:02:09.9020713Z", + "lastModified": "2021-02-14T13:03:16.3618579Z", "sessionMode": "None" }, { @@ -13821,7 +13877,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-01-20T18:30:26.4474061Z", + "lastModified": "2021-02-13T06:06:32.6033421Z", "sessionMode": "None" }, { @@ -13934,7 +13990,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "a6ce2542-8939-8887-f8b2-307261d34144", "x-ms-return-client-request-id": "true" @@ -13942,15 +13998,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "115879", + "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:05 GMT", - "ETag": "\u0022ffd5efdd-c362-4087-993b-1c0c2e943b6c\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "6a049079-6ef8-42ea-8304-27245a22c91a", - "x-ms-correlationid": "f7e5e909-0d9f-4a32-b146-bc77c80eec13", - "x-ms-requestid": "f7e5e909-0d9f-4a32-b146-bc77c80eec13", + "Date": "Fri, 19 Feb 2021 19:46:51 GMT", + "ETag": "\u0022c62e524b-28c7-4f95-8439-b05554dff04f\u0022", + "X-Azure-Ref": "0rBUwYAAAAABr8J2cknDsT74ibxz739lwV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "22cd3965-fb3e-4da0-95ad-643249064963", + "x-ms-correlationid": "000b2d28-ae6a-4777-bb53-a3711ad0ab6b", + "x-ms-requestid": "000b2d28-ae6a-4777-bb53-a3711ad0ab6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14683,8 +14739,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-09T00:00:00Z", - "endDate": "2021-02-08T00:00:00Z", + "startDate": "2021-02-09T00:00:00Z", + "endDate": "2021-03-08T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -14700,7 +14756,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-12-09T13:18:30.9138381Z", - "lastModified": "2021-01-09T22:58:42.1164947Z", + "lastModified": "2021-02-09T10:56:54.980815Z", "sessionMode": "None" }, { @@ -15237,8 +15293,8 @@ }, "planId": "base", "term": { - "startDate": "2021-01-13T00:00:00Z", - "endDate": "2021-02-12T00:00:00Z", + "startDate": "2021-02-13T00:00:00Z", + "endDate": "2021-03-12T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -15254,7 +15310,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-02-13T18:17:58.7971727Z", - "lastModified": "2021-01-13T19:41:10.283823Z", + "lastModified": "2021-02-13T04:25:20.8252684Z", "sessionMode": "None" }, { @@ -15414,7 +15470,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond 3-2-1", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -15446,7 +15502,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-03-02T16:43:30.3063035Z", - "lastModified": "2021-02-02T18:18:19.1298285Z", + "lastModified": "2021-02-08T18:10:24.3657561Z", "sessionMode": "None" }, { @@ -15970,7 +16026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-09T23:40:30.887548Z", - "lastModified": "2021-01-09T11:39:50.1911926Z", + "lastModified": "2021-02-09T22:57:20.5118236Z", "sessionMode": "None" }, { @@ -16703,8 +16759,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -16720,7 +16776,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T15:36:22.2336759Z", - "lastModified": "2021-01-11T14:02:04.8101096Z", + "lastModified": "2021-02-11T11:23:24.9257264Z", "sessionMode": "None" }, { @@ -17786,8 +17842,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -17803,7 +17859,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-29T14:09:59.8172835Z", - "lastModified": "2021-01-14T02:19:03.7107539Z", + "lastModified": "2021-02-14T18:57:22.4601469Z", "sessionMode": "None" }, { @@ -18016,7 +18072,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond1292", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -18054,7 +18110,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-29T21:39:09.5744025Z", - "lastModified": "2021-01-29T21:48:16.511869Z", + "lastModified": "2021-02-09T15:25:01.2941457Z", "sessionMode": "None" } ] diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json index 088444d..1476f56 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "6596abeb-4c02-35df-260a-560791625415", "x-ms-return-client-request-id": "true" @@ -16,19 +16,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "83978", + "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:07 GMT", - "ETag": "\u0022d7b334c6-2b98-4be4-aaf4-3308f0d374a5\u0022", - "Server": "Microsoft-IIS/10.0", + "Date": "Fri, 19 Feb 2021 19:46:53 GMT", + "ETag": "\u0022a76d220a-1c88-4875-a6c3-826c29113f73\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "x-content-type-options": "nosniff", - "x-ms-activityid": "24303518-26f7-4b34-bc02-1861bd1b6edc", - "x-ms-correlationid": "79349b03-cd34-4dc5-8fae-b10021bd5999", - "x-ms-requestid": "79349b03-cd34-4dc5-8fae-b10021bd5999", + "X-Azure-Ref": "0rBUwYAAAAABVc84L10c7RZw2Atdy965DV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "ff6b2731-4bf2-499c-a201-064901368873", + "x-ms-correlationid": "d29fdd14-dad3-4c93-8627-0d143242aa0c", + "x-ms-requestid": "d29fdd14-dad3-4c93-8627-0d143242aa0c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,8 +133,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -150,7 +150,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T17:41:07.1576845Z", - "lastModified": "2021-02-01T22:33:27.6541116Z", + "lastModified": "2021-02-11T21:56:01.1229201Z", "sessionMode": "None" }, { @@ -1859,8 +1859,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-12T00:00:00Z", - "endDate": "2021-02-11T00:00:00Z", + "startDate": "2021-02-12T00:00:00Z", + "endDate": "2021-03-11T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -1876,7 +1876,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-29T19:24:46.8480754Z", - "lastModified": "2021-01-12T18:15:04.5716647Z", + "lastModified": "2021-02-12T04:17:22.9227318Z", "sessionMode": "None" }, { @@ -2009,8 +2009,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2026,7 +2026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T15:48:58.5963255Z", - "lastModified": "2021-01-11T00:01:33.4511326Z", + "lastModified": "2021-02-11T02:18:11.7678927Z", "sessionMode": "None" }, { @@ -2267,8 +2267,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2284,7 +2284,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T18:12:41.5561984Z", - "lastModified": "2021-01-11T21:25:38.6063496Z", + "lastModified": "2021-02-11T21:19:06.6443612Z", "sessionMode": "None" }, { @@ -2998,6 +2998,62 @@ "created": "2021-01-22T17:46:42.8121831Z", "lastModified": "2021-01-22T17:56:35.4880589Z", "sessionMode": "None" + }, + { + "id": "489f64b6-98ec-a062-a8b4-5367484d1d14", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "test", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "purchaser": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0", + "fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-02-04T17:29:21.8405148Z", + "lastModified": "2021-02-04T17:32:19.0300527Z", + "sessionMode": "None" } ], "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" @@ -3011,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "35134656-b675-f417-f50a-9c458168dee5", "x-ms-return-client-request-id": "true" @@ -3019,15 +3075,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "89604", + "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:07 GMT", - "ETag": "\u0022ae0b3e00-ef71-4556-b60e-8b304d5bd2b1\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "e12dd2a3-4d33-4d69-ad9a-edbe55222d1f", - "x-ms-correlationid": "5540febf-ac92-42fb-b617-2287745ab01b", - "x-ms-requestid": "5540febf-ac92-42fb-b617-2287745ab01b", + "Date": "Fri, 19 Feb 2021 19:46:53 GMT", + "ETag": "\u0022b68471ee-847d-4ced-a47a-0c11cd6fb61d\u0022", + "X-Azure-Ref": "0rRUwYAAAAACwf\u002Bqdelz2QpnYG\u002BfaNXPSV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "153b2dc4-aaa9-439f-b576-7f0a6a443da1", + "x-ms-correlationid": "b1372558-4c57-4368-a798-a125738554a3", + "x-ms-requestid": "b1372558-4c57-4368-a798-a125738554a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5548,8 +5604,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5565,7 +5621,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T19:13:14.9763056Z", - "lastModified": "2021-01-11T13:45:22.9808889Z", + "lastModified": "2021-02-11T13:18:00.464219Z", "sessionMode": "None" }, { @@ -6274,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "4bb0ac04-1e4f-0ba0-b09c-745fff37f6bb", "x-ms-return-client-request-id": "true" @@ -6282,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118394", + "Content-Length": "118383", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:07 GMT", - "ETag": "\u0022699d2d51-69c0-48e3-8930-bbcb2d3de220\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "56a54dcd-ca82-4c25-a0e5-9241f646e012", - "x-ms-correlationid": "906c5b1f-63d3-4312-bead-a99e163a7332", - "x-ms-requestid": "906c5b1f-63d3-4312-bead-a99e163a7332", + "Date": "Fri, 19 Feb 2021 19:46:53 GMT", + "ETag": "\u0022d49e6013-1bf8-4dcc-bdd3-cefb33e289dd\u0022", + "X-Azure-Ref": "0rRUwYAAAAACvzh6xdEnTT5gxP0aF/exfV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "609fa0ea-acc6-42d4-80e9-a2012bd02762", + "x-ms-correlationid": "71a36f80-1013-485a-b53f-f5c25111d99d", + "x-ms-requestid": "71a36f80-1013-485a-b53f-f5c25111d99d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6515,8 +6571,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -6532,7 +6588,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T16:51:35.2238173Z", - "lastModified": "2021-01-07T21:16:38.0056464Z", + "lastModified": "2021-02-07T17:36:47.4081955Z", "sessionMode": "None" }, { @@ -8825,8 +8881,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8842,7 +8898,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-07T15:38:39.5264795Z", - "lastModified": "2021-01-07T13:24:33.1506448Z", + "lastModified": "2021-02-07T19:42:33.5592454Z", "sessionMode": "None" }, { @@ -8894,7 +8950,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T23:19:04.6687978Z", - "lastModified": "2021-01-11T21:23:34.7767656Z", + "lastModified": "2021-02-11T02:13:53.2938907Z", "sessionMode": "None" }, { @@ -9623,8 +9679,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9640,7 +9696,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-21T17:52:54.0642703Z", - "lastModified": "2021-01-21T18:57:17.9829907Z", + "lastModified": "2021-02-14T02:51:35.1862122Z", "sessionMode": "None" }, { @@ -9667,8 +9723,8 @@ }, "planId": "public", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9684,7 +9740,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T18:10:33.2525465Z", - "lastModified": "2021-01-14T20:06:23.9230469Z", + "lastModified": "2021-02-14T14:48:21.1638543Z", "sessionMode": "None" }, { @@ -9711,8 +9767,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9728,7 +9784,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T21:11:58.5885238Z", - "lastModified": "2021-01-14T22:32:18.8778354Z", + "lastModified": "2021-02-14T12:33:52.5867286Z", "sessionMode": "None" }, { @@ -9861,8 +9917,8 @@ }, "planId": "instant-portal-standard", "term": { - "startDate": "2021-01-05T00:00:00Z", - "endDate": "2021-02-04T00:00:00Z", + "startDate": "2021-02-05T00:00:00Z", + "endDate": "2021-03-04T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9878,7 +9934,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-05T02:42:08.2082173Z", - "lastModified": "2021-01-05T15:02:26.6216391Z", + "lastModified": "2021-02-05T08:37:15.6026716Z", "sessionMode": "None" }, { @@ -9957,8 +10013,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-19T00:00:00Z", - "endDate": "2021-02-18T00:00:00Z", + "startDate": "2021-02-19T00:00:00Z", + "endDate": "2021-03-18T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9974,7 +10030,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-19T17:49:25.4024396Z", - "lastModified": "2021-01-19T08:07:38.8873732Z", + "lastModified": "2021-02-19T02:01:09.0269304Z", "sessionMode": "None" }, { @@ -10334,7 +10390,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "redmond115", - "saasSubscriptionStatus": "PendingFulfillmentStart", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@hotmail.com", "objectId": "d2858116-704b-480d-acf8-340adbab114f", @@ -10376,7 +10432,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2021-01-15T22:01:18.6098849Z", - "lastModified": "2021-01-15T22:01:22.5319981Z", + "lastModified": "2021-02-15T06:27:41.7806117Z", "sessionMode": "None" }, { @@ -10481,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "d440bbe0-93b7-e396-1caf-a23fda504ff7", "x-ms-return-client-request-id": "true" @@ -10491,13 +10547,13 @@ "ResponseHeaders": { "Content-Length": "97842", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:07 GMT", - "ETag": "\u002214d2d310-a689-42f2-9e1d-605f396678a4\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "2923f8f0-259c-48fd-b44a-7be496aec9d8", - "x-ms-correlationid": "9133b7d9-4cb8-4fae-81c2-5eae76402226", - "x-ms-requestid": "9133b7d9-4cb8-4fae-81c2-5eae76402226", + "Date": "Fri, 19 Feb 2021 19:46:53 GMT", + "ETag": "\u00222798a004-062b-49f6-b46d-fce384f9e534\u0022", + "X-Azure-Ref": "0rRUwYAAAAABYmjpx89yiTISR1v/igvtTV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "9bb614c7-65f3-4360-9d06-4b5575411509", + "x-ms-correlationid": "f6e21663-eb7d-4e69-bd11-96cb80f25df6", + "x-ms-requestid": "f6e21663-eb7d-4e69-bd11-96cb80f25df6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13066,8 +13122,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-10T00:00:00Z", - "endDate": "2021-02-09T00:00:00Z", + "startDate": "2021-02-10T00:00:00Z", + "endDate": "2021-03-09T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13083,7 +13139,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-10T16:29:54.8329451Z", - "lastModified": "2021-01-10T18:15:18.1894662Z", + "lastModified": "2021-02-10T03:47:57.9818166Z", "sessionMode": "None" }, { @@ -13154,8 +13210,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13171,7 +13227,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-14T23:24:49.8054763Z", - "lastModified": "2021-01-14T18:31:57.2401121Z", + "lastModified": "2021-02-14T20:46:24.2746881Z", "sessionMode": "None" }, { @@ -13198,8 +13254,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-15T00:00:00Z", - "endDate": "2021-02-14T00:00:00Z", + "startDate": "2021-02-15T00:00:00Z", + "endDate": "2021-03-14T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13215,7 +13271,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-15T19:47:31.1572826Z", - "lastModified": "2021-01-15T12:34:41.6980612Z", + "lastModified": "2021-02-15T11:35:56.7024853Z", "sessionMode": "None" }, { @@ -13426,8 +13482,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13443,7 +13499,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-28T17:32:17.3885671Z", - "lastModified": "2021-01-14T02:02:09.9020713Z", + "lastModified": "2021-02-14T13:03:16.3618579Z", "sessionMode": "None" }, { @@ -13821,7 +13877,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-01-20T18:30:26.4474061Z", + "lastModified": "2021-02-13T06:06:32.6033421Z", "sessionMode": "None" }, { @@ -13934,7 +13990,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "437e3869-21f6-7103-0d3f-33da108d2d45", "x-ms-return-client-request-id": "true" @@ -13942,15 +13998,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "115879", + "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:07 GMT", - "ETag": "\u00224509ec66-c5bf-4434-8f23-d4874c719259\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "88eb0d13-8bb0-4cf5-8895-60509db24394", - "x-ms-correlationid": "61dc4d92-8504-4c86-b878-e46a097446f9", - "x-ms-requestid": "61dc4d92-8504-4c86-b878-e46a097446f9", + "Date": "Fri, 19 Feb 2021 19:46:53 GMT", + "ETag": "\u0022d93a5575-e40e-4edc-8ccf-3035b2d3eaab\u0022", + "X-Azure-Ref": "0rRUwYAAAAADSCUr9HlYnQq8xRRDk6NGVV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "bccff6ed-8086-4a60-b92c-032953fc699d", + "x-ms-correlationid": "a3226637-9d26-4d6a-98cb-633a6449169f", + "x-ms-requestid": "a3226637-9d26-4d6a-98cb-633a6449169f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14683,8 +14739,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-09T00:00:00Z", - "endDate": "2021-02-08T00:00:00Z", + "startDate": "2021-02-09T00:00:00Z", + "endDate": "2021-03-08T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -14700,7 +14756,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-12-09T13:18:30.9138381Z", - "lastModified": "2021-01-09T22:58:42.1164947Z", + "lastModified": "2021-02-09T10:56:54.980815Z", "sessionMode": "None" }, { @@ -15237,8 +15293,8 @@ }, "planId": "base", "term": { - "startDate": "2021-01-13T00:00:00Z", - "endDate": "2021-02-12T00:00:00Z", + "startDate": "2021-02-13T00:00:00Z", + "endDate": "2021-03-12T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -15254,7 +15310,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-02-13T18:17:58.7971727Z", - "lastModified": "2021-01-13T19:41:10.283823Z", + "lastModified": "2021-02-13T04:25:20.8252684Z", "sessionMode": "None" }, { @@ -15414,7 +15470,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond 3-2-1", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -15446,7 +15502,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-03-02T16:43:30.3063035Z", - "lastModified": "2021-02-02T18:18:19.1298285Z", + "lastModified": "2021-02-08T18:10:24.3657561Z", "sessionMode": "None" }, { @@ -15970,7 +16026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-09T23:40:30.887548Z", - "lastModified": "2021-01-09T11:39:50.1911926Z", + "lastModified": "2021-02-09T22:57:20.5118236Z", "sessionMode": "None" }, { @@ -16703,8 +16759,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -16720,7 +16776,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T15:36:22.2336759Z", - "lastModified": "2021-01-11T14:02:04.8101096Z", + "lastModified": "2021-02-11T11:23:24.9257264Z", "sessionMode": "None" }, { @@ -17786,8 +17842,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -17803,7 +17859,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-29T14:09:59.8172835Z", - "lastModified": "2021-01-14T02:19:03.7107539Z", + "lastModified": "2021-02-14T18:57:22.4601469Z", "sessionMode": "None" }, { @@ -18016,7 +18072,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond1292", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -18054,7 +18110,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-29T21:39:09.5744025Z", - "lastModified": "2021-01-29T21:48:16.511869Z", + "lastModified": "2021-02-09T15:25:01.2941457Z", "sessionMode": "None" } ] @@ -18066,10 +18122,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|a0f2d501-42abcd9c1c789a47.", + "traceparent": "00-8dce912a5ca1b64d9766f84036b9551f-5b003905ab160f41-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "a1d5ea18-0cd1-0701-83a9-1057a67c4051", "x-ms-return-client-request-id": "true" @@ -18079,13 +18135,13 @@ "ResponseHeaders": { "Content-Length": "1008", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:07 GMT", - "ETag": "\u0022387244be-0875-402a-b2d8-ab80c2442156\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "255a8af5-9171-4429-8b04-2a9e0eb9e63e", - "x-ms-correlationid": "acec4295-c192-4bb4-982b-a830e15640c1", - "x-ms-requestid": "acec4295-c192-4bb4-982b-a830e15640c1", + "Date": "Fri, 19 Feb 2021 19:46:53 GMT", + "ETag": "\u00228c605d97-c3e5-455e-9edb-97e172d516c9\u0022", + "X-Azure-Ref": "0rRUwYAAAAABXznvm3DSQQLFZeWR2RusnV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "03881e17-706b-4f3b-b9ab-48ffa03f8aed", + "x-ms-correlationid": "46992060-d1cf-4c31-a08d-2079c2581122", + "x-ms-requestid": "46992060-d1cf-4c31-a08d-2079c2581122", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json index e571038..56533e4 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "b98a873c-14d4-0dea-3d18-83eac5b14d0b", "x-ms-return-client-request-id": "true" @@ -16,19 +16,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "83978", + "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:12 GMT", - "ETag": "\u002288fc8ae2-2ba7-420d-b24f-1e952b90db34\u0022", - "Server": "Microsoft-IIS/10.0", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "ETag": "\u002254b83037-afa2-4394-b2ed-0ac53d43e544\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "x-content-type-options": "nosniff", - "x-ms-activityid": "23d4a2eb-61a7-418d-8e93-3421c35a55a2", - "x-ms-correlationid": "bb001ce6-fcf7-4609-b754-8db39e678b95", - "x-ms-requestid": "bb001ce6-fcf7-4609-b754-8db39e678b95", + "X-Azure-Ref": "0sRUwYAAAAAATPdwSFtFzTIdekBO09ls\u002BV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "6b73dc3d-b71d-42ea-b9db-c43e28890dc7", + "x-ms-correlationid": "62424ce5-c051-4fde-9ae2-db8969a28c46", + "x-ms-requestid": "62424ce5-c051-4fde-9ae2-db8969a28c46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,8 +133,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -150,7 +150,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T17:41:07.1576845Z", - "lastModified": "2021-02-01T22:33:27.6541116Z", + "lastModified": "2021-02-11T21:56:01.1229201Z", "sessionMode": "None" }, { @@ -1859,8 +1859,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-12T00:00:00Z", - "endDate": "2021-02-11T00:00:00Z", + "startDate": "2021-02-12T00:00:00Z", + "endDate": "2021-03-11T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -1876,7 +1876,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-29T19:24:46.8480754Z", - "lastModified": "2021-01-12T18:15:04.5716647Z", + "lastModified": "2021-02-12T04:17:22.9227318Z", "sessionMode": "None" }, { @@ -2009,8 +2009,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2026,7 +2026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T15:48:58.5963255Z", - "lastModified": "2021-01-11T00:01:33.4511326Z", + "lastModified": "2021-02-11T02:18:11.7678927Z", "sessionMode": "None" }, { @@ -2267,8 +2267,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2284,7 +2284,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T18:12:41.5561984Z", - "lastModified": "2021-01-11T21:25:38.6063496Z", + "lastModified": "2021-02-11T21:19:06.6443612Z", "sessionMode": "None" }, { @@ -2998,6 +2998,62 @@ "created": "2021-01-22T17:46:42.8121831Z", "lastModified": "2021-01-22T17:56:35.4880589Z", "sessionMode": "None" + }, + { + "id": "489f64b6-98ec-a062-a8b4-5367484d1d14", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "test", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "purchaser": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0", + "fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-02-04T17:29:21.8405148Z", + "lastModified": "2021-02-04T17:32:19.0300527Z", + "sessionMode": "None" } ], "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" @@ -3011,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "58c84667-d912-726a-0f5f-e1f268972bad", "x-ms-return-client-request-id": "true" @@ -3019,15 +3075,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "89604", + "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:12 GMT", - "ETag": "\u0022d2babe48-4cca-4295-9055-6b0e552f983e\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "5beee996-701b-499c-b19d-d31f237778d3", - "x-ms-correlationid": "9b7fe7ba-4736-4c01-802f-dfe72aef98e3", - "x-ms-requestid": "9b7fe7ba-4736-4c01-802f-dfe72aef98e3", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "ETag": "\u0022ddad1a9c-9e1c-49e8-a78e-238794705513\u0022", + "X-Azure-Ref": "0sRUwYAAAAAAldC3krTakRLv/bWXrG7/fV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "be1f11ed-c77d-482f-b4a6-67391430ee8a", + "x-ms-correlationid": "9a493117-9b60-476a-b1ba-53963ee8fb4c", + "x-ms-requestid": "9a493117-9b60-476a-b1ba-53963ee8fb4c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5548,8 +5604,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5565,7 +5621,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T19:13:14.9763056Z", - "lastModified": "2021-01-11T13:45:22.9808889Z", + "lastModified": "2021-02-11T13:18:00.464219Z", "sessionMode": "None" }, { @@ -6274,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "7e82abb5-f5e9-51f9-df68-3b35111549f2", "x-ms-return-client-request-id": "true" @@ -6282,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118394", + "Content-Length": "118383", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:12 GMT", - "ETag": "\u002255e0a662-3f1b-47d3-8c89-0b105dae0a72\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "d2889595-e170-42bf-b5b7-c39aceb03f2d", - "x-ms-correlationid": "3b2b98a4-8392-4c88-be12-f865fca1e932", - "x-ms-requestid": "3b2b98a4-8392-4c88-be12-f865fca1e932", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "ETag": "\u0022ef9ecf42-3341-4c0a-b3a8-d8345023421c\u0022", + "X-Azure-Ref": "0sRUwYAAAAAD9Yrp6BY2QSL1ssH7BSUWZV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "1a456ab8-7c7c-4cc3-bef7-3cbb88fd99e9", + "x-ms-correlationid": "8871859c-0503-41b6-8cd0-cf0e7663f0cf", + "x-ms-requestid": "8871859c-0503-41b6-8cd0-cf0e7663f0cf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6515,8 +6571,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -6532,7 +6588,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T16:51:35.2238173Z", - "lastModified": "2021-01-07T21:16:38.0056464Z", + "lastModified": "2021-02-07T17:36:47.4081955Z", "sessionMode": "None" }, { @@ -8825,8 +8881,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8842,7 +8898,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-07T15:38:39.5264795Z", - "lastModified": "2021-01-07T13:24:33.1506448Z", + "lastModified": "2021-02-07T19:42:33.5592454Z", "sessionMode": "None" }, { @@ -8894,7 +8950,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T23:19:04.6687978Z", - "lastModified": "2021-01-11T21:23:34.7767656Z", + "lastModified": "2021-02-11T02:13:53.2938907Z", "sessionMode": "None" }, { @@ -9623,8 +9679,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9640,7 +9696,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-21T17:52:54.0642703Z", - "lastModified": "2021-01-21T18:57:17.9829907Z", + "lastModified": "2021-02-14T02:51:35.1862122Z", "sessionMode": "None" }, { @@ -9667,8 +9723,8 @@ }, "planId": "public", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9684,7 +9740,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T18:10:33.2525465Z", - "lastModified": "2021-01-14T20:06:23.9230469Z", + "lastModified": "2021-02-14T14:48:21.1638543Z", "sessionMode": "None" }, { @@ -9711,8 +9767,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9728,7 +9784,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T21:11:58.5885238Z", - "lastModified": "2021-01-14T22:32:18.8778354Z", + "lastModified": "2021-02-14T12:33:52.5867286Z", "sessionMode": "None" }, { @@ -9861,8 +9917,8 @@ }, "planId": "instant-portal-standard", "term": { - "startDate": "2021-01-05T00:00:00Z", - "endDate": "2021-02-04T00:00:00Z", + "startDate": "2021-02-05T00:00:00Z", + "endDate": "2021-03-04T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9878,7 +9934,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-05T02:42:08.2082173Z", - "lastModified": "2021-01-05T15:02:26.6216391Z", + "lastModified": "2021-02-05T08:37:15.6026716Z", "sessionMode": "None" }, { @@ -9957,8 +10013,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-19T00:00:00Z", - "endDate": "2021-02-18T00:00:00Z", + "startDate": "2021-02-19T00:00:00Z", + "endDate": "2021-03-18T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9974,7 +10030,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-19T17:49:25.4024396Z", - "lastModified": "2021-01-19T08:07:38.8873732Z", + "lastModified": "2021-02-19T02:01:09.0269304Z", "sessionMode": "None" }, { @@ -10334,7 +10390,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "redmond115", - "saasSubscriptionStatus": "PendingFulfillmentStart", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@hotmail.com", "objectId": "d2858116-704b-480d-acf8-340adbab114f", @@ -10376,7 +10432,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2021-01-15T22:01:18.6098849Z", - "lastModified": "2021-01-15T22:01:22.5319981Z", + "lastModified": "2021-02-15T06:27:41.7806117Z", "sessionMode": "None" }, { @@ -10481,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "bd3dae98-ac14-c0c4-3a99-004d6dad3868", "x-ms-return-client-request-id": "true" @@ -10491,13 +10547,13 @@ "ResponseHeaders": { "Content-Length": "97842", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:12 GMT", - "ETag": "\u00221f353756-32e4-4325-a71e-2af1950cd511\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "099eb840-001d-48ee-b11c-b832f48eb78f", - "x-ms-correlationid": "539b46a9-bb7e-45ff-9949-296342bf8305", - "x-ms-requestid": "539b46a9-bb7e-45ff-9949-296342bf8305", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "ETag": "\u00220d9fe50c-cdff-4cc4-8c81-b0a6ed25227e\u0022", + "X-Azure-Ref": "0shUwYAAAAAA8lKAprTtmT76prkJhjU6EV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "693e0391-293a-41cf-9cef-ef21950acb0b", + "x-ms-correlationid": "f7a6f471-ed36-4cd1-8641-f0485c4a218c", + "x-ms-requestid": "f7a6f471-ed36-4cd1-8641-f0485c4a218c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13066,8 +13122,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-10T00:00:00Z", - "endDate": "2021-02-09T00:00:00Z", + "startDate": "2021-02-10T00:00:00Z", + "endDate": "2021-03-09T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13083,7 +13139,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-10T16:29:54.8329451Z", - "lastModified": "2021-01-10T18:15:18.1894662Z", + "lastModified": "2021-02-10T03:47:57.9818166Z", "sessionMode": "None" }, { @@ -13154,8 +13210,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13171,7 +13227,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-14T23:24:49.8054763Z", - "lastModified": "2021-01-14T18:31:57.2401121Z", + "lastModified": "2021-02-14T20:46:24.2746881Z", "sessionMode": "None" }, { @@ -13198,8 +13254,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-15T00:00:00Z", - "endDate": "2021-02-14T00:00:00Z", + "startDate": "2021-02-15T00:00:00Z", + "endDate": "2021-03-14T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13215,7 +13271,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-15T19:47:31.1572826Z", - "lastModified": "2021-01-15T12:34:41.6980612Z", + "lastModified": "2021-02-15T11:35:56.7024853Z", "sessionMode": "None" }, { @@ -13426,8 +13482,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13443,7 +13499,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-28T17:32:17.3885671Z", - "lastModified": "2021-01-14T02:02:09.9020713Z", + "lastModified": "2021-02-14T13:03:16.3618579Z", "sessionMode": "None" }, { @@ -13821,7 +13877,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-01-20T18:30:26.4474061Z", + "lastModified": "2021-02-13T06:06:32.6033421Z", "sessionMode": "None" }, { @@ -13934,7 +13990,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "639c1be2-8cd8-cedd-b684-d88582d352b5", "x-ms-return-client-request-id": "true" @@ -13942,15 +13998,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "115879", + "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:12 GMT", - "ETag": "\u0022e597ae51-2bfc-400a-bc8a-7ae9ffc6313c\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "2b4d13de-c0c1-4f05-921d-9426ca7e10e3", - "x-ms-correlationid": "6bea9698-4dfd-4ec0-9e87-e98b6e7b1637", - "x-ms-requestid": "6bea9698-4dfd-4ec0-9e87-e98b6e7b1637", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "ETag": "\u0022df32b86b-a089-4876-b266-22ea98575130\u0022", + "X-Azure-Ref": "0shUwYAAAAABdhqVd60rTTYfoMC9/aCVxV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "816cf1d5-c17b-451d-8105-852bd5dc6237", + "x-ms-correlationid": "3f6cd611-380a-4d6c-acd1-ce03a9e3e64c", + "x-ms-requestid": "3f6cd611-380a-4d6c-acd1-ce03a9e3e64c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14683,8 +14739,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-09T00:00:00Z", - "endDate": "2021-02-08T00:00:00Z", + "startDate": "2021-02-09T00:00:00Z", + "endDate": "2021-03-08T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -14700,7 +14756,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-12-09T13:18:30.9138381Z", - "lastModified": "2021-01-09T22:58:42.1164947Z", + "lastModified": "2021-02-09T10:56:54.980815Z", "sessionMode": "None" }, { @@ -15237,8 +15293,8 @@ }, "planId": "base", "term": { - "startDate": "2021-01-13T00:00:00Z", - "endDate": "2021-02-12T00:00:00Z", + "startDate": "2021-02-13T00:00:00Z", + "endDate": "2021-03-12T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -15254,7 +15310,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-02-13T18:17:58.7971727Z", - "lastModified": "2021-01-13T19:41:10.283823Z", + "lastModified": "2021-02-13T04:25:20.8252684Z", "sessionMode": "None" }, { @@ -15414,7 +15470,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond 3-2-1", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -15446,7 +15502,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-03-02T16:43:30.3063035Z", - "lastModified": "2021-02-02T18:18:19.1298285Z", + "lastModified": "2021-02-08T18:10:24.3657561Z", "sessionMode": "None" }, { @@ -15970,7 +16026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-09T23:40:30.887548Z", - "lastModified": "2021-01-09T11:39:50.1911926Z", + "lastModified": "2021-02-09T22:57:20.5118236Z", "sessionMode": "None" }, { @@ -16703,8 +16759,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -16720,7 +16776,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T15:36:22.2336759Z", - "lastModified": "2021-01-11T14:02:04.8101096Z", + "lastModified": "2021-02-11T11:23:24.9257264Z", "sessionMode": "None" }, { @@ -17786,8 +17842,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -17803,7 +17859,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-29T14:09:59.8172835Z", - "lastModified": "2021-01-14T02:19:03.7107539Z", + "lastModified": "2021-02-14T18:57:22.4601469Z", "sessionMode": "None" }, { @@ -18016,7 +18072,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond1292", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -18054,7 +18110,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-29T21:39:09.5744025Z", - "lastModified": "2021-01-29T21:48:16.511869Z", + "lastModified": "2021-02-09T15:25:01.2941457Z", "sessionMode": "None" } ] @@ -18066,10 +18122,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|a0f2d503-42abcd9c1c789a47.", + "traceparent": "00-0cf751c6bba05042bdb30b9072ef8182-23090c1ec81b8e4b-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "516b5df1-d410-0090-5fe5-bb26da8eafb6", "x-ms-return-client-request-id": "true" @@ -18079,13 +18135,13 @@ "ResponseHeaders": { "Content-Length": "1008", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:13 GMT", - "ETag": "\u0022241cdd3e-6398-47a3-ad24-6a0028720309\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "dd7fef28-2d74-47c4-aa7b-be010695b815", - "x-ms-correlationid": "247ce11e-424d-4223-b904-14b0b3c741ca", - "x-ms-requestid": "247ce11e-424d-4223-b904-14b0b3c741ca", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "ETag": "\u0022a1b8236c-0d96-4a9f-b5dc-d8ade1a613ca\u0022", + "X-Azure-Ref": "0shUwYAAAAAC8F/6XmqfGQpc4aIpunHNLV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "737bc62c-0bb8-4c66-a903-1da6f5f1898b", + "x-ms-correlationid": "15d08d4b-c904-4a8f-8ed4-5fd3990abc3e", + "x-ms-requestid": "15d08d4b-c904-4a8f-8ed4-5fd3990abc3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/PostSingleUsageAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/PostSingleUsageAsync.json new file mode 100644 index 0000000..277495f --- /dev/null +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/PostSingleUsageAsync.json @@ -0,0 +1,58 @@ +{ + "Entries": [ + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/usageEvent?api-version=2018-08-31", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "265", + "Content-Type": "application/json", + "traceparent": "00-8fa4f3892b08c847850c4b814452cfd5-14b37c295f826544-00", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" + ], + "x-ms-client-request-id": "3acc752a-f91e-54ed-6ec4-24f6f016f604", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "resourceUri": "/subscriptions/bf7adf12-c3a8-426c-9976-29f145eba70f/resourceGroups/ercmngd/providers/Microsoft.Solutions/applications/ercuserassigned", + "quantity": 15, + "dimension": "dim1", + "effectiveStartTime": "2021-02-19T16:59:27.5109777-08:00", + "planId": "userassigned" + }, + "StatusCode": 400, + "ResponseHeaders": { + "Content-Length": "234", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 22 Feb 2021 17:59:28 GMT", + "Set-Cookie": [ + "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", + "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" + ], + "X-Azure-Ref": "0APEzYAAAAACN5LeBuhcJRYkJpyTT05\u002BJV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-correlationid": "ceefdb46-d4bb-4b3a-a339-2a58fed06095", + "x-ms-requestid": "ceefdb46-d4bb-4b3a-a339-2a58fed06095", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "message": "One or more errors have occurred.", + "target": "usageEventRequest", + "details": [ + { + "message": "The effective time provided is has expired or is in future.", + "target": "effectiveStartTime", + "code": "BadArgument" + } + ], + "code": "BadArgument" + } + } + ], + "Variables": { + "RandomSeed": "1496533948" + } +} \ No newline at end of file diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionAsync.json index 49db051..2287ca1 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionAsync.json @@ -6,43 +6,43 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|a0f2d504-42abcd9c1c789a47.", + "traceparent": "00-0edf9d454a9dff41bdb69ce1ff64c89b-22ba01d50b801c47-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "fcf5a7ee-1b2f-a327-a5aa-09b406b5fe11", - "x-ms-marketplace-token": "RUA01U9XFK7hkUoCGo0yOCEnXyJHu3cP9VihTQREWTyUkDySoSiMb5j3t3PHXPZUIPN61g1IRQESVIfVRimE\u002BXfdKYiMjg9El3nP0AFhYxuuRMX4jhGeaJHP1JAdz9SP0cti/o6z3RgJDzWTN0eXtLgzbCoRUgdWa64/iHGIFKN30RA9njDxuJkuUp1Ml3wFsQKYcq4HjfD5lUcYOw6amefQ4RzHk9L\u002Bkrn83OrHfwo=", + "x-ms-marketplace-token": "9EVFKOQwhUCgLB0OKLRdav6AoOXHDKqTUyYgGlJpDy92RdX8XGA\u002BEbv8XjBcKfcduQW0ggoG2xKszgQozWkU1yUouS\u002B4xsy7xaCSiJRgg6XMkXI9RJV\u002BpdD1/NbSGQIS7gqrxNziYDApXmSRvcd7EuTfdZK3vnsgcWf19g1qpVp\u002BooAVyCPb8sPvmSuOifJxdvHZu\u002B99YvQURPKnnBchnJK2VQqxbNJZ1e3ZyhYxT28=", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "1461", + "Content-Length": "1514", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "Server": "Microsoft-IIS/10.0", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", "Set-Cookie": [ "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "x-content-type-options": "nosniff", - "x-ms-activityid": "b13604d0-783c-43dd-9c9a-c7b6cd552223", - "x-ms-correlationid": "80f386cb-a41c-42a5-a006-2e1eba6988ab", - "x-ms-requestid": "80f386cb-a41c-42a5-a006-2e1eba6988ab", + "X-Azure-Ref": "0shUwYAAAAAA4rIAkikrQQJcpo0RyxIXfV1NURURHRTA4MjIAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "fe033c72-2987-4fd0-80f3-843423ec73d2", + "x-ms-correlationid": "3ff85122-e3c1-4913-bd1b-67d6858aae46", + "x-ms-requestid": "3ff85122-e3c1-4913-bd1b-67d6858aae46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "subscriptionName": "redmond120", + "id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842", + "subscriptionName": "Redmond121", "offerId": "contoso_saas_offer-preview", "planId": "silver", "subscription": { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", + "id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842", "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", + "name": "Redmond121", + "saasSubscriptionStatus": "Subscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -50,7 +50,7 @@ "puid": "10033FFFA7593A0D", "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" + "clienT-IP": "40.80.156.103:6720" }, "purchaser": { "emailId": "ercenk@microsoft.com", @@ -59,10 +59,12 @@ "puid": "10033FFFA7593A0D", "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" + "clienT-IP": "40.80.156.103:6720" }, "planId": "silver", "term": { + "startDate": "2021-01-21T00:00:00Z", + "endDate": "2021-02-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -73,12 +75,12 @@ "Update", "Read" ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", + "sessionId": "f4919bd3-7eb4-47a4-990b-90c750c3fce1", + "fulfillmentId": "33f11f78-64d2-4ea2-a7ec-c4bc8581542b", "storeFront": "ARMApiCall", "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-01-20T18:30:26.4474061Z", + "created": "2021-01-21T18:47:25.2241546Z", + "lastModified": "2021-01-21T21:58:31.1651311Z", "sessionMode": "None" } } diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionWithCertAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionWithCertAsync.json new file mode 100644 index 0000000..4b5c305 --- /dev/null +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/ResolveSubscriptionWithCertAsync.json @@ -0,0 +1,92 @@ +{ + "Entries": [ + { + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/resolve?api-version=2018-08-31", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b78beb8ecdf3784097562713e0abf9db-58f57f99a1cf3b4d-00", + "User-Agent": [ + "azsdk-net-Microsoft.Marketplace/1.0.0", + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + ], + "x-ms-client-request-id": "8ee70faf-9b5f-e40d-dbb9-ba6a9b5da94e", + "x-ms-marketplace-token": "9EVFKOQwhUCgLB0OKLRdav6AoOXHDKqTUyYgGlJpDy92RdX8XGA\u002BEbv8XjBcKfcduQW0ggoG2xKszgQozWkU1yUouS\u002B4xsy7xaCSiJRgg6XMkXI9RJV\u002BpdD1/NbSGQIS7gqrxNziYDApXmSRvcd7EuTfdZK3vnsgcWf19g1qpVp\u002BooAVyCPb8sPvmSuOifJxdvHZu\u002B99YvQURPKnnBchnJK2VQqxbNJZ1e3ZyhYxT28=", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "1514", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 19 Feb 2021 19:46:57 GMT", + "Set-Cookie": [ + "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", + "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" + ], + "X-Azure-Ref": "0shUwYAAAAAAFPbOZIcoSSa2oAlvjxxwfV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "94b5dd49-d367-4d39-862f-694236957f81", + "x-ms-correlationid": "b0baff30-027a-46f7-af5f-0eefbb2d4114", + "x-ms-requestid": "b0baff30-027a-46f7-af5f-0eefbb2d4114", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842", + "subscriptionName": "Redmond121", + "offerId": "contoso_saas_offer-preview", + "planId": "silver", + "subscription": { + "id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842", + "publisherId": "testtestindustryexperiencestest", + "offerId": "contoso_saas_offer-preview", + "name": "Redmond121", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:6720" + }, + "purchaser": { + "emailId": "ercenk@microsoft.com", + "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "puid": "10033FFFA7593A0D", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.80.156.103:6720" + }, + "planId": "silver", + "term": { + "startDate": "2021-01-21T00:00:00Z", + "endDate": "2021-02-20T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "f4919bd3-7eb4-47a4-990b-90c750c3fce1", + "fulfillmentId": "33f11f78-64d2-4ea2-a7ec-c4bc8581542b", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-01-21T18:47:25.2241546Z", + "lastModified": "2021-01-21T21:58:31.1651311Z", + "sessionMode": "None" + } + } + } + ], + "Variables": { + "RandomSeed": "487910263" + } +} \ No newline at end of file diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json index 3f97e6d..2f5fdac 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "01ecc810-a0fe-0522-8aa2-dadb8f6fca87", "x-ms-return-client-request-id": "true" @@ -16,19 +16,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "83978", + "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "ETag": "\u002227766668-2969-477b-900e-099c74fb0560\u0022", - "Server": "Microsoft-IIS/10.0", + "Date": "Fri, 19 Feb 2021 19:46:58 GMT", + "ETag": "\u00226f8c64f5-e920-49c2-8455-48a956951fa8\u0022", "Set-Cookie": [ - "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", - "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" + "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", + "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "x-content-type-options": "nosniff", - "x-ms-activityid": "87fa65e8-2a39-4c8e-8831-58a0c3474ba9", - "x-ms-correlationid": "09c6e7ce-8509-42e7-84c1-fabf7b72de9b", - "x-ms-requestid": "09c6e7ce-8509-42e7-84c1-fabf7b72de9b", + "X-Azure-Ref": "0sxUwYAAAAABIhGXYH9i6TKh3uwBa9vWGV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "12f6ea6d-af11-4df7-bf9d-2b14630bc01e", + "x-ms-correlationid": "4282ce0b-50a5-49f5-a331-1b11fcc59776", + "x-ms-requestid": "4282ce0b-50a5-49f5-a331-1b11fcc59776", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,8 +133,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -150,7 +150,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T17:41:07.1576845Z", - "lastModified": "2021-02-01T22:33:27.6541116Z", + "lastModified": "2021-02-11T21:56:01.1229201Z", "sessionMode": "None" }, { @@ -1859,8 +1859,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-12T00:00:00Z", - "endDate": "2021-02-11T00:00:00Z", + "startDate": "2021-02-12T00:00:00Z", + "endDate": "2021-03-11T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -1876,7 +1876,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-29T19:24:46.8480754Z", - "lastModified": "2021-01-12T18:15:04.5716647Z", + "lastModified": "2021-02-12T04:17:22.9227318Z", "sessionMode": "None" }, { @@ -2009,8 +2009,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2026,7 +2026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T15:48:58.5963255Z", - "lastModified": "2021-01-11T00:01:33.4511326Z", + "lastModified": "2021-02-11T02:18:11.7678927Z", "sessionMode": "None" }, { @@ -2267,8 +2267,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -2284,7 +2284,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T18:12:41.5561984Z", - "lastModified": "2021-01-11T21:25:38.6063496Z", + "lastModified": "2021-02-11T21:19:06.6443612Z", "sessionMode": "None" }, { @@ -2998,6 +2998,62 @@ "created": "2021-01-22T17:46:42.8121831Z", "lastModified": "2021-01-22T17:56:35.4880589Z", "sessionMode": "None" + }, + { + "id": "489f64b6-98ec-a062-a8b4-5367484d1d14", + "publisherId": "testtestindustryexperiencestest", + "offerId": "scs-saas-mixing-preview", + "name": "test", + "saasSubscriptionStatus": "Subscribed", + "beneficiary": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "purchaser": { + "emailId": "scott@scottseely.com", + "objectId": "768237ff-8384-4084-95ac-3f6f4257b52c", + "tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7", + "groupIds": [ + "600282f1-340a-46eb-a0a7-8bc8ad486f3a", + "87913333-08ab-4f20-92d8-a9acabca9272", + "f3f55d87-6da8-4970-8305-76d1c4cccb3c" + ], + "puid": "00037FFE8050EAD6", + "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "clienT-IP": "40.78.62.97:18436" + }, + "planId": "basic-monthly-or-annual", + "term": { + "startDate": "2021-02-04T00:00:00Z", + "endDate": "2021-03-03T00:00:00Z", + "termUnit": "P1M" + }, + "autoRenew": true, + "isTest": false, + "isFreeTrial": false, + "allowedCustomerOperations": [ + "Delete", + "Update", + "Read" + ], + "sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0", + "fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c", + "storeFront": "ARMApiCall", + "sandboxType": "None", + "created": "2021-02-04T17:29:21.8405148Z", + "lastModified": "2021-02-04T17:32:19.0300527Z", + "sessionMode": "None" } ], "@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31" @@ -3011,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "2e9df491-e219-3e56-b088-86b8388091f5", "x-ms-return-client-request-id": "true" @@ -3019,15 +3075,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "89604", + "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "ETag": "\u0022c48866fb-be02-477b-817e-ef8cafcde43f\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "1509c570-cedb-465b-8e7e-e09d476c4229", - "x-ms-correlationid": "ff47fa37-5b75-4dfc-8bad-c0aabddaf255", - "x-ms-requestid": "ff47fa37-5b75-4dfc-8bad-c0aabddaf255", + "Date": "Fri, 19 Feb 2021 19:46:58 GMT", + "ETag": "\u0022de5a8b8f-a6dd-484f-8a2f-20c73d78aacc\u0022", + "X-Azure-Ref": "0sxUwYAAAAAD6hz1Hecx5TaM2kzjEFzOgV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "915cfcac-e2cb-49ca-b841-050c3aa9f82d", + "x-ms-correlationid": "8a640257-7d10-40db-a412-cf70e3581d08", + "x-ms-requestid": "8a640257-7d10-40db-a412-cf70e3581d08", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5548,8 +5604,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5565,7 +5621,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-06-11T19:13:14.9763056Z", - "lastModified": "2021-01-11T13:45:22.9808889Z", + "lastModified": "2021-02-11T13:18:00.464219Z", "sessionMode": "None" }, { @@ -6274,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "9a49e4b0-9cd2-4d6e-41b0-81e1cf2d7718", "x-ms-return-client-request-id": "true" @@ -6282,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118394", + "Content-Length": "118383", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "ETag": "\u002272af8867-074a-4250-a272-063a5f3e3175\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "c1efb395-7b43-4523-871b-b7a91534d03b", - "x-ms-correlationid": "6e3080cf-4506-400e-8dd4-3ac75b9a37f8", - "x-ms-requestid": "6e3080cf-4506-400e-8dd4-3ac75b9a37f8", + "Date": "Fri, 19 Feb 2021 19:46:58 GMT", + "ETag": "\u0022db6831b9-7a99-4a2c-842c-3d896a932960\u0022", + "X-Azure-Ref": "0sxUwYAAAAAB3oiU64qvTTKdsJsQdWVg6V1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "ec899c1a-bd31-47b6-ac11-a877ead549d3", + "x-ms-correlationid": "eee4c266-99c4-443a-a1bd-220bb0c166ae", + "x-ms-requestid": "eee4c266-99c4-443a-a1bd-220bb0c166ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6515,8 +6571,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -6532,7 +6588,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-10-07T16:51:35.2238173Z", - "lastModified": "2021-01-07T21:16:38.0056464Z", + "lastModified": "2021-02-07T17:36:47.4081955Z", "sessionMode": "None" }, { @@ -8825,8 +8881,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-07T00:00:00Z", - "endDate": "2021-02-06T00:00:00Z", + "startDate": "2021-02-07T00:00:00Z", + "endDate": "2021-03-06T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8842,7 +8898,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-07T15:38:39.5264795Z", - "lastModified": "2021-01-07T13:24:33.1506448Z", + "lastModified": "2021-02-07T19:42:33.5592454Z", "sessionMode": "None" }, { @@ -8894,7 +8950,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T23:19:04.6687978Z", - "lastModified": "2021-01-11T21:23:34.7767656Z", + "lastModified": "2021-02-11T02:13:53.2938907Z", "sessionMode": "None" }, { @@ -9623,8 +9679,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9640,7 +9696,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-21T17:52:54.0642703Z", - "lastModified": "2021-01-21T18:57:17.9829907Z", + "lastModified": "2021-02-14T02:51:35.1862122Z", "sessionMode": "None" }, { @@ -9667,8 +9723,8 @@ }, "planId": "public", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9684,7 +9740,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T18:10:33.2525465Z", - "lastModified": "2021-01-14T20:06:23.9230469Z", + "lastModified": "2021-02-14T14:48:21.1638543Z", "sessionMode": "None" }, { @@ -9711,8 +9767,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9728,7 +9784,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-22T21:11:58.5885238Z", - "lastModified": "2021-01-14T22:32:18.8778354Z", + "lastModified": "2021-02-14T12:33:52.5867286Z", "sessionMode": "None" }, { @@ -9861,8 +9917,8 @@ }, "planId": "instant-portal-standard", "term": { - "startDate": "2021-01-05T00:00:00Z", - "endDate": "2021-02-04T00:00:00Z", + "startDate": "2021-02-05T00:00:00Z", + "endDate": "2021-03-04T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9878,7 +9934,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-05T02:42:08.2082173Z", - "lastModified": "2021-01-05T15:02:26.6216391Z", + "lastModified": "2021-02-05T08:37:15.6026716Z", "sessionMode": "None" }, { @@ -9957,8 +10013,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-19T00:00:00Z", - "endDate": "2021-02-18T00:00:00Z", + "startDate": "2021-02-19T00:00:00Z", + "endDate": "2021-03-18T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -9974,7 +10030,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-11-19T17:49:25.4024396Z", - "lastModified": "2021-01-19T08:07:38.8873732Z", + "lastModified": "2021-02-19T02:01:09.0269304Z", "sessionMode": "None" }, { @@ -10334,7 +10390,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "redmond115", - "saasSubscriptionStatus": "PendingFulfillmentStart", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@hotmail.com", "objectId": "d2858116-704b-480d-acf8-340adbab114f", @@ -10376,7 +10432,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2021-01-15T22:01:18.6098849Z", - "lastModified": "2021-01-15T22:01:22.5319981Z", + "lastModified": "2021-02-15T06:27:41.7806117Z", "sessionMode": "None" }, { @@ -10481,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "5407abdd-f736-a022-4e61-0cad158aebb6", "x-ms-return-client-request-id": "true" @@ -10491,13 +10547,13 @@ "ResponseHeaders": { "Content-Length": "97842", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "ETag": "\u0022af105ef1-38d4-4c8d-ba78-e349b65ce739\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "21b2c5fa-7099-4533-aaea-7f191620e98f", - "x-ms-correlationid": "0e861ae9-dd78-457f-b572-9821ff6f8b51", - "x-ms-requestid": "0e861ae9-dd78-457f-b572-9821ff6f8b51", + "Date": "Fri, 19 Feb 2021 19:46:58 GMT", + "ETag": "\u00223a211a3d-f19f-410b-a8e8-6fa3a09d269d\u0022", + "X-Azure-Ref": "0sxUwYAAAAADhetnQesh0Q7W18Bt/z39XV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "7d331ad4-6eb7-4826-a8e4-98c0246a2ba9", + "x-ms-correlationid": "e66fa77c-ffb8-4728-acac-973bc74fc31a", + "x-ms-requestid": "e66fa77c-ffb8-4728-acac-973bc74fc31a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13066,8 +13122,8 @@ }, "planId": "platinum", "term": { - "startDate": "2021-01-10T00:00:00Z", - "endDate": "2021-02-09T00:00:00Z", + "startDate": "2021-02-10T00:00:00Z", + "endDate": "2021-03-09T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13083,7 +13139,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-10T16:29:54.8329451Z", - "lastModified": "2021-01-10T18:15:18.1894662Z", + "lastModified": "2021-02-10T03:47:57.9818166Z", "sessionMode": "None" }, { @@ -13154,8 +13210,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13171,7 +13227,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-14T23:24:49.8054763Z", - "lastModified": "2021-01-14T18:31:57.2401121Z", + "lastModified": "2021-02-14T20:46:24.2746881Z", "sessionMode": "None" }, { @@ -13198,8 +13254,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-15T00:00:00Z", - "endDate": "2021-02-14T00:00:00Z", + "startDate": "2021-02-15T00:00:00Z", + "endDate": "2021-03-14T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13215,7 +13271,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-09-15T19:47:31.1572826Z", - "lastModified": "2021-01-15T12:34:41.6980612Z", + "lastModified": "2021-02-15T11:35:56.7024853Z", "sessionMode": "None" }, { @@ -13426,8 +13482,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13443,7 +13499,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-28T17:32:17.3885671Z", - "lastModified": "2021-01-14T02:02:09.9020713Z", + "lastModified": "2021-02-14T13:03:16.3618579Z", "sessionMode": "None" }, { @@ -13821,7 +13877,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-01-20T18:30:26.4474061Z", + "lastModified": "2021-02-13T06:06:32.6033421Z", "sessionMode": "None" }, { @@ -13934,7 +13990,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "2303514c-2325-8de1-adc5-4f9f97ebe5ff", "x-ms-return-client-request-id": "true" @@ -13942,15 +13998,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "115879", + "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "ETag": "\u0022931e7098-2394-4993-92b9-115f668a5f92\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "2fe6d6d0-520f-4369-9699-1ccaae15526e", - "x-ms-correlationid": "ea133561-31a0-489f-b7c4-68c56d188448", - "x-ms-requestid": "ea133561-31a0-489f-b7c4-68c56d188448", + "Date": "Fri, 19 Feb 2021 19:46:58 GMT", + "ETag": "\u00224825d9db-8b63-4b74-aa8d-6cc4b94007f8\u0022", + "X-Azure-Ref": "0sxUwYAAAAAC8RPp0mw5VRq1TCMqg6INnV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "9a3cd66c-8eda-4e2a-b4fc-410f44ef2435", + "x-ms-correlationid": "fc2d1b28-e269-4c63-bd4a-76c0b90e42f6", + "x-ms-requestid": "fc2d1b28-e269-4c63-bd4a-76c0b90e42f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14683,8 +14739,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-09T00:00:00Z", - "endDate": "2021-02-08T00:00:00Z", + "startDate": "2021-02-09T00:00:00Z", + "endDate": "2021-03-08T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -14700,7 +14756,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2019-12-09T13:18:30.9138381Z", - "lastModified": "2021-01-09T22:58:42.1164947Z", + "lastModified": "2021-02-09T10:56:54.980815Z", "sessionMode": "None" }, { @@ -15237,8 +15293,8 @@ }, "planId": "base", "term": { - "startDate": "2021-01-13T00:00:00Z", - "endDate": "2021-02-12T00:00:00Z", + "startDate": "2021-02-13T00:00:00Z", + "endDate": "2021-03-12T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -15254,7 +15310,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-02-13T18:17:58.7971727Z", - "lastModified": "2021-01-13T19:41:10.283823Z", + "lastModified": "2021-02-13T04:25:20.8252684Z", "sessionMode": "None" }, { @@ -15414,7 +15470,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond 3-2-1", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -15446,7 +15502,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-03-02T16:43:30.3063035Z", - "lastModified": "2021-02-02T18:18:19.1298285Z", + "lastModified": "2021-02-08T18:10:24.3657561Z", "sessionMode": "None" }, { @@ -15970,7 +16026,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-04-09T23:40:30.887548Z", - "lastModified": "2021-01-09T11:39:50.1911926Z", + "lastModified": "2021-02-09T22:57:20.5118236Z", "sessionMode": "None" }, { @@ -16703,8 +16759,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-11T00:00:00Z", - "endDate": "2021-02-10T00:00:00Z", + "startDate": "2021-02-11T00:00:00Z", + "endDate": "2021-03-10T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -16720,7 +16776,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-11T15:36:22.2336759Z", - "lastModified": "2021-01-11T14:02:04.8101096Z", + "lastModified": "2021-02-11T11:23:24.9257264Z", "sessionMode": "None" }, { @@ -17786,8 +17842,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-14T00:00:00Z", - "endDate": "2021-02-13T00:00:00Z", + "startDate": "2021-02-14T00:00:00Z", + "endDate": "2021-03-13T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -17803,7 +17859,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-29T14:09:59.8172835Z", - "lastModified": "2021-01-14T02:19:03.7107539Z", + "lastModified": "2021-02-14T18:57:22.4601469Z", "sessionMode": "None" }, { @@ -18016,7 +18072,7 @@ "publisherId": "testtestindustryexperiencestest", "offerId": "contoso_saas_offer-preview", "name": "Redmond1292", - "saasSubscriptionStatus": "Subscribed", + "saasSubscriptionStatus": "Unsubscribed", "beneficiary": { "emailId": "ercenk@microsoft.com", "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", @@ -18054,7 +18110,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-29T21:39:09.5744025Z", - "lastModified": "2021-01-29T21:48:16.511869Z", + "lastModified": "2021-02-09T15:25:01.2941457Z", "sessionMode": "None" } ] @@ -18067,10 +18123,10 @@ "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "Request-Id": "|a0f2d505-42abcd9c1c789a47.", + "traceparent": "00-63d2766dddbb8d4e9c7fe76f483ec2d6-3692b95723d2ee44-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "c461398f-c786-a290-6dd6-5d55be3b755f", "x-ms-return-client-request-id": "true" @@ -18081,29 +18137,29 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "Operation-Id": "104abc13-26d1-4986-8a57-cd85b2e36f01", - "Operation-Location": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/104abc13-26d1-4986-8a57-cd85b2e36f01?api-version=2018-08-31", + "Date": "Fri, 19 Feb 2021 19:46:59 GMT", + "Operation-Id": "0dc96515-6031-46bc-be10-99d09430ccfb", + "Operation-Location": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/0dc96515-6031-46bc-be10-99d09430ccfb?api-version=2018-08-31", "Retry-After": "10", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "cd277bd4-8628-493b-bcce-dfbaabf68cac", - "x-ms-correlationid": "104abc13-26d1-4986-8a57-cd85b2e36f01", - "x-ms-requestid": "104abc13-26d1-4986-8a57-cd85b2e36f01", + "X-Azure-Ref": "0sxUwYAAAAACEQlRUfwBaR7U5Rp0NCbemV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "4686de75-b73a-4868-a73b-2d0fb1ecb89e", + "x-ms-correlationid": "0dc96515-6031-46bc-be10-99d09430ccfb", + "x-ms-requestid": "0dc96515-6031-46bc-be10-99d09430ccfb", "X-Powered-By": "ASP.NET" }, "ResponseBody": [] }, { - "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/104abc13-26d1-4986-8a57-cd85b2e36f01?api-version=2018-08-31", + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/0dc96515-6031-46bc-be10-99d09430ccfb?api-version=2018-08-31", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|a0f2d506-42abcd9c1c789a47.", + "traceparent": "00-1606207df8e73244b354fcd14f4087f7-1aecd7da8a9fa946-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )" + "(.NET 5.0.2; Microsoft Windows 10.0.21313)" ], "x-ms-client-request-id": "5d0f9276-208a-3078-0374-be33fbbf1294", "x-ms-return-client-request-id": "true" @@ -18113,24 +18169,24 @@ "ResponseHeaders": { "Content-Length": "372", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Feb 2021 16:37:14 GMT", - "ETag": "\u002279859b04-d5a7-47af-9d41-7d4ed12f1a4e\u0022", - "Server": "Microsoft-IIS/10.0", - "x-content-type-options": "nosniff", - "x-ms-activityid": "72225751-a953-4816-8aaa-c807ce41845a", - "x-ms-correlationid": "da6701e7-7ec9-4c99-8296-b5d0774a1ccc", - "x-ms-requestid": "da6701e7-7ec9-4c99-8296-b5d0774a1ccc", + "Date": "Fri, 19 Feb 2021 19:46:59 GMT", + "ETag": "\u00229c78a1ec-c46e-4d9f-a83f-95212523ac12\u0022", + "X-Azure-Ref": "0sxUwYAAAAABuwlqrwfetRaV4T\u002BdIunFkV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Content-Type-Options": "nosniff", + "x-ms-activityid": "38046609-30c0-495f-a730-9cc576834469", + "x-ms-correlationid": "b4819ad4-3505-43b4-8f58-2974c256d34f", + "x-ms-requestid": "b4819ad4-3505-43b4-8f58-2974c256d34f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "104abc13-26d1-4986-8a57-cd85b2e36f01", - "activityId": "104abc13-26d1-4986-8a57-cd85b2e36f01", + "id": "0dc96515-6031-46bc-be10-99d09430ccfb", + "activityId": "0dc96515-6031-46bc-be10-99d09430ccfb", "publisherId": "testtestindustryexperiencestest", "offerId": "ercsaastest1-preview", "planId": "gold", "operationRequestSource": "Partner", "subscriptionId": "de8efdae-6fa2-47ba-7903-3ccda226f82f", - "timeStamp": "2021-02-04T16:37:15.5725397Z", + "timeStamp": "2021-02-19T19:46:59.6111668Z", "action": "ChangePlan", "status": "NotStarted" } diff --git a/tests/NuGet.Config b/tests/NuGet.Config new file mode 100644 index 0000000..dcb8c12 --- /dev/null +++ b/tests/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From aeb53dd29a74196de66b0b34d168a45ce630b15d Mon Sep 17 00:00:00 2001 From: Ercenk Keresteci Date: Mon, 22 Feb 2021 11:13:17 -0800 Subject: [PATCH 2/2] Update tests. --- .../FulfillmentTests.cs | 3 +- .../GetAllSubscriptionsAsListAsyncAsync.json | 142 +++++-------- ...SubscriptionsAsListWithCertAsyncAsync.json | 142 +++++-------- .../GetAllSubscriptionsPagedAsync.json | 142 +++++-------- .../GetSubscriptionAsync.json | 158 ++++++--------- .../OASUpdateFeb22021SubscriptionAsync.json | 158 ++++++--------- .../UpdateSubscriptionAsync.json | 188 +++++++----------- 7 files changed, 335 insertions(+), 598 deletions(-) diff --git a/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs b/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs index 24beb5b..6a8ca5f 100644 --- a/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs +++ b/tests/Microsoft.Marketplace.Tests/FulfillmentTests.cs @@ -33,7 +33,7 @@ namespace Microsoft.Marketplace.Tests // Changed to record when client code is generated first time manually. #pragma warning disable SA1600 // Elements should be documented public FulfillmentTests() - : base(true, RecordedTestMode.Record) + : base(true, RecordedTestMode.Playback) #pragma warning restore SA1600 // Elements should be documented { this.config = new ConfigurationBuilder() @@ -188,6 +188,7 @@ namespace Microsoft.Marketplace.Tests } [RecordedTest] + [Ignore("Ignore for the moment as usage with ResourceId seems to be failing on the service side.")] public async Task PostSingleUsage() { var sut = this.InstrumentClient(this.GetMarketplaceMeteringClient()); diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json index cbb1afc..209a98d 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListAsyncAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "ed24abfb-d973-f316-82a1-d715cbcad6e8", "x-ms-return-client-request-id": "true" @@ -18,17 +18,17 @@ "ResponseHeaders": { "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:49 GMT", - "ETag": "\u00222cbf90c3-dbc8-46f3-ad14-9d73f549588a\u0022", + "Date": "Mon, 22 Feb 2021 19:10:26 GMT", + "ETag": "\u002234366406-5c48-4002-a429-bf86d28a685a\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "X-Azure-Ref": "0qRUwYAAAAACnoSS6tQDORYhVai7R7w3\u002BV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0owE0YAAAAAB45InbjsdoR7YLshDUoBDYV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "b2b5772f-c19e-4d6f-b2f3-d88e75947a02", - "x-ms-correlationid": "77ad69d2-8d6c-45b1-837a-c5fe5eb9807d", - "x-ms-requestid": "77ad69d2-8d6c-45b1-837a-c5fe5eb9807d", + "x-ms-activityid": "4c210b78-532f-4af2-847c-83fdfecea088", + "x-ms-correlationid": "a2859c57-719b-4c3a-9223-b2408f2d3ba1", + "x-ms-requestid": "a2859c57-719b-4c3a-9223-b2408f2d3ba1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3067,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "0888f65e-3aea-b998-47c1-52f4bf33b100", "x-ms-return-client-request-id": "true" @@ -3077,13 +3077,13 @@ "ResponseHeaders": { "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:49 GMT", - "ETag": "\u0022393e492f-e1ee-4c9a-99c8-b419f61fb0b8\u0022", - "X-Azure-Ref": "0qhUwYAAAAADCZpswwYhLR7Oe5IfrXJ6RV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:27 GMT", + "ETag": "\u00229e6b4e46-ab7e-4e05-a36f-e59c37c8f6d7\u0022", + "X-Azure-Ref": "0owE0YAAAAACWeWh\u002B3uLLTJzi/4L\u002BbraqV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "db4f18fc-e0a8-4e24-a435-7cecb660ed6e", - "x-ms-correlationid": "2fd330bd-7539-4a81-a34c-b3e327380be9", - "x-ms-requestid": "2fd330bd-7539-4a81-a34c-b3e327380be9", + "x-ms-activityid": "b5111c0a-868b-4030-b7d2-6a926fb0d01e", + "x-ms-correlationid": "5bc3e282-b27a-4dee-abfc-a4af22a3192c", + "x-ms-requestid": "5bc3e282-b27a-4dee-abfc-a4af22a3192c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5786,8 +5786,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5803,7 +5803,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-21T17:48:41.5747662Z", - "lastModified": "2021-01-21T02:53:46.0117546Z", + "lastModified": "2021-02-21T19:03:58.4250649Z", "sessionMode": "None" }, { @@ -6330,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "d5b7c9bd-cd42-93fe-96c4-7917aadb933b", "x-ms-return-client-request-id": "true" @@ -6338,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118383", + "Content-Length": "118382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:49 GMT", - "ETag": "\u0022dfd55375-b6e4-4a71-a005-2dc50bb2a140\u0022", - "X-Azure-Ref": "0qhUwYAAAAADM9HHEPLIyR7Wf\u002B6dwfudqV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:27 GMT", + "ETag": "\u0022c0eb3b1f-3823-49d0-891c-f3a13d9f8045\u0022", + "X-Azure-Ref": "0owE0YAAAAABNIBSfBqQlQLJnhFPkGZzGV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "17426b74-6eda-4b20-b113-dc0a756806bf", - "x-ms-correlationid": "3948e001-62d1-4936-a322-dc74d43bd935", - "x-ms-requestid": "3948e001-62d1-4936-a322-dc74d43bd935", + "x-ms-activityid": "50d45359-361d-41c0-a64a-3c44461f401f", + "x-ms-correlationid": "9af9d908-b9ba-4ab3-b4ed-8ef424863a67", + "x-ms-requestid": "9af9d908-b9ba-4ab3-b4ed-8ef424863a67", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8743,8 +8743,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8760,7 +8760,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T10:45:54.8085763Z", - "lastModified": "2021-01-21T08:39:32.7090194Z", + "lastModified": "2021-02-21T16:09:01.9403794Z", "sessionMode": "None" }, { @@ -10461,8 +10461,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -10478,7 +10478,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-21T18:47:25.2241546Z", - "lastModified": "2021-01-21T21:58:31.1651311Z", + "lastModified": "2021-02-21T00:04:34.880646Z", "sessionMode": "None" }, { @@ -10537,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "f53712ca-db7c-d3be-b4b6-e2e64d9a52ff", "x-ms-return-client-request-id": "true" @@ -10545,15 +10545,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "97842", + "Content-Length": "96530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:49 GMT", - "ETag": "\u00222413e284-e67e-4b81-8870-aa7a133d7b55\u0022", - "X-Azure-Ref": "0qhUwYAAAAABwM9LK78BOSrs\u002BZ9SSq1FTV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:27 GMT", + "ETag": "\u00226aefd3f2-388a-4d40-a194-bece2f16324c\u0022", + "X-Azure-Ref": "0owE0YAAAAAD\u002B8Oi3bNfPT7q2FqfaI9McV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "3088ff02-225e-4f10-93c4-4acc8536d852", - "x-ms-correlationid": "d97d01c6-3cda-4968-b356-a93e098af1cc", - "x-ms-requestid": "d97d01c6-3cda-4968-b356-a93e098af1cc", + "x-ms-activityid": "f86bc4d7-261d-4458-ab17-d6a4d8a9e4fd", + "x-ms-correlationid": "d27868ca-38e8-481c-a4e5-87c39fff62be", + "x-ms-requestid": "d27868ca-38e8-481c-a4e5-87c39fff62be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13438,8 +13438,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-20T00:00:00Z", - "endDate": "2021-02-19T00:00:00Z", + "startDate": "2021-02-20T00:00:00Z", + "endDate": "2021-03-19T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13455,7 +13455,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-20T22:44:02.8963755Z", - "lastModified": "2021-01-20T05:10:30.5666476Z", + "lastModified": "2021-02-20T21:39:25.9318725Z", "sessionMode": "None" }, { @@ -13836,50 +13836,6 @@ "lastModified": "2021-01-09T06:40:44.2319065Z", "sessionMode": "None" }, - { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "publisherId": "testtestindustryexperiencestest", - "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", - "beneficiary": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "purchaser": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "planId": "silver", - "term": { - "termUnit": "P1M" - }, - "autoRenew": true, - "isTest": false, - "isFreeTrial": false, - "allowedCustomerOperations": [ - "Delete", - "Update", - "Read" - ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", - "storeFront": "ARMApiCall", - "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-02-13T06:06:32.6033421Z", - "sessionMode": "None" - }, { "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", "publisherId": "testtestindustryexperiencestest", @@ -13990,7 +13946,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "984d73dd-9da4-02bf-4761-9443877d48a9", "x-ms-return-client-request-id": "true" @@ -14000,13 +13956,13 @@ "ResponseHeaders": { "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:49 GMT", - "ETag": "\u0022250730c4-66a3-477e-8f40-4976b4f113bd\u0022", - "X-Azure-Ref": "0qhUwYAAAAACKaL3J/Jo4T7d4sqU77j4bV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:27 GMT", + "ETag": "\u00220a20c5a8-20e3-4ddb-83fa-93d9f6c1df3a\u0022", + "X-Azure-Ref": "0pAE0YAAAAAAY/b1BszdOQaN3i8xRpJ4ZV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "e63376ac-2838-4880-a5cb-f6e79e2a8dfe", - "x-ms-correlationid": "ee531349-285b-4e60-9bbf-f2898dcea872", - "x-ms-requestid": "ee531349-285b-4e60-9bbf-f2898dcea872", + "x-ms-activityid": "f77c5e77-6307-4244-ac50-5657d4ac4e8d", + "x-ms-correlationid": "c4bdbab4-7533-4605-99b0-5fb400f14e03", + "x-ms-requestid": "c4bdbab4-7533-4605-99b0-5fb400f14e03", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json index 4c8d486..d0f7593 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsAsListWithCertAsyncAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "20b90979-b4b1-cec1-c063-1da3cdec6824", "x-ms-return-client-request-id": "true" @@ -18,17 +18,17 @@ "ResponseHeaders": { "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:50 GMT", - "ETag": "\u0022c01eddb2-2ba8-487f-ae9e-d7391c136e77\u0022", + "Date": "Mon, 22 Feb 2021 19:10:28 GMT", + "ETag": "\u00221d8765bc-7d6b-4e82-baf1-953f5649eb8c\u0022", "Set-Cookie": [ "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "X-Azure-Ref": "0qxUwYAAAAADfwnXLjUPVRbqrtWcLXrQbV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0pAE0YAAAAAB\u002B6inP6OsoTYeFOWufq9kBV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "81ef97c3-6acb-4571-928b-60dca1560efb", - "x-ms-correlationid": "9a010f57-b038-4419-bc50-6e5041870342", - "x-ms-requestid": "9a010f57-b038-4419-bc50-6e5041870342", + "x-ms-activityid": "1c979e20-4fa0-48e8-b227-4647d00bdcf5", + "x-ms-correlationid": "013e18c9-cd18-4ad7-b6aa-4047acff5dd7", + "x-ms-requestid": "013e18c9-cd18-4ad7-b6aa-4047acff5dd7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3067,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "bf04b4d9-dc0e-5267-ed3a-390c8ebdcb52", "x-ms-return-client-request-id": "true" @@ -3077,13 +3077,13 @@ "ResponseHeaders": { "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:50 GMT", - "ETag": "\u0022f10b1d18-c115-4ae6-9989-274d62c0f366\u0022", - "X-Azure-Ref": "0qxUwYAAAAABf6W3TPiUjS4svJsn3\u002BcNaV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:28 GMT", + "ETag": "\u00224503463c-5ef0-47c3-9689-e66e54c3276c\u0022", + "X-Azure-Ref": "0pQE0YAAAAAAP/5/7JAwkQ4WrECbORTRoV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "eb026384-4722-44a3-92ca-52a3d88c53b5", - "x-ms-correlationid": "978ce10b-4c71-449e-8ed8-1e0540685686", - "x-ms-requestid": "978ce10b-4c71-449e-8ed8-1e0540685686", + "x-ms-activityid": "987096f4-73d6-4883-ba7d-e571c78a5da4", + "x-ms-correlationid": "d6409272-6c89-4d35-a9bd-5942defa35b9", + "x-ms-requestid": "d6409272-6c89-4d35-a9bd-5942defa35b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5786,8 +5786,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5803,7 +5803,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-21T17:48:41.5747662Z", - "lastModified": "2021-01-21T02:53:46.0117546Z", + "lastModified": "2021-02-21T19:03:58.4250649Z", "sessionMode": "None" }, { @@ -6330,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "19c98c7d-a9e8-c416-7185-29e7bc55100c", "x-ms-return-client-request-id": "true" @@ -6338,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118383", + "Content-Length": "118382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u00223c999fe1-387d-44b6-ae8d-104185ffc567\u0022", - "X-Azure-Ref": "0qxUwYAAAAAAevwhc4w0hSaaJjEP/10HpV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:28 GMT", + "ETag": "\u0022b3bd109c-e6ce-4872-a429-1e7a2832145c\u0022", + "X-Azure-Ref": "0pQE0YAAAAADUAJL6MvHYQ65l5mKfwscSV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "a506d376-4da2-472b-8035-94ec0dbe08c5", - "x-ms-correlationid": "c7feddd6-fc8d-411c-b578-bc11925d9daf", - "x-ms-requestid": "c7feddd6-fc8d-411c-b578-bc11925d9daf", + "x-ms-activityid": "f4d816a8-b1fb-4297-8b23-6e3bd53f451d", + "x-ms-correlationid": "6687143d-4de6-4f8a-aa71-bdd2b2c3aca3", + "x-ms-requestid": "6687143d-4de6-4f8a-aa71-bdd2b2c3aca3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8743,8 +8743,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8760,7 +8760,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T10:45:54.8085763Z", - "lastModified": "2021-01-21T08:39:32.7090194Z", + "lastModified": "2021-02-21T16:09:01.9403794Z", "sessionMode": "None" }, { @@ -10461,8 +10461,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -10478,7 +10478,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-21T18:47:25.2241546Z", - "lastModified": "2021-01-21T21:58:31.1651311Z", + "lastModified": "2021-02-21T00:04:34.880646Z", "sessionMode": "None" }, { @@ -10537,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "018f290c-b2f3-8169-819f-c3159408c751", "x-ms-return-client-request-id": "true" @@ -10545,15 +10545,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "97842", + "Content-Length": "96530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u0022aa3727d2-fcc9-4e7a-b241-7dbcc5c66483\u0022", - "X-Azure-Ref": "0qxUwYAAAAACQQEejf/EuRbGkU2uUYMi8V1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u00227f5e2ba4-c36d-4845-8695-2db8ee9410a9\u0022", + "X-Azure-Ref": "0pQE0YAAAAABaUsePWlmMRrYCXj57MYEtV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "93383579-aeef-4fea-8b95-b506e615c124", - "x-ms-correlationid": "2bd5977f-37d2-4468-9db3-79202bb234b0", - "x-ms-requestid": "2bd5977f-37d2-4468-9db3-79202bb234b0", + "x-ms-activityid": "76f24c0b-f9e9-4f94-b438-a69038846ae2", + "x-ms-correlationid": "466df443-57ea-42f2-a00e-de4eea19aadb", + "x-ms-requestid": "466df443-57ea-42f2-a00e-de4eea19aadb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13438,8 +13438,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-20T00:00:00Z", - "endDate": "2021-02-19T00:00:00Z", + "startDate": "2021-02-20T00:00:00Z", + "endDate": "2021-03-19T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13455,7 +13455,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-20T22:44:02.8963755Z", - "lastModified": "2021-01-20T05:10:30.5666476Z", + "lastModified": "2021-02-20T21:39:25.9318725Z", "sessionMode": "None" }, { @@ -13836,50 +13836,6 @@ "lastModified": "2021-01-09T06:40:44.2319065Z", "sessionMode": "None" }, - { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "publisherId": "testtestindustryexperiencestest", - "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", - "beneficiary": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "purchaser": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "planId": "silver", - "term": { - "termUnit": "P1M" - }, - "autoRenew": true, - "isTest": false, - "isFreeTrial": false, - "allowedCustomerOperations": [ - "Delete", - "Update", - "Read" - ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", - "storeFront": "ARMApiCall", - "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-02-13T06:06:32.6033421Z", - "sessionMode": "None" - }, { "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", "publisherId": "testtestindustryexperiencestest", @@ -13990,7 +13946,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "92da956e-0fc6-2419-bcbc-87adefe187bc", "x-ms-return-client-request-id": "true" @@ -14000,13 +13956,13 @@ "ResponseHeaders": { "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u0022f8db4045-2f14-4ba2-92ee-36eacbe9ba84\u0022", - "X-Azure-Ref": "0qxUwYAAAAACBEbbzlIwkQZihH9kgyDrzV1NURURHRTA4MTMAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u00227d0b915f-cdf2-4983-bb3c-1983684ff4d3\u0022", + "X-Azure-Ref": "0pQE0YAAAAADgRzOTlD2KQ7CfGX4byyWkV1NURURHRTA4MjEAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "ee0d411c-a7eb-4fbd-a26d-f092c49e79db", - "x-ms-correlationid": "cafb2a5e-7ff4-4068-81bd-00f37d114bd2", - "x-ms-requestid": "cafb2a5e-7ff4-4068-81bd-00f37d114bd2", + "x-ms-activityid": "c719292b-f255-4d9e-a802-d9a609356914", + "x-ms-correlationid": "3a77c69b-9dec-4b9e-9604-009ef66ca6b3", + "x-ms-requestid": "3a77c69b-9dec-4b9e-9604-009ef66ca6b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json index a8b9cf6..3619ec8 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetAllSubscriptionsPagedAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "894d953e-2903-29c1-1b1c-5caef6e2ce28", "x-ms-return-client-request-id": "true" @@ -18,17 +18,17 @@ "ResponseHeaders": { "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u0022c2d88805-fb5b-4d16-8574-3a56231fa6e9\u0022", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u0022d030c1ae-98f9-495b-8e13-c9ccf570794c\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "X-Azure-Ref": "0rBUwYAAAAADFKrQkv1vSQYXP\u002BjfmIClKV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0pQE0YAAAAADyFORvVm3XQ492iuF7\u002BNJhV1NURURHRTA4MDcAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "a893c7d2-2474-4f35-9792-ff539c95a596", - "x-ms-correlationid": "2708f0a5-f42d-4307-82f0-61b1f4a56dc9", - "x-ms-requestid": "2708f0a5-f42d-4307-82f0-61b1f4a56dc9", + "x-ms-activityid": "27a179b7-a877-4e66-a52c-75ce9f410d8d", + "x-ms-correlationid": "056f92ef-05da-49d6-8825-b6b9256d8a9e", + "x-ms-requestid": "056f92ef-05da-49d6-8825-b6b9256d8a9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3067,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "918d903c-5bd9-e5bd-2fc6-4adfa1e48710", "x-ms-return-client-request-id": "true" @@ -3077,13 +3077,13 @@ "ResponseHeaders": { "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u0022fe8a727c-81ed-4222-bcef-69a12b4c5f29\u0022", - "X-Azure-Ref": "0rBUwYAAAAAAdjJLIM86nT4SU8MhMHLAUV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u002203d56c47-7f12-4975-9a70-3cdd466405c7\u0022", + "X-Azure-Ref": "0pgE0YAAAAABAQvqaIf17R6rI3\u002BsZiqheV1NURURHRTA4MDcAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "6868d6ea-0361-4b4e-a95c-b4c4a1a064f5", - "x-ms-correlationid": "df998c77-583a-40d4-af8c-1de6662a8df6", - "x-ms-requestid": "df998c77-583a-40d4-af8c-1de6662a8df6", + "x-ms-activityid": "55cb1e89-e719-49f2-9022-317cd8334b85", + "x-ms-correlationid": "22914a5b-92a5-4722-a9cf-4517c64ee606", + "x-ms-requestid": "22914a5b-92a5-4722-a9cf-4517c64ee606", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5786,8 +5786,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5803,7 +5803,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-21T17:48:41.5747662Z", - "lastModified": "2021-01-21T02:53:46.0117546Z", + "lastModified": "2021-02-21T19:03:58.4250649Z", "sessionMode": "None" }, { @@ -6330,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "65724a3f-3d55-ce4f-3ec2-86a2f8d8e0f9", "x-ms-return-client-request-id": "true" @@ -6338,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118383", + "Content-Length": "118382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u00222a6348f6-7921-4478-9159-e81d567212ee\u0022", - "X-Azure-Ref": "0rBUwYAAAAAClb0GvlAlZQpU/Ctcdv3lgV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u0022bd734adc-f66a-42cf-8896-52ad3143d79d\u0022", + "X-Azure-Ref": "0pgE0YAAAAABW6Qp7C9hvQqA1uCHR9YsVV1NURURHRTA4MDcAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "17bb8a2d-92ff-4e17-8304-8beac9edadf8", - "x-ms-correlationid": "d4a6654c-0cf5-4d8d-ae72-81e51b0e1aec", - "x-ms-requestid": "d4a6654c-0cf5-4d8d-ae72-81e51b0e1aec", + "x-ms-activityid": "806fc4dd-e808-4a52-a9a2-b6d0877f1b87", + "x-ms-correlationid": "8afa43cf-a07e-4416-8fbc-9b7e420f4daf", + "x-ms-requestid": "8afa43cf-a07e-4416-8fbc-9b7e420f4daf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8743,8 +8743,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8760,7 +8760,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T10:45:54.8085763Z", - "lastModified": "2021-01-21T08:39:32.7090194Z", + "lastModified": "2021-02-21T16:09:01.9403794Z", "sessionMode": "None" }, { @@ -10461,8 +10461,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -10478,7 +10478,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-21T18:47:25.2241546Z", - "lastModified": "2021-01-21T21:58:31.1651311Z", + "lastModified": "2021-02-21T00:04:34.880646Z", "sessionMode": "None" }, { @@ -10537,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "579f52d4-2172-81bb-5bf1-9ebeba550405", "x-ms-return-client-request-id": "true" @@ -10545,15 +10545,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "97842", + "Content-Length": "96530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u0022c62ebabe-d80f-4505-8e8d-2749b4d08d17\u0022", - "X-Azure-Ref": "0rBUwYAAAAACgLDKbDZcaQIgwd8uVz5VkV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u0022e9d7241e-e978-47d9-bcb6-258483d5ad24\u0022", + "X-Azure-Ref": "0pgE0YAAAAABHZYuEIfljSppmuSwc1H0/V1NURURHRTA4MDcAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "041a2752-7236-47cb-af7d-7f86f98c16eb", - "x-ms-correlationid": "70df7bd3-74e2-43a2-b803-9da844f1c422", - "x-ms-requestid": "70df7bd3-74e2-43a2-b803-9da844f1c422", + "x-ms-activityid": "2cda0342-95cf-4bd7-9ce7-677f116c1dac", + "x-ms-correlationid": "cb23f887-4659-47db-9cea-5f1959e26341", + "x-ms-requestid": "cb23f887-4659-47db-9cea-5f1959e26341", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13438,8 +13438,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-20T00:00:00Z", - "endDate": "2021-02-19T00:00:00Z", + "startDate": "2021-02-20T00:00:00Z", + "endDate": "2021-03-19T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13455,7 +13455,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-20T22:44:02.8963755Z", - "lastModified": "2021-01-20T05:10:30.5666476Z", + "lastModified": "2021-02-20T21:39:25.9318725Z", "sessionMode": "None" }, { @@ -13836,50 +13836,6 @@ "lastModified": "2021-01-09T06:40:44.2319065Z", "sessionMode": "None" }, - { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "publisherId": "testtestindustryexperiencestest", - "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", - "beneficiary": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "purchaser": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "planId": "silver", - "term": { - "termUnit": "P1M" - }, - "autoRenew": true, - "isTest": false, - "isFreeTrial": false, - "allowedCustomerOperations": [ - "Delete", - "Update", - "Read" - ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", - "storeFront": "ARMApiCall", - "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-02-13T06:06:32.6033421Z", - "sessionMode": "None" - }, { "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", "publisherId": "testtestindustryexperiencestest", @@ -13990,7 +13946,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "a6ce2542-8939-8887-f8b2-307261d34144", "x-ms-return-client-request-id": "true" @@ -14000,13 +13956,13 @@ "ResponseHeaders": { "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:51 GMT", - "ETag": "\u0022c62e524b-28c7-4f95-8439-b05554dff04f\u0022", - "X-Azure-Ref": "0rBUwYAAAAABr8J2cknDsT74ibxz739lwV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:29 GMT", + "ETag": "\u00221b79c76c-de81-49b7-a18b-89cd1a5aada2\u0022", + "X-Azure-Ref": "0pgE0YAAAAADDKKkWzc1bTq\u002BZrj5YInDrV1NURURHRTA4MDcAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "22cd3965-fb3e-4da0-95ad-643249064963", - "x-ms-correlationid": "000b2d28-ae6a-4777-bb53-a3711ad0ab6b", - "x-ms-requestid": "000b2d28-ae6a-4777-bb53-a3711ad0ab6b", + "x-ms-activityid": "f5308c48-ab3b-4ded-84e7-aae476f19236", + "x-ms-correlationid": "6d72137a-df1c-43f4-8950-aa070475fcbd", + "x-ms-requestid": "6d72137a-df1c-43f4-8950-aa070475fcbd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json index 1476f56..29afbfd 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/GetSubscriptionAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "6596abeb-4c02-35df-260a-560791625415", "x-ms-return-client-request-id": "true" @@ -18,17 +18,17 @@ "ResponseHeaders": { "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:53 GMT", - "ETag": "\u0022a76d220a-1c88-4875-a6c3-826c29113f73\u0022", + "Date": "Mon, 22 Feb 2021 19:10:30 GMT", + "ETag": "\u0022a4657c9f-6f60-4247-9ca2-aa752b2ecdd6\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "X-Azure-Ref": "0rBUwYAAAAABVc84L10c7RZw2Atdy965DV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0pgE0YAAAAAC4kvMaCKSPToTYBlbacfxoV1NURURHRTA4MDkAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "ff6b2731-4bf2-499c-a201-064901368873", - "x-ms-correlationid": "d29fdd14-dad3-4c93-8627-0d143242aa0c", - "x-ms-requestid": "d29fdd14-dad3-4c93-8627-0d143242aa0c", + "x-ms-activityid": "2c6bf6f2-ed76-45bb-bf09-a5c698e2a47a", + "x-ms-correlationid": "a72842ed-440f-4a58-8ba0-a24b0a2a8ebd", + "x-ms-requestid": "a72842ed-440f-4a58-8ba0-a24b0a2a8ebd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3067,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "35134656-b675-f417-f50a-9c458168dee5", "x-ms-return-client-request-id": "true" @@ -3077,13 +3077,13 @@ "ResponseHeaders": { "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:53 GMT", - "ETag": "\u0022b68471ee-847d-4ced-a47a-0c11cd6fb61d\u0022", - "X-Azure-Ref": "0rRUwYAAAAACwf\u002Bqdelz2QpnYG\u002BfaNXPSV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:30 GMT", + "ETag": "\u0022f9189bb1-93f4-4b4f-811d-dd83233a2c10\u0022", + "X-Azure-Ref": "0pwE0YAAAAADy/d6n3SxnSZw54QE1ee4nV1NURURHRTA4MDkAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "153b2dc4-aaa9-439f-b576-7f0a6a443da1", - "x-ms-correlationid": "b1372558-4c57-4368-a798-a125738554a3", - "x-ms-requestid": "b1372558-4c57-4368-a798-a125738554a3", + "x-ms-activityid": "dbf8ec9d-01ad-4297-906c-f03814f5e377", + "x-ms-correlationid": "b81433b6-b5f5-46f8-bea3-d12bca93ca2a", + "x-ms-requestid": "b81433b6-b5f5-46f8-bea3-d12bca93ca2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5786,8 +5786,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5803,7 +5803,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-21T17:48:41.5747662Z", - "lastModified": "2021-01-21T02:53:46.0117546Z", + "lastModified": "2021-02-21T19:03:58.4250649Z", "sessionMode": "None" }, { @@ -6330,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "4bb0ac04-1e4f-0ba0-b09c-745fff37f6bb", "x-ms-return-client-request-id": "true" @@ -6338,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118383", + "Content-Length": "118382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:53 GMT", - "ETag": "\u0022d49e6013-1bf8-4dcc-bdd3-cefb33e289dd\u0022", - "X-Azure-Ref": "0rRUwYAAAAACvzh6xdEnTT5gxP0aF/exfV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:30 GMT", + "ETag": "\u00224b29ce8d-d98c-4903-9c79-70eeacfd7ccf\u0022", + "X-Azure-Ref": "0pwE0YAAAAADGSTmNgkfKQ4dNhBhzscVJV1NURURHRTA4MDkAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "609fa0ea-acc6-42d4-80e9-a2012bd02762", - "x-ms-correlationid": "71a36f80-1013-485a-b53f-f5c25111d99d", - "x-ms-requestid": "71a36f80-1013-485a-b53f-f5c25111d99d", + "x-ms-activityid": "2b766ecd-5ad2-493b-b81d-995a69b2b9ab", + "x-ms-correlationid": "d4ef3b30-8c30-467d-ac5d-7edcf4b7da76", + "x-ms-requestid": "d4ef3b30-8c30-467d-ac5d-7edcf4b7da76", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8743,8 +8743,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8760,7 +8760,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T10:45:54.8085763Z", - "lastModified": "2021-01-21T08:39:32.7090194Z", + "lastModified": "2021-02-21T16:09:01.9403794Z", "sessionMode": "None" }, { @@ -10461,8 +10461,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -10478,7 +10478,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-21T18:47:25.2241546Z", - "lastModified": "2021-01-21T21:58:31.1651311Z", + "lastModified": "2021-02-21T00:04:34.880646Z", "sessionMode": "None" }, { @@ -10537,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "d440bbe0-93b7-e396-1caf-a23fda504ff7", "x-ms-return-client-request-id": "true" @@ -10545,15 +10545,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "97842", + "Content-Length": "96530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:53 GMT", - "ETag": "\u00222798a004-062b-49f6-b46d-fce384f9e534\u0022", - "X-Azure-Ref": "0rRUwYAAAAABYmjpx89yiTISR1v/igvtTV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:30 GMT", + "ETag": "\u0022aafb46d0-d7dc-4550-b230-76e1c7b33ef8\u0022", + "X-Azure-Ref": "0pwE0YAAAAAAeuktcg2WFTKzyAfV\u002BQgsYV1NURURHRTA4MDkAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "9bb614c7-65f3-4360-9d06-4b5575411509", - "x-ms-correlationid": "f6e21663-eb7d-4e69-bd11-96cb80f25df6", - "x-ms-requestid": "f6e21663-eb7d-4e69-bd11-96cb80f25df6", + "x-ms-activityid": "6be8805c-3d3e-408c-8dbc-a8771aef45d6", + "x-ms-correlationid": "1516749f-41cb-41e5-b4eb-d437c7392d6e", + "x-ms-requestid": "1516749f-41cb-41e5-b4eb-d437c7392d6e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13438,8 +13438,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-20T00:00:00Z", - "endDate": "2021-02-19T00:00:00Z", + "startDate": "2021-02-20T00:00:00Z", + "endDate": "2021-03-19T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13455,7 +13455,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-20T22:44:02.8963755Z", - "lastModified": "2021-01-20T05:10:30.5666476Z", + "lastModified": "2021-02-20T21:39:25.9318725Z", "sessionMode": "None" }, { @@ -13836,50 +13836,6 @@ "lastModified": "2021-01-09T06:40:44.2319065Z", "sessionMode": "None" }, - { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "publisherId": "testtestindustryexperiencestest", - "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", - "beneficiary": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "purchaser": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "planId": "silver", - "term": { - "termUnit": "P1M" - }, - "autoRenew": true, - "isTest": false, - "isFreeTrial": false, - "allowedCustomerOperations": [ - "Delete", - "Update", - "Read" - ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", - "storeFront": "ARMApiCall", - "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-02-13T06:06:32.6033421Z", - "sessionMode": "None" - }, { "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", "publisherId": "testtestindustryexperiencestest", @@ -13990,7 +13946,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "437e3869-21f6-7103-0d3f-33da108d2d45", "x-ms-return-client-request-id": "true" @@ -14000,13 +13956,13 @@ "ResponseHeaders": { "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:53 GMT", - "ETag": "\u0022d93a5575-e40e-4edc-8ccf-3035b2d3eaab\u0022", - "X-Azure-Ref": "0rRUwYAAAAADSCUr9HlYnQq8xRRDk6NGVV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:30 GMT", + "ETag": "\u0022b535c12e-c80d-4f14-bb1d-58dda63611ea\u0022", + "X-Azure-Ref": "0pwE0YAAAAABQ6tTCW18uQq7h3nELJ\u002BpAV1NURURHRTA4MDkAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "bccff6ed-8086-4a60-b92c-032953fc699d", - "x-ms-correlationid": "a3226637-9d26-4d6a-98cb-633a6449169f", - "x-ms-requestid": "a3226637-9d26-4d6a-98cb-633a6449169f", + "x-ms-activityid": "d4aa1078-c61f-4b7d-af83-5e1f2b31a450", + "x-ms-correlationid": "bdfebcc1-db49-473f-891a-55c70492f0b7", + "x-ms-requestid": "bdfebcc1-db49-473f-891a-55c70492f0b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -18122,10 +18078,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8dce912a5ca1b64d9766f84036b9551f-5b003905ab160f41-00", + "traceparent": "00-5ca4ff34aa50e8499966bf7ac21195d7-484941c4cd11ec43-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "a1d5ea18-0cd1-0701-83a9-1057a67c4051", "x-ms-return-client-request-id": "true" @@ -18135,13 +18091,13 @@ "ResponseHeaders": { "Content-Length": "1008", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:53 GMT", - "ETag": "\u00228c605d97-c3e5-455e-9edb-97e172d516c9\u0022", - "X-Azure-Ref": "0rRUwYAAAAABXznvm3DSQQLFZeWR2RusnV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:30 GMT", + "ETag": "\u0022c256d4bc-627f-4f85-af1f-487d9ec16902\u0022", + "X-Azure-Ref": "0pwE0YAAAAABZbMIjBL2kRIOwCyPpg92yV1NURURHRTA4MDkAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "03881e17-706b-4f3b-b9ab-48ffa03f8aed", - "x-ms-correlationid": "46992060-d1cf-4c31-a08d-2079c2581122", - "x-ms-requestid": "46992060-d1cf-4c31-a08d-2079c2581122", + "x-ms-activityid": "c97be239-34a6-4005-a794-8c60dd3c268e", + "x-ms-correlationid": "7d3bce31-05f2-41f2-88df-54bbdef23f4f", + "x-ms-requestid": "7d3bce31-05f2-41f2-88df-54bbdef23f4f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json index 56533e4..85d3f3d 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/OASUpdateFeb22021SubscriptionAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "b98a873c-14d4-0dea-3d18-83eac5b14d0b", "x-ms-return-client-request-id": "true" @@ -18,17 +18,17 @@ "ResponseHeaders": { "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:57 GMT", - "ETag": "\u002254b83037-afa2-4394-b2ed-0ac53d43e544\u0022", + "Date": "Mon, 22 Feb 2021 19:10:34 GMT", + "ETag": "\u002244a1f623-a5cb-4a15-a515-842d6b6b259c\u0022", "Set-Cookie": [ "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "X-Azure-Ref": "0sRUwYAAAAAATPdwSFtFzTIdekBO09ls\u002BV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0qwE0YAAAAAABsFB6BijXR6mzKsKPlYs3V1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "6b73dc3d-b71d-42ea-b9db-c43e28890dc7", - "x-ms-correlationid": "62424ce5-c051-4fde-9ae2-db8969a28c46", - "x-ms-requestid": "62424ce5-c051-4fde-9ae2-db8969a28c46", + "x-ms-activityid": "6e0e7027-8e30-4fdc-a887-56cb49d6f3de", + "x-ms-correlationid": "af8b4cde-4e1c-4b1e-a4ff-30a6c9a443a5", + "x-ms-requestid": "af8b4cde-4e1c-4b1e-a4ff-30a6c9a443a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3067,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "58c84667-d912-726a-0f5f-e1f268972bad", "x-ms-return-client-request-id": "true" @@ -3077,13 +3077,13 @@ "ResponseHeaders": { "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:57 GMT", - "ETag": "\u0022ddad1a9c-9e1c-49e8-a78e-238794705513\u0022", - "X-Azure-Ref": "0sRUwYAAAAAAldC3krTakRLv/bWXrG7/fV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:35 GMT", + "ETag": "\u00221615c09b-b1ae-4f04-bd51-a17f6dc1e4fc\u0022", + "X-Azure-Ref": "0qwE0YAAAAAC4fUfEDD4GTLslK7jdUYIgV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "be1f11ed-c77d-482f-b4a6-67391430ee8a", - "x-ms-correlationid": "9a493117-9b60-476a-b1ba-53963ee8fb4c", - "x-ms-requestid": "9a493117-9b60-476a-b1ba-53963ee8fb4c", + "x-ms-activityid": "a9189b51-df8e-41f8-aa27-35b6d6c7e48a", + "x-ms-correlationid": "c2b5e3ac-f856-4e87-b578-1ea4ae5bbea3", + "x-ms-requestid": "c2b5e3ac-f856-4e87-b578-1ea4ae5bbea3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5786,8 +5786,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5803,7 +5803,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-21T17:48:41.5747662Z", - "lastModified": "2021-01-21T02:53:46.0117546Z", + "lastModified": "2021-02-21T19:03:58.4250649Z", "sessionMode": "None" }, { @@ -6330,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "7e82abb5-f5e9-51f9-df68-3b35111549f2", "x-ms-return-client-request-id": "true" @@ -6338,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118383", + "Content-Length": "118382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:57 GMT", - "ETag": "\u0022ef9ecf42-3341-4c0a-b3a8-d8345023421c\u0022", - "X-Azure-Ref": "0sRUwYAAAAAD9Yrp6BY2QSL1ssH7BSUWZV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:35 GMT", + "ETag": "\u0022e4bf2af0-ef09-481e-8d94-1e952c50eb43\u0022", + "X-Azure-Ref": "0rAE0YAAAAADYEBe5DGO5QruEQ6K3v\u002BDaV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "1a456ab8-7c7c-4cc3-bef7-3cbb88fd99e9", - "x-ms-correlationid": "8871859c-0503-41b6-8cd0-cf0e7663f0cf", - "x-ms-requestid": "8871859c-0503-41b6-8cd0-cf0e7663f0cf", + "x-ms-activityid": "5c330f5c-bfc8-4c9f-a990-91d846d7d3be", + "x-ms-correlationid": "594492ea-8cf6-43b8-90aa-ca1a7691da77", + "x-ms-requestid": "594492ea-8cf6-43b8-90aa-ca1a7691da77", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8743,8 +8743,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8760,7 +8760,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T10:45:54.8085763Z", - "lastModified": "2021-01-21T08:39:32.7090194Z", + "lastModified": "2021-02-21T16:09:01.9403794Z", "sessionMode": "None" }, { @@ -10461,8 +10461,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -10478,7 +10478,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-21T18:47:25.2241546Z", - "lastModified": "2021-01-21T21:58:31.1651311Z", + "lastModified": "2021-02-21T00:04:34.880646Z", "sessionMode": "None" }, { @@ -10537,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "bd3dae98-ac14-c0c4-3a99-004d6dad3868", "x-ms-return-client-request-id": "true" @@ -10545,15 +10545,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "97842", + "Content-Length": "96530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:57 GMT", - "ETag": "\u00220d9fe50c-cdff-4cc4-8c81-b0a6ed25227e\u0022", - "X-Azure-Ref": "0shUwYAAAAAA8lKAprTtmT76prkJhjU6EV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:35 GMT", + "ETag": "\u0022f9d0ea94-73d6-44ee-9e1c-3313a66cb02a\u0022", + "X-Azure-Ref": "0rAE0YAAAAAACjEcP8EcST6aLLvIgtk52V1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "693e0391-293a-41cf-9cef-ef21950acb0b", - "x-ms-correlationid": "f7a6f471-ed36-4cd1-8641-f0485c4a218c", - "x-ms-requestid": "f7a6f471-ed36-4cd1-8641-f0485c4a218c", + "x-ms-activityid": "e5b73b1c-c9fc-4374-89d4-d39f0d769ee2", + "x-ms-correlationid": "5d675d51-ed02-4f48-acca-f79215b8d071", + "x-ms-requestid": "5d675d51-ed02-4f48-acca-f79215b8d071", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13438,8 +13438,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-20T00:00:00Z", - "endDate": "2021-02-19T00:00:00Z", + "startDate": "2021-02-20T00:00:00Z", + "endDate": "2021-03-19T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13455,7 +13455,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-20T22:44:02.8963755Z", - "lastModified": "2021-01-20T05:10:30.5666476Z", + "lastModified": "2021-02-20T21:39:25.9318725Z", "sessionMode": "None" }, { @@ -13836,50 +13836,6 @@ "lastModified": "2021-01-09T06:40:44.2319065Z", "sessionMode": "None" }, - { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "publisherId": "testtestindustryexperiencestest", - "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", - "beneficiary": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "purchaser": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "planId": "silver", - "term": { - "termUnit": "P1M" - }, - "autoRenew": true, - "isTest": false, - "isFreeTrial": false, - "allowedCustomerOperations": [ - "Delete", - "Update", - "Read" - ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", - "storeFront": "ARMApiCall", - "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-02-13T06:06:32.6033421Z", - "sessionMode": "None" - }, { "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", "publisherId": "testtestindustryexperiencestest", @@ -13990,7 +13946,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "639c1be2-8cd8-cedd-b684-d88582d352b5", "x-ms-return-client-request-id": "true" @@ -14000,13 +13956,13 @@ "ResponseHeaders": { "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:57 GMT", - "ETag": "\u0022df32b86b-a089-4876-b266-22ea98575130\u0022", - "X-Azure-Ref": "0shUwYAAAAABdhqVd60rTTYfoMC9/aCVxV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:35 GMT", + "ETag": "\u0022a73d3735-6ecb-4fbd-92f5-e7ad16f0825f\u0022", + "X-Azure-Ref": "0rAE0YAAAAACfSvKCvXy8R5XLyJ232\u002B0pV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "816cf1d5-c17b-451d-8105-852bd5dc6237", - "x-ms-correlationid": "3f6cd611-380a-4d6c-acd1-ce03a9e3e64c", - "x-ms-requestid": "3f6cd611-380a-4d6c-acd1-ce03a9e3e64c", + "x-ms-activityid": "fb50eb55-5777-402d-9003-2996f4de037e", + "x-ms-correlationid": "2e54c0b6-770a-43a1-8466-c970e22e7145", + "x-ms-requestid": "2e54c0b6-770a-43a1-8466-c970e22e7145", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -18122,10 +18078,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0cf751c6bba05042bdb30b9072ef8182-23090c1ec81b8e4b-00", + "traceparent": "00-873f824f104a9441aaeee0b3879145cb-1b7ce285b0c0594b-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "516b5df1-d410-0090-5fe5-bb26da8eafb6", "x-ms-return-client-request-id": "true" @@ -18135,13 +18091,13 @@ "ResponseHeaders": { "Content-Length": "1008", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:57 GMT", - "ETag": "\u0022a1b8236c-0d96-4a9f-b5dc-d8ade1a613ca\u0022", - "X-Azure-Ref": "0shUwYAAAAAC8F/6XmqfGQpc4aIpunHNLV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:35 GMT", + "ETag": "\u00226df56c08-ee02-4d10-82dc-2e51cfe82e76\u0022", + "X-Azure-Ref": "0rAE0YAAAAAB9UDvoYtuVTK0LwwRAf/arV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "737bc62c-0bb8-4c66-a903-1da6f5f1898b", - "x-ms-correlationid": "15d08d4b-c904-4a8f-8ed4-5fd3990abc3e", - "x-ms-requestid": "15d08d4b-c904-4a8f-8ed4-5fd3990abc3e", + "x-ms-activityid": "0f1c23a2-6755-4d48-af80-227457f09002", + "x-ms-correlationid": "5dad85c9-0abc-4dc4-a519-43156d45d055", + "x-ms-requestid": "5dad85c9-0abc-4dc4-a519-43156d45d055", "X-Powered-By": "ASP.NET" }, "ResponseBody": { diff --git a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json index 2f5fdac..2af9d4c 100644 --- a/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json +++ b/tests/Microsoft.Marketplace.Tests/SessionRecords/FulfillmentTests/UpdateSubscriptionAsync.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "01ecc810-a0fe-0522-8aa2-dadb8f6fca87", "x-ms-return-client-request-id": "true" @@ -18,17 +18,17 @@ "ResponseHeaders": { "Content-Length": "85609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:58 GMT", - "ETag": "\u00226f8c64f5-e920-49c2-8455-48a956951fa8\u0022", + "Date": "Mon, 22 Feb 2021 19:10:36 GMT", + "ETag": "\u00222ac9b3b2-efb0-4089-aef9-d4c7cadfc488\u0022", "Set-Cookie": [ - "ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", - "ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" + "ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com", + "ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com" ], - "X-Azure-Ref": "0sxUwYAAAAABIhGXYH9i6TKh3uwBa9vWGV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0rQE0YAAAAACV9dC49eDFToxOI6vYf\u002BMSV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "12f6ea6d-af11-4df7-bf9d-2b14630bc01e", - "x-ms-correlationid": "4282ce0b-50a5-49f5-a331-1b11fcc59776", - "x-ms-requestid": "4282ce0b-50a5-49f5-a331-1b11fcc59776", + "x-ms-activityid": "7f6880cf-ab67-48dd-b3f3-5cbe657e2781", + "x-ms-correlationid": "bc1101b7-7a4d-460e-bd95-48b18b3c89fb", + "x-ms-requestid": "bc1101b7-7a4d-460e-bd95-48b18b3c89fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3067,7 +3067,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "2e9df491-e219-3e56-b088-86b8388091f5", "x-ms-return-client-request-id": "true" @@ -3077,13 +3077,13 @@ "ResponseHeaders": { "Content-Length": "89603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:58 GMT", - "ETag": "\u0022de5a8b8f-a6dd-484f-8a2f-20c73d78aacc\u0022", - "X-Azure-Ref": "0sxUwYAAAAAD6hz1Hecx5TaM2kzjEFzOgV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:37 GMT", + "ETag": "\u00220c1cb1a9-db77-4bcd-9a72-703ed1b8e6bb\u0022", + "X-Azure-Ref": "0rQE0YAAAAABXSNdUSsnaRKtynxk9/x16V1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "915cfcac-e2cb-49ca-b841-050c3aa9f82d", - "x-ms-correlationid": "8a640257-7d10-40db-a412-cf70e3581d08", - "x-ms-requestid": "8a640257-7d10-40db-a412-cf70e3581d08", + "x-ms-activityid": "61a5c2e6-da63-4cc6-be87-f85b93642214", + "x-ms-correlationid": "ff303aba-bdc5-409b-b30c-f53ce5ec51f4", + "x-ms-requestid": "ff303aba-bdc5-409b-b30c-f53ce5ec51f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5786,8 +5786,8 @@ }, "planId": "gold", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -5803,7 +5803,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-08-21T17:48:41.5747662Z", - "lastModified": "2021-01-21T02:53:46.0117546Z", + "lastModified": "2021-02-21T19:03:58.4250649Z", "sessionMode": "None" }, { @@ -6330,7 +6330,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "9a49e4b0-9cd2-4d6e-41b0-81e1cf2d7718", "x-ms-return-client-request-id": "true" @@ -6338,15 +6338,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "118383", + "Content-Length": "118382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:58 GMT", - "ETag": "\u0022db6831b9-7a99-4a2c-842c-3d896a932960\u0022", - "X-Azure-Ref": "0sxUwYAAAAAB3oiU64qvTTKdsJsQdWVg6V1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:37 GMT", + "ETag": "\u00224c7c4e4e-12de-4be6-8adf-915fe610fcb8\u0022", + "X-Azure-Ref": "0rQE0YAAAAAB0SFMWOuhjQ4xjx1Ahn6qAV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "ec899c1a-bd31-47b6-ac11-a877ead549d3", - "x-ms-correlationid": "eee4c266-99c4-443a-a1bd-220bb0c166ae", - "x-ms-requestid": "eee4c266-99c4-443a-a1bd-220bb0c166ae", + "x-ms-activityid": "a8196c58-ebf0-463b-86e2-f629f80dc6c3", + "x-ms-correlationid": "2ec17962-a404-41c1-99af-1046d52d1def", + "x-ms-requestid": "2ec17962-a404-41c1-99af-1046d52d1def", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8743,8 +8743,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -8760,7 +8760,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-05-06T10:45:54.8085763Z", - "lastModified": "2021-01-21T08:39:32.7090194Z", + "lastModified": "2021-02-21T16:09:01.9403794Z", "sessionMode": "None" }, { @@ -10461,8 +10461,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-21T00:00:00Z", - "endDate": "2021-02-20T00:00:00Z", + "startDate": "2021-02-21T00:00:00Z", + "endDate": "2021-03-20T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -10478,7 +10478,7 @@ "storeFront": "ARMApiCall", "sandboxType": "None", "created": "2021-01-21T18:47:25.2241546Z", - "lastModified": "2021-01-21T21:58:31.1651311Z", + "lastModified": "2021-02-21T00:04:34.880646Z", "sessionMode": "None" }, { @@ -10537,7 +10537,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "5407abdd-f736-a022-4e61-0cad158aebb6", "x-ms-return-client-request-id": "true" @@ -10545,15 +10545,15 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "97842", + "Content-Length": "96530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:58 GMT", - "ETag": "\u00223a211a3d-f19f-410b-a8e8-6fa3a09d269d\u0022", - "X-Azure-Ref": "0sxUwYAAAAADhetnQesh0Q7W18Bt/z39XV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:37 GMT", + "ETag": "\u0022c48b1bca-e6c3-4c19-817b-f6baef9c1bf7\u0022", + "X-Azure-Ref": "0rQE0YAAAAACVmGg1o4KBR4IQsonFoFuqV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "7d331ad4-6eb7-4826-a8e4-98c0246a2ba9", - "x-ms-correlationid": "e66fa77c-ffb8-4728-acac-973bc74fc31a", - "x-ms-requestid": "e66fa77c-ffb8-4728-acac-973bc74fc31a", + "x-ms-activityid": "3effead2-cc3d-420c-8f2c-cfad3d2d9c38", + "x-ms-correlationid": "98b86bed-fb76-4ced-a039-7019032b482c", + "x-ms-requestid": "98b86bed-fb76-4ced-a039-7019032b482c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13438,8 +13438,8 @@ }, "planId": "silver", "term": { - "startDate": "2021-01-20T00:00:00Z", - "endDate": "2021-02-19T00:00:00Z", + "startDate": "2021-02-20T00:00:00Z", + "endDate": "2021-03-19T00:00:00Z", "termUnit": "P1M" }, "autoRenew": true, @@ -13455,7 +13455,7 @@ "storeFront": "AzurePortal", "sandboxType": "None", "created": "2020-10-20T22:44:02.8963755Z", - "lastModified": "2021-01-20T05:10:30.5666476Z", + "lastModified": "2021-02-20T21:39:25.9318725Z", "sessionMode": "None" }, { @@ -13836,50 +13836,6 @@ "lastModified": "2021-01-09T06:40:44.2319065Z", "sessionMode": "None" }, - { - "id": "0ee05fcf-0dcb-f015-d459-58b630f59525", - "publisherId": "testtestindustryexperiencestest", - "offerId": "contoso_saas_offer-preview", - "name": "redmond120", - "saasSubscriptionStatus": "PendingFulfillmentStart", - "beneficiary": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "purchaser": { - "emailId": "ercenk@microsoft.com", - "objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "puid": "10033FFFA7593A0D", - "iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "clienT-IP": "40.80.156.103:25728" - }, - "planId": "silver", - "term": { - "termUnit": "P1M" - }, - "autoRenew": true, - "isTest": false, - "isFreeTrial": false, - "allowedCustomerOperations": [ - "Delete", - "Update", - "Read" - ], - "sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0", - "fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4", - "storeFront": "ARMApiCall", - "sandboxType": "None", - "created": "2021-01-20T18:29:27.3784172Z", - "lastModified": "2021-02-13T06:06:32.6033421Z", - "sessionMode": "None" - }, { "id": "e6e6d9b5-6fc9-ea24-411e-48e801a55515", "publisherId": "testtestindustryexperiencestest", @@ -13990,7 +13946,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "2303514c-2325-8de1-adc5-4f9f97ebe5ff", "x-ms-return-client-request-id": "true" @@ -14000,13 +13956,13 @@ "ResponseHeaders": { "Content-Length": "115884", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:58 GMT", - "ETag": "\u00224825d9db-8b63-4b74-aa8d-6cc4b94007f8\u0022", - "X-Azure-Ref": "0sxUwYAAAAAC8RPp0mw5VRq1TCMqg6INnV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:37 GMT", + "ETag": "\u002231334482-ca0b-41a8-b315-2cc4af56e564\u0022", + "X-Azure-Ref": "0rQE0YAAAAACU0Ek\u002BZx8mSYM7CZpGQKoJV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "9a3cd66c-8eda-4e2a-b4fc-410f44ef2435", - "x-ms-correlationid": "fc2d1b28-e269-4c63-bd4a-76c0b90e42f6", - "x-ms-requestid": "fc2d1b28-e269-4c63-bd4a-76c0b90e42f6", + "x-ms-activityid": "52b8bda0-db47-457a-b111-18ddd4f6a0df", + "x-ms-correlationid": "a39ec998-7081-4c11-b397-ccb388207d0f", + "x-ms-requestid": "a39ec998-7081-4c11-b397-ccb388207d0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -18123,10 +18079,10 @@ "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-63d2766dddbb8d4e9c7fe76f483ec2d6-3692b95723d2ee44-00", + "traceparent": "00-c90eb969777eea40948359a7e185cdb4-582c7d520ff87749-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "c461398f-c786-a290-6dd6-5d55be3b755f", "x-ms-return-client-request-id": "true" @@ -18137,29 +18093,29 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 19 Feb 2021 19:46:59 GMT", - "Operation-Id": "0dc96515-6031-46bc-be10-99d09430ccfb", - "Operation-Location": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/0dc96515-6031-46bc-be10-99d09430ccfb?api-version=2018-08-31", + "Date": "Mon, 22 Feb 2021 19:10:37 GMT", + "Operation-Id": "62b41927-af19-49db-b9cf-f403948a61f6", + "Operation-Location": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/62b41927-af19-49db-b9cf-f403948a61f6?api-version=2018-08-31", "Retry-After": "10", - "X-Azure-Ref": "0sxUwYAAAAACEQlRUfwBaR7U5Rp0NCbemV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "X-Azure-Ref": "0rQE0YAAAAACClTyBUogBSrWJ1Tus2etYV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "4686de75-b73a-4868-a73b-2d0fb1ecb89e", - "x-ms-correlationid": "0dc96515-6031-46bc-be10-99d09430ccfb", - "x-ms-requestid": "0dc96515-6031-46bc-be10-99d09430ccfb", + "x-ms-activityid": "5bc97562-921c-4913-a14b-d4ff98a100e7", + "x-ms-correlationid": "62b41927-af19-49db-b9cf-f403948a61f6", + "x-ms-requestid": "62b41927-af19-49db-b9cf-f403948a61f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": [] }, { - "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/0dc96515-6031-46bc-be10-99d09430ccfb?api-version=2018-08-31", + "RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/62b41927-af19-49db-b9cf-f403948a61f6?api-version=2018-08-31", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1606207df8e73244b354fcd14f4087f7-1aecd7da8a9fa946-00", + "traceparent": "00-37fd5cdf5020844d836fd06328eb10ea-0f738ad4e1c9ee42-00", "User-Agent": [ "azsdk-net-Microsoft.Marketplace/1.0.0", - "(.NET 5.0.2; Microsoft Windows 10.0.21313)" + "(.NET 5.0.2; Microsoft Windows 10.0.21318)" ], "x-ms-client-request-id": "5d0f9276-208a-3078-0374-be33fbbf1294", "x-ms-return-client-request-id": "true" @@ -18169,24 +18125,24 @@ "ResponseHeaders": { "Content-Length": "372", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 19 Feb 2021 19:46:59 GMT", - "ETag": "\u00229c78a1ec-c46e-4d9f-a83f-95212523ac12\u0022", - "X-Azure-Ref": "0sxUwYAAAAABuwlqrwfetRaV4T\u002BdIunFkV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", + "Date": "Mon, 22 Feb 2021 19:10:37 GMT", + "ETag": "\u0022658ebe34-fc1c-4b74-8b55-2d2adad0a367\u0022", + "X-Azure-Ref": "0rgE0YAAAAACnfnzC0dcGTr7tZmFFiSeXV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4", "X-Content-Type-Options": "nosniff", - "x-ms-activityid": "38046609-30c0-495f-a730-9cc576834469", - "x-ms-correlationid": "b4819ad4-3505-43b4-8f58-2974c256d34f", - "x-ms-requestid": "b4819ad4-3505-43b4-8f58-2974c256d34f", + "x-ms-activityid": "92f6ce32-e7fa-4b60-9d62-8c0245537476", + "x-ms-correlationid": "6ccea39f-4d7d-4052-9ca0-6628c1884752", + "x-ms-requestid": "6ccea39f-4d7d-4052-9ca0-6628c1884752", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "0dc96515-6031-46bc-be10-99d09430ccfb", - "activityId": "0dc96515-6031-46bc-be10-99d09430ccfb", + "id": "62b41927-af19-49db-b9cf-f403948a61f6", + "activityId": "62b41927-af19-49db-b9cf-f403948a61f6", "publisherId": "testtestindustryexperiencestest", "offerId": "ercsaastest1-preview", "planId": "gold", "operationRequestSource": "Partner", "subscriptionId": "de8efdae-6fa2-47ba-7903-3ccda226f82f", - "timeStamp": "2021-02-19T19:46:59.6111668Z", + "timeStamp": "2021-02-22T19:10:37.8518255Z", "action": "ChangePlan", "status": "NotStarted" }