You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.
Sending a GET request to the Web API with an array of parameters, e.g .:
GET {{url}}/check?archival=1&ids[0].type=gitid&ids[0].value=123456&ids[1].type=shortid&ids[1].value=d4a
The archival parameter is inserted into the object, the ids list is not.
Query object class looks like this:
public class CheckIdentifiers : IQuery<CheckIdentifiersDto>
{
public IList<Identifier> Ids { get; set; }
public bool Archival { get; set; }
}
public class Identifier
{
public string Type { get; set; }
public string Value { get; set; }
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Sending a GET request to the Web API with an array of parameters, e.g .:
The
archival
parameter is inserted into the object, theids
list is not.Query object class looks like this:
The text was updated successfully, but these errors were encountered: