-
Notifications
You must be signed in to change notification settings - Fork 19
Description
private readonly ClerkBackendApi _clerkBackendApi; injected through constructor
var request = new ListInvitationsRequest
{
Status = ListInvitationsQueryParamStatus.Pending,
Paginated = true,
Limit = 10,
Offset = 0
};
var response = await _clerkBackendApi.Invitations.ListAsync(request);
it's work fine without pagination (Paginated to false)
Exception:
Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[Clerk.BackendAPI.Models.Components.Invitation]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'data', line 1, position 8.
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings)
at Clerk.BackendAPI.Utils.ResponseBodyDeserializer.Deserialize[T](String json, NullValueHandling nullValueHandling, MissingMemberHandling missingMemberHandling)
at Clerk.BackendAPI.Invitations.ListAsync(ListInvitationsRequest request, RetryConfig retryConfig)