Gestiono
Referencia de APIAccounting / Pending Record

Create Pending Record create from

← Back to full API reference
POST/v1/record/pending/create-fromAuth required

A pending record refers to documents (invoice, quote, order, loan) that can later be linked to records such as payments, credits, and accounting movements.

  • Requires organization permissions for this resource.
  • Validated by Zod schema: postCreateFromPendingRecord.

Request details

Body fields

FieldRequiredDescription
idYesType: number
typeYesType: enumExample: INVOICE

Default payloads

Path params

json
{}

Query

json
{}

Body

json
{
  "id": 1,
  "type": "INVOICE"
}

Sample response

json
{
  "pendingRecordId": "<pendingRecordId>"
}