Skip to main content
POST
/
api
/
v2
/
ledger
/
entry
/
{id}
/
reverse
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.ledger.entry.reverse(
    id="id",
)
print(response.success)
{
  "success": true
}

Path Parameters

id
string
required

The ID of the ledger entry to reverse.

Body

application/json
metadata
object

Any optional metadata to associate with the reversal entry.

postedAt
string

The date and time the reversal entry was posted.

Response

Default Response

success
boolean
required

Whether the reversal entry was created successfully.

I