DELETE
/
api
/
external
/
v2
/
ledger_entry_lines
/
lettering
Unletter ledger entry lines
curl --request DELETE \
  --url https://app.pennylane.com/api/external/v2/ledger_entry_lines/lettering \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "unbalanced_lettering_strategy": "none",
  "ledger_entry_lines": [
    {
      "id": 3455
    }
  ]
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
unbalanced_lettering_strategy
enum<string>
required
  • none: the API won't let you create an unbalanced lettering and will respond with an error.
  • partial: a potentially unbalanced lettering will be created.
Available options:
none,
partial
ledger_entry_lines
object[]
required

The list of ledger entry lines you want to unletter.

Minimum length: 1

Response

No content