# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Tasks/TaskRecords
?filter_id=0&show_completed=true&simple_search_for=test
&limit_records=100&from_sw=true&only_switems=false
&ipage_displayed=1&show_cancelled=true
To get the tasks records, you need to make a GET call to the following url
:
http://localhost:8888/api/Tasks/TaskRecords
Result example :
[
{
"subject": "string",
"part_number": "string",
"allocated": 0,
"complete": 0,
"priority": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| filter_id | query | long | Filter Id. |
| show_completed | query | boolean | Show Completed (Optional - default true). |
| simple_search_for | query | string | Simple Searchfor (Optional - default ""). |
| limit_records | query | long | Limit Records (Optional - default 100). A limit on the number of objects to be returned, between 1 and 100. |
| from_sw | query | boolean | From SolidWorkds (Optional - default false). |
| only_switems | query | boolean | Only SolidWorkds Items (Optional - default true). |
| ipage_displayed | query | integer | Page Displayed (Optional - default 1). A cursor for use in pagination. |
| show_cancelled | query | boolean | Show Cancelled (Optional - default true). |
| Authorization | header | string | Add Authorization header token |