Path Parameters
The ID of the ledger entry to reverse.
Body
application/json
Response
Default Response
Whether the reversal entry was created successfully.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.ledger.entry.reverse(
id="id",
)
print(response.success)
{
"success": true
}
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.ledger.entry.reverse(
id="id",
)
print(response.success)
{
"success": true
}
The ID of the ledger entry to reverse.
Default Response
Whether the reversal entry was created successfully.