StarterTemplate ASP.NET Host

<back to all web services

RequestProjectTaskAll

ProjectTask Service

The following routes are available for this service:
GET/service/api/v2/projects/{ProjectId}/agiletasksReturns the list of agile tasks in a projectThe authenticating user must have the Read privilege for Agile Tasks.
Parameters:
NameParameterData TypeRequiredDescription
ProjectIdpathintYesThe ID of the project that contains agile tasks
OffsetqueryintNoThe number of agile tasks to skip before counting the returned agile tasks
LimitqueryintNoThe maximum number of agile tasks to return
FilterquerystringNoThe filter expression to apply to the list of agile tasks

To override the Content-type in your clients HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/RequestProjectTaskAll HTTP/1.1 
Host: rest.qacomplete.smartbear.com 
Content-Type: text/jsv
Content-Length: length

{
	project_id: 0,
	offset: 0,
	limit: 0,
	filter: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	results: 
	[
		{
			project_id: 0,
			id: 0,
			task_type_code: String,
			title: String,
			pct_complete: 0,
			est_hrs: 0,
			actual_hrs: 0,
			est_cost: 0,
			actual_cost: 0,
			requested_by: String,
			owner_user_id: 0,
			assignee_user_id: 0,
			priority_code: String,
			status_code: String,
			grouping: String,
			sub_grouping: String,
			keywords: String,
			sort_order: 0,
			description: String,
			original_id: 0,
			import_id: 0,
			folder_id: 0,
			est_start: 0001-01-01,
			est_finish: 0001-01-01,
			act_start: 0001-01-01,
			act_finish: 0001-01-01,
			est_hrs_remaining: 0,
			act_hrs: 0,
			update_user_id: 0,
			date_created: 0001-01-01,
			date_updated: 0001-01-01,
			user_name: String,
			owner_name: String,
			assigned_to_name: String,
			event_type: String,
			notes_description: String,
			nbr_files: 0,
			nbr_notes: 0,
			nbr_events: 0,
			nbr_tasks: 0,
			folder_name: String,
			nbr_escalations: 0,
			date_last_escalated: 0001-01-01,
			last_escalation_rule_id: 0,
			last_escalation_rule: String,
			scheduled_event_id: 0,
			entity_code: String,
			fk_id: 0,
			__permissions: 
			{
				acl: 0
			}
		}
	]
}