Referencia de APIAccounting / Pending Record
Create Pending Record by pendingrecordid share email
← Back to full API reference
POST
/v1/record/pending/:pendingRecordId/share/emailAuth requiredA pending record refers to documents (invoice, quote, order, loan) that can later be linked to records such as payments, credits, and accounting movements.
Request details
Path params
| Field | Required | Description |
|---|---|---|
| pendingRecordId | Yes | Required path parameter. |
Body fields
| Field | Required | Description |
|---|---|---|
| note | Yes | Inferred from req.body.note |
| customOrganizationName | Yes | Inferred from req.body.customOrganizationName |
| emails | Yes | Inferred from req.body.emails |
| Yes | Inferred from req.body.email |
Default payloads
Path params
json
{
"pendingRecordId": 1
}Query
json
{}Body
json
{
"note": "string",
"customOrganizationName": "string",
"emails": "string",
"email": "string"
}Sample response
json
{
"success": true,
"message": "<value>",
"emailsSent": "<emailsToSend>"
}