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
Community moderators have prevented the ability to post new answers.
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 */ }
]
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.