---
title: "Create one"
method: POST
path: "/v1/erp/payouts/payables"
tags: ["Payable"]
---

# Create one

`POST /v1/erp/payouts/payables`

Creates a new payable. This endpoint skips user authentication (it can be used by
unauthenticated flows). The company is identified by the `company_id` field in the
request body; send the same company UUID in the required `company-id` header.

## Parameters

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

## Request body

- object
  - `amount` integer
  - `company_id` string, uuid
  - `currency` 'clp'
  - `document_type` string — An integer representing the type of document. Refer to the `document_types` mapping for possible values and their corresponding document types.
  - `counterpart_company_id` string, uuid
  - `description` string
  - `business_partner_id` string, uuid — The id of an existing business partner to associate with this payable.
  - `imprest_fund_id` string, uuid — The id of the imprest fund this payable is charged against, if any.
  - `payment_date` string, date-time — The scheduled/expected payment date for this payable.
  - `counterpart_company` object — Nested counterpart-company attributes. Use this (not top-level fields) to create/identify the counterpart company when you don't provide a `counterpart_company_id`. `identifier` is the RUT and `name` the company name.
    - `id` string, uuid
    - `identifier` string — The RUT of the counterpart company.
    - `name` string — The name of the counterpart company.
  - `business_partner` object — Nested business-partner attributes, used to create/associate the business partner (and its underlying Person `partner`) inline.
    - `id` string, uuid
    - `name` string
    - `partner_id` string, uuid — The id of the underlying Person record for this partner.
    - `partner` object
      - `id` string, uuid
      - `identifier` string — The RUT of the partner.
      - `name` string

## Response `201`

Body of the created 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
- `422` — Unprocessable Entity

---

[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)
