GET api/v2/projects?Skip={Skip}&Take={Take}&Since={Since}&Name={Name}
Get all projects
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Skip |
Number of items you want to skip in the search (optional) |
integer |
None. |
Take |
Number of items to return in the result set of the search operation (optional) |
integer |
None. |
Since |
Return only items which have Update-Date greater then (optional) |
date |
None. |
Name |
Filter by entity name (if applicable) |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
ProjectListName | Description | Type | Additional information |
---|---|---|---|
projects |
Model collection |
Collection of ProjectDetails |
None. |
Response Formats
application/xml, text/xml
Sample:
<projects xmlns="urn:tagvue:am"> <project entity-id="sample string 4"> <status>inactive</status> <name>sample string 1</name> <code>sample string 2</code> <update-date>2025-05-30T18:16:46.7798588-07:00</update-date> </project> <project entity-id="sample string 4"> <status>inactive</status> <name>sample string 1</name> <code>sample string 2</code> <update-date>2025-05-30T18:16:46.7798588-07:00</update-date> </project> </projects>
application/json, text/json
Sample:
{ "projects": [ { "name": "sample string 1", "code": "sample string 2", "update-date": "2025-05-30T18:16:46.7798588-07:00", "status": 0, "entity-id": "sample string 4" }, { "name": "sample string 1", "code": "sample string 2", "update-date": "2025-05-30T18:16:46.7798588-07:00", "status": 0, "entity-id": "sample string 4" } ] }