POST
/
api
/
v2
/
ledger
/
reverse-entry
import SampleHealthcare from 'samplehc';

const client = new SampleHealthcare({
  apiKey: process.env['SAMPLEHC_API_KEY'], // This is the default and can be omitted
});

const response = await client.v2.ledger.reverseEntry({ ik: 'ik' });

console.log(response.reversingEntryId);
{
  "reversingEntryId": "<string>"
}

Body

application/json

Response

200
application/json

The reversal entry was created successfully.