Skip to content

Create a Batch Disposition record from an existing Batch and Batch Disposition Plan. Learn more about Batch Release in Vault Help.

POST/api/{version}/app/quality/batch_release/disposition
NameDescription
Acceptapplication/json (default) or application/xml
Content-Typeapplication/json

Include parameters as JSON.

NameDescription
batch_id
required
The ID of the batch for the disposition, for example, VB6000000001001. You can find this by using Retrieve Object Records or in the URL of the Batch record detail page in the Vault UI.
disposition_plan
required
The name of the disposition plan, for example, DP-000001.
curl --location 'https://myvault.veevavault.com/api/v26.1/app/quality/batch_release/disposition' \ --header 'Authorization: {SESSION_ID}' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "batch_id":"VB6000000001001", "disposition_plan":"DP-000001" }'
{ "responseStatus": "SUCCESS", "responseDetails": { "job_id": "392501" } }

On SUCCESS, Vault returns the job_id for the Add Disposition job.