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 Leaders.
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

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 */ }
        ]
    }

Suggest an answer

Log in or Sign up to answer