Skip to main content
POST
/
v1
/
finance
/
accounting
/
transactions
/
planned
/
search
Search planned transactions
curl --request POST \
  --url https://api.nomi.tools/v1/finance/accounting/transactions/planned/search \
  --header 'Accept: <accept>' \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "transactions": [
    {
      "amount": 123,
      "date": "2023-12-25",
      "type": "<string>",
      "accountId": "<string>",
      "id": "<string>",
      "incomeDate": "2023-12-25",
      "externalId": "<string>",
      "description": "<string>",
      "isRecurring": true,
      "isPlanned": true,
      "isCoveredByClient": true,
      "isCompleted": true,
      "isDifferentIncomeDate": true,
      "recurrencePeriod": "<string>",
      "recurrenceEndDate": "2023-12-25",
      "categoryId": "<string>",
      "counterpartyId": "<string>",
      "commitmentPartId": "<string>",
      "projectId": "<string>",
      "projectCategoryId": "<string>",
      "isCommitment": true,
      "fileId": "<string>",
      "file2Id": "<string>",
      "file3Id": "<string>",
      "tags": [
        {
          "id": "<string>",
          "Id": "<string>"
        }
      ],
      "parts": [
        {
          "id": "<string>",
          "amount": 123,
          "date": "2023-12-25",
          "categoryId": "<string>",
          "legalEntityId": "<string>",
          "exchangeSourceId": "<string>",
          "counterpartyId": "<string>",
          "commitmentPartId": "<string>",
          "projectId": "<string>",
          "isCommitment": true
        }
      ],
      "destTransactionId": "<string>",
      "destAccountId": "<string>",
      "destAmount": 123
    }
  ],
  "meta": {}
}

Authorizations

Authorization
string
header
required

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

Headers

Accept
enum<string>
default:application/json
required
Available options:
application/json

Body

application/json

The body is of type object.

Response

200 - application/json

List of planned transactions

transactions
object[]
meta
object