cURL
curl --request PUT \ --url http://localhost:3001/v1/ledger-account/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "accountNumber": "<string>", "name": "<string>" }'
{ "id": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "accountNumber": "<string>", "name": "<string>" }
Update an existing ledger account.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Ledger Account ID
The response is of type object.
object