**Source URL:** https://general.veevavault.dev/vault-api/api-reference/25.1/vault-objects/roll-up-fields/retrieve-roll-up-field-recalculation-status.md

# 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/gr/15057).

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

## Headers {#headers}

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

## URI Path Parameters {#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 {#request}

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

```
</CodeExample>

## Response {#response}

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


```
</CodeExample>

## Response Details {#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](/vault-api/api-reference/25.1/vault-objects/roll-up-fields/recalculate-roll-up-fields)  
**Next:** [Update Object Records](/vault-api/api-reference/25.1/vault-objects/update-object-records)