API for managing documents that appear in a binder
API for managing binder relationships
Private restAPICreate a new binder in the Veeva environment.
const service = new VeevaService(credentials)
await service.binder.create({
lifecycle__v: 'Binder Lifecycle',
type__v: 'Presentation',
product__v: '00P000000000C01',
country__v: 'unitedKingdom',
name__v: 'Test Binder',
major_version_number__v: 0,
minor_version_number__v: 1
})
Response from Veeva
The binder object to create in Veeva
Delete a binder in the Veeva environment.
const service = new VeevaService(credentials)
await service.binder.delete(2000)
Response from Veeva
Binder to delete in Veeva
Update the metadata for a binder in veeva
const service = new VeevaService(credentials)
await service.binder.update(2000, {
name__v: 'Updated Name'
})
Response from Veeva
The ID of the binder to update
The binder data to update
Generated using TypeDoc
The BinderAPI class is used to manage binders within Veeva