Class RequestsRequestBuilder.RequestsRequestBuilderGetQueryParameters
Retrieves a paginated list of data requests created by the authenticated user.Supports filtering, sorting, and pagination parameters.Response Body: Paginated array of data request objects
public class RequestsRequestBuilder.RequestsRequestBuilderGetQueryParameters
- Inheritance
-
RequestsRequestBuilder.RequestsRequestBuilderGetQueryParameters
- Inherited Members
Properties
FiltercreatedAt
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BcreatedAt%5D")]
public string? FiltercreatedAt { get; set; }
Property Value
FiltereffectiveFrom
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BeffectiveFrom%5D")]
public string? FiltereffectiveFrom { get; set; }
Property Value
FiltereffectiveTo
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BeffectiveTo%5D")]
public string? FiltereffectiveTo { get; set; }
Property Value
FilterendDate
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BendDate%5D")]
public string? FilterendDate { get; set; }
Property Value
FilterisActive
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BisActive%5D")]
public string? FilterisActive { get; set; }
Property Value
FilterprojectId
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BprojectId%5D")]
public string? FilterprojectId { get; set; }
Property Value
FilterreoccuringInterval
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BreoccuringInterval%5D")]
public string? FilterreoccuringInterval { get; set; }
Property Value
FilterscheduleInterval
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BscheduleInterval%5D")]
public string? FilterscheduleInterval { get; set; }
Property Value
FilterstartDate
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BstartDate%5D")]
public string? FilterstartDate { get; set; }
Property Value
FilterupdatedAt
Return only the data requests in which the specified field has the specified value
[QueryParameter("filter%5BupdatedAt%5D")]
public string? FilterupdatedAt { get; set; }
Property Value
Limit
The number of data connector objects to return
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
Offset
The number of data objects to skip before starting to collect the result set
[QueryParameter("offset")]
public int? Offset { get; set; }
Property Value
- int?
Sort
The sort order of returned data connector objects
[QueryParameter("sort")]
public GetSortQueryParameterType? Sort { get; set; }
Property Value
SortFields
A string of comma-separated names of the fields by which to sort the returned data requests
[QueryParameter("sortFields")]
public string? SortFields { get; set; }