Skip to main content
POST
/
v1
/
finance
/
accounts
/
bulk
Bulk save accounts
curl --request POST \
  --url https://api.nomi.tools/v1/finance/accounts/bulk \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "id": "<string>",
    "name": "<string>",
    "balance": 123,
    "currency": "<string>"
  }
]
'
{
  "ids": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Use HTTP Basic Authentication. Provide your email as login and PPT token as the password.

Body

application/json
id
string | null
name
string
balance
number
currency
string

Response

200 - application/json

Accounts saved successfully

ids
string[]