**Source URL:** https://limited.veevavault.dev/clinical/vault-api/api-reference/25.3/vault-objects/roll-up-fields/retrieve-roll-up-field-recalculation-status

# Retrieve Roll-up Field Recalculation Status

Determine whether a Roll-up field recalculation is currently running. [Learn more about Roll-up fields in Vault Help](https://platform.veevavault.help/en/lr/15057).

<Endpoint path="/api/{version}/vobjects/{object_name}/actions/recalculaterollups" method="GET" />

## Headers

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) or `application/xml` |
</FieldTable>

## URI Path Parameters

<FieldTable>
| Name | Description |
| --- | --- |
| `{object_name}` | The name of the object for which to check the status of a Roll-up field recalculation. |
</FieldTable>

## Request

<CodeExample title="">
```bash
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v25.1/vobjects/product__v/actions/recalculaterollups
```
</CodeExample>

## Response

<CodeExample title="">
```json
{
    "responseStatus": "SUCCESS", 
    "data": { 
        "status": "RUNNING" 
    }
} 

```
</CodeExample>

## Response Details

On `SUCCESS`, the response specifies the status of the Roll-up field recalculation as either `RUNNING` or `NOT_RUNNING`.

---

**Previous:** [Recalculate Roll-up Fields](/clinical/vault-api/api-reference/25.3/vault-objects/roll-up-fields/recalculate-roll-up-fields)  
**Next:** [Update Object Records](/clinical/vault-api/api-reference/25.3/vault-objects/update-object-records)