POST
/
coa
/
api
/
v1
/
debit-memo
/
{debit_memo_id}
/
reopen
/
Reopen Voided Debit Memo
curl --request POST \
  --url https://api.meetcampfire.com/coa/api/v1/debit-memo/{debit_memo_id}/reopen/ \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "lines": [
    {
      "id": 123,
      "account_number": "<string>",
      "account_name": "<string>",
      "department_name": "<string>",
      "tags": [
        {
          "id": 123,
          "group_name": "<string>",
          "parent_name": "<string>",
          "parent": 123,
          "name": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "last_modified_at": "2023-11-07T05:31:56Z",
          "customer": 123,
          "group": 123
        }
      ],
      "description": "<string>",
      "amount": 0,
      "created_at": "2023-11-07T05:31:56Z",
      "last_modified_at": "2023-11-07T05:31:56Z",
      "customer": 123,
      "account": 123,
      "department": 123
    }
  ],
  "payments": [
    {
      "id": 123,
      "payment_journal_entry_order": "<string>",
      "bill": "<string>",
      "currency": "<string>",
      "amount": 0,
      "payment_date": "2023-12-25",
      "created_at": "2023-11-07T05:31:56Z",
      "last_modified_at": "2023-11-07T05:31:56Z",
      "voided_date": "2023-12-25",
      "customer": 123,
      "debit_memo": 123,
      "payment_journal_entry": 123,
      "payment_transaction": 123,
      "voided_journal_entry": 123
    }
  ],
  "total_amount": "<string>",
  "amount_used": "<string>",
  "amount_remaining": "<string>",
  "entity_name": "<string>",
  "entity_currency": "<string>",
  "vendor_name": "<string>",
  "debit_account_number": "<string>",
  "debit_account_name": "<string>",
  "attachments": [
    {
      "id": 123,
      "customer": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "created_by": 123,
      "created_by_name": "<string>",
      "created_by_email": "<string>",
      "last_modified_at": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "url": "<string>",
      "s3_content_type": "<string>",
      "s3_content_length": 1073741823,
      "s3_path": "<string>",
      "object_id": 1073741823,
      "app": "<string>",
      "model": "<string>"
    }
  ],
  "debit_memo_number": "<string>",
  "voided_date": "2023-12-25",
  "voided_journal_entry_order": "<string>",
  "ref_number": "<string>",
  "debit_memo_date": "2023-12-25",
  "applied_date": "2023-12-25",
  "message_on_debit_memo": "<string>",
  "application_status": "open",
  "currency": "<string>",
  "exchange_rate": 0,
  "exchange_rate_book": 0,
  "created_at": "2023-11-07T05:31:56Z",
  "last_modified_at": "2023-11-07T05:31:56Z",
  "customer": 123,
  "entity": 123,
  "vendor": 123,
  "debit_account": 123,
  "journal_entry": 123,
  "voided_journal_entry": 123
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

debit_memo_id
integer
required

ID of the voided debit memo to reopen

Response

200 - application/json

The response is of type object.