**Source URL:** https://limited.veevavault.dev/quality/vault-api/api-reference/22.1/sandbox-vaults/pre-production-vaults/build-production-vault.md

# Build Production Vault



Given a pre-production Vault, build a production Vault. This is analogous to the *Build* action in the Vault UI. After building your Vault, you can promote it to production.

You can build or rebuild the source Vault for a given pre-production Vault no more than three times in a 24 hour period.

<Endpoint path="/api/{version}/objects/sandbox/actions/buildproduction" method="POST"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) |
| `Content-Type` | `application/x-www-form-urlencoded` |
</FieldTable>

## Body Parameters {#body-parameters}

## Request {#request}

<CodeExample title="">
```
curl -X POST -H "Authorization: {SESSION_ID}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "source=UAT"
https://myvault.veevavault.com/api/v21.2/objects/sandbox/actions/buildproduction

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "job_id": 111507,
    "url": "/api/v21.2/services/jobs/111507"
}

```
</CodeExample>

---

**Previous:** [Pre-Production Vaults](/quality/vault-api/api-reference/22.1/sandbox-vaults/pre-production-vaults)  
**Next:** [Promote to Production](/quality/vault-api/api-reference/22.1/sandbox-vaults/pre-production-vaults/promote-to-production)