Batch Operation
Performs multiple record operations in a single transaction.
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>
, where token is your auth token.
Path parameters
vaultID
ID of the vault.
Request
This endpoint expects an object.
records
Record operations to perform.
continueOnError
Continue performing operations on partial errors.
byot
Token insertion behavior.
- DISABLE: Tokens aren't allowed for any fields. If tokens are specified, the request fails.
- ENABLE: Tokens are allowed—but not required—for all fields. If tokens are specified, they're inserted.
- ENABLE_STRICT: Tokens are required for all fields. If tokens are specified, they're inserted. If not, the request fails.
Allowed values:
Response
A successful response.
vaultID
ID of the vault.
responses
Responses in the same order as in the request. Responses have the same payload structure as their corresponding APIs: <br/><ul><li>`POST` returns an Insert Records response.</li><li>`PUT` returns an Update Record response.</li><li>`GET` returns a Get Record response.</li><li>`DELETE` returns a Delete Record response.</li></ul>