---
title: "Convert a debit note into a payable"
method: PATCH
path: "/v1/erp/payouts/debit_notes/{id}/become_payable"
tags: ["Debit Note"]
---

# Convert a debit note into a payable

`PATCH /v1/erp/payouts/debit_notes/{id}/become_payable`

Converts a debit note into a payable so it can be paid. Fails if the record is already
a payable. Requires the `erp_business_partners`-style debit-note access (company member
or admin).

## Parameters

- `#/paths/~1v1~1erp~1payouts~1rules/get/parameters/0` — unresolved $ref
- `#/paths/~1v1~1erp~1payouts~1rules~1%7Bid%7D/get/parameters/1` — unresolved $ref

## Response `200`

The resulting payable.

- Payable
  - `id` string, uuid, required
  - `source_type` string
  - `source_id` string
  - `amount` integer, required
  - `status` 'uninitiated' | 'in_review' | 'approved', required
  - `due_date` string, date-time — The date in which the payable is due.
  - `payment_status` 'paid' | 'partially_paid' | 'non_paid'
  - `company_id` string, uuid, required
  - `issue_date` string, date-time — The date in which the payable was issued.
  - `currency` string, required
  - `document_type` integer, required — An integer representing the type of document. Refer to the `document_types` mapping for possible values and their corresponding document types.
  - `sender_id` string, uuid
  - `recipient_id` string, uuid
  - `counterpart_company_id` string, uuid, required — The id of the counterpart company. This is the company that will receive the payment.
  - `description` string
  - `discarded` boolean — Whether the payable has been discarded or not. A discarded payable will not be obtained in the index.
  - `partially_paid_amount` integer
  - `paid_amount` integer — The amount that has been paid for this payable. This amount is calculated using the partially_paid_amount param, the amount of the bank transactions related to the payable and the amount of the credit notes related.
  - `counterpart_company` object
    - `id` string
    - `name` string
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `reviewers` Reviewer[]
    - `id` string, uuid, required
    - `company_id` string, uuid, required
    - `user_id` string, uuid, required — The id of the user that is the reviewer.
    - `source_id` string, uuid, required — The id of the object being reviewed (payable or purchase order).
    - `source_type` string, required — The polymorphic type of the object being reviewed, e.g. `Erp::Payouts::Payable` or `Erp::Payouts::PurchaseOrder`.
    - `level` integer — The approval level of this reviewer in the review chain.
    - `enabled` boolean — Whether this reviewer is currently active in the review chain.
    - `approved` boolean — Whether this reviewer has approved. Derived server-side; not modifiable through the endpoints.
    - `current_status` 'comment' | 'file' | 'approval' | 'change_request' — The current status of the review. This is not modifiable using the endpoints.
    - `user` User — unresolved $ref
    - `role` string
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthorized
- `404` — Debit note not found
- `422` — Unprocessable Entity — the record is already a payable.

---

[API](https://skmtc.dev/cardda/apis/banking-api.md) · [All operations](https://skmtc.dev/cardda/apis/banking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cardda/banking-api/revisions/ff1aeb3fda8b/schema)
