Skip to main content
PUT
/
accounting
/
accounts
/
{id}
cURL
curl -X PUT \
 /accounting/accounts/{id} \
 --header "Content-Type: application/json" \
 --header "Authorization: Bearer <token>" \
 --data '{
    "name": "",
    "number": ""
}'
{
  "id": "f3b3b3b3-3b3b-3b3b-3b3b-3b3b3b3b3b3b",
  "name": "Bankkonto",
  "number": "1200",
  "type": "revenueGermany"
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

AccountingAccount identifier

Body

The updated AccountingAccount resource

name
string
required

The name of the account

number
string
required

The number of the account

Response

AccountingAccount resource updated

id
object
name
string | null

Account name used for internal labeling.

Example:

"Bankkonto"

number
string

Account number from your used skr 03 or skr 04 chart of accounts.

Example:

"1200"

type
enum<string>

Type of account which references to the chart of accounts.

Available options:
bankAccount,
ledgerAccount,
revenueGermany,
revenueGermanyReduced,
salesDeductionAccount,
revenueEurope,
revenueTaxFree,
bankFees,
passiveDeferral,
debtor,
paypal,
stripe,
sepaDebit,
goCardless
Example:

"revenueGermany"

I