The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Number of records in JQL from REST

Rahul Aich [Nagra]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
March 9, 2016

Hi All

Iam trying to script something which requires the number of records (not the actual records) returned from JQL.

How can i get this number from REST API?

Can anyone guide me please?

Rahul

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Mikael Sandberg
Community Champion
March 9, 2016

The "total" field shows the total number returned in your JSON object.

    {
        "startAt" : 0,
        "maxResults" : 10,
        "total": 200,
        "values": [
            { /* result 0 */ },
            { /* result 1 */ },
            { /* result 2 */ }
        ]
    }