Skip to content

Update a section in a binder.

PUT/api/{version}/objects/binders/{binder_id}/sections/{node_id}
NameDescription
Content-Typeapplication/x-www-form-urlencoded
Acceptapplication/json (default) or application/xml
NameDescription
{binder_id}The binder id field value.
{node_id}The binder node id of the section.

Configure one or more of the following fields with values. These are all optional.

Field NameDescription
name__vChange the name of the binder section.
section_number__vUpdate the section number value.
order__v[Optional] Enter a number reflecting the position of the section within the binder or parent section. Negative order values appear first. For example, an order value of -100 appears before an order value of 0.
parent_id__vTo move the section to a different section in the binder, include the value of the parent node where it will be moved.
curl -X PUT -H "Authorization: {SESSION_ID}" \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "name__v=VeevaProm Additional Information" \ -d "section_number__v=3" \ -d "parent_id__v=rootNode" \ -d "order__v=4" \ https://myvault.veevavault.com/api/v19.3/objects/binders/566/sections/1427232809771:1381853041
{ "responseStatus": "SUCCESS", "id": "1427486900128:1467568099" }

On SUCCESS, Vault returns the Node ID of the newly created section. This is unique within the binder, regardless of level.