Class JobsRequestBuilder.JobsRequestBuilderGetQueryParameters
Retrieves a paginated list of all jobs spawned by the authenticated user's data requests.Supports filtering, sorting, and pagination parameters.Response Body: Paginated array of job objects
public class JobsRequestBuilder.JobsRequestBuilderGetQueryParameters
- Inheritance
-
JobsRequestBuilder.JobsRequestBuilderGetQueryParameters
- Inherited Members
Properties
FiltercompletedAt
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BcompletedAt%5D")]
public string? FiltercompletedAt { get; set; }
Property Value
FiltercompletionStatus
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BcompletionStatus%5D")]
public string? FiltercompletionStatus { get; set; }
Property Value
FiltercreatedAt
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BcreatedAt%5D")]
public string? FiltercreatedAt { get; set; }
Property Value
FilterendDate
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BendDate%5D")]
public string? FilterendDate { get; set; }
Property Value
FilterprojectId
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BprojectId%5D")]
public string? FilterprojectId { get; set; }
Property Value
FilterstartDate
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BstartDate%5D")]
public string? FilterstartDate { get; set; }
Property Value
FilterstartedAt
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5BstartedAt%5D")]
public string? FilterstartedAt { get; set; }
Property Value
Filterstatus
Return only the Data Connector jobs in which the specified field has the specified value
[QueryParameter("filter%5Bstatus%5D")]
public string? Filterstatus { 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?
ProjectId
Project ID of the returned Data Connector objects
[QueryParameter("projectId")]
public string? ProjectId { get; set; }
Property Value
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 jobs
[QueryParameter("sortFields")]
public string? SortFields { get; set; }