Search Projects

GET/api/projects/search/{keyword}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
keyword String Search keywords
curl -X GET "https://yoursite.com/api/projects/search/acme" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

{
		"id": "2",
		"title": "project 1",
		"description": "",
		"start_date": null,
		"deadline": null,
		"client_id": "2",
		"created_date": "2021-09-12",
		"created_by": "1",
		"status": "open",
		"starred_by": "",
		"estimate_id": "0",
		"order_id": "0",
		"deleted": "0",
		"company_name": "jdoe",
		"currency_symbol": "INR",
		"total_points": null,
		"completed_points": null
}
MethodGET
Path/api/projects/search/{keyword}
GroupProjects
Sincev1.0.0
Defined inRestApi/Controllers/ProjectsController.php