For AI agents: markdown of this page — /docs-content-en/entities/bank-details/delete.md documentation index — /llms.txt

Delete bank detail

DELETE /v1/bank-details/:id

Deletes a bank detail by ID. A deleted record cannot be restored via the API — create a new one if needed.

Parameters

Parameter Type Required Description
id (path) number yes Bank detail ID

Examples

curl — personal key

Terminal
curl -X DELETE "https://vibecode.bitrix24.com/v1/bank-details/19" \
  -H "X-Api-Key: YOUR_API_KEY"

curl — OAuth app

Terminal
curl -X DELETE "https://vibecode.bitrix24.com/v1/bank-details/19" \
  -H "X-Api-Key: YOUR_APP_KEY" \
  -H "Authorization: Bearer USER_SESSION_TOKEN"

JavaScript — personal key

javascript
const res = await fetch('https://vibecode.bitrix24.com/v1/bank-details/19', {
  method: 'DELETE',
  headers: {
    'X-Api-Key': 'YOUR_API_KEY',
  },
})

if (res.status === 204) {
  console.log('Bank detail deleted')
}

JavaScript — OAuth app

javascript
const res = await fetch('https://vibecode.bitrix24.com/v1/bank-details/19', {
  method: 'DELETE',
  headers: {
    'X-Api-Key': 'YOUR_APP_KEY',
    'Authorization': 'Bearer USER_SESSION_TOKEN',
  },
})

if (res.status === 204) {
  console.log('Deleted')
}

Response

On successful deletion an HTTP status 204 No Content is returned with an empty body. The success indicator is the response code, not the content.

Response example

HTTP/1.1 204 No Content

Error response example

404 — bank detail not found:

JSON
{
  "success": false,
  "error": {
    "code": "ENTITY_NOT_FOUND",
    "message": "The RequisiteBankDetail with ID '999999' is not found"
  }
}

Errors

HTTP Code Description
404 ENTITY_NOT_FOUND No bank detail with this ID found
403 SCOPE_DENIED Key lacks the crm scope. Message: This endpoint requires 'crm' scope
401 TOKEN_MISSING X-Api-Key not provided

Full list of common API errors — Errors.

See also