Query
- Http Method
- GET
- End Point
-
/~api/issues
- Query Parameters
-
Parameter Description Required Example query Syntax of this query is the same as in issues page No "State" is "Open" withFields Whether or not to include issue fields. Default to false No true offset Offset Yes 0 count Count Yes 100 - Response
-
- Operation Successful
-
- Status Code
- 200
- Response Body
-
- Content Type
- application/json
- Example
-
[
{
"id" : 1 ,"state" : "string" ,"stateOrdinal" : 1 ,"title" : "string" ,"description" : "string" ,"submitDate" : "2024-11-21T12:14:14.720+00:00" ,"voteCount" : 1 ,"commentCount" : 1 ,"totalEstimatedTime" : 1 ,"totalSpentTime" : 1 ,"ownEstimatedTime" : 1 ,"ownSpentTime" : 1 ,"progress" : 1 ,"uuid" : "string" ,"number" : 1 ,"messageId" : "string" ,"lastActivity" : {"date" : "2024-11-21T12:14:14.720+00:00" ,"description" : "string" ,"userId" : 1"confidential" : true ,"pinDate" : "2024-11-21T12:14:14.720+00:00" ,"boardPosition" : 1 ,"numberScopeId" : 1 ,"projectId" : 1 ,"submitterId" : 1
- Operation Failed
-
- Status code
- Status code other than 200 indicating the error type
- Response Body
- Error detail of content type "text/plain"
- cURL Example
-
$ curl -u <login name>:<password or access token> -G https://git.codedune.app/~api/issues --data-urlencode 'query="State" is "Open"' --data-urlencode withFields=true --data-urlencode offset=0 --data-urlencode count=100