GET /api-v1/reconciliation-lines/{id}

Headers

  • WEAL-TOKEN string Required

    API token (can be retrieved from account settings)

  • TARGET-ORGANIZATION-ID integer

    ID of organization, for which the operation must be performed

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • processDate string(date-time)
    • movementDirection string

      Values are IN or OUT.

    • contactId integer
    • reference string
    • valueDate string(date-time)
    • paidCurrencyId integer
    • paidAmount number
    • isReconciled boolean
    • mainAccountIban string
    • mainAccountId integer
    • isInternalContact boolean
    • manualEntries array[object]
      Hide manualEntries attributes Show manualEntries attributes object
      • id integer
      • paymentType string

        Values are SALES_INVOICE, PURCHASE_INVOICE, SALARY_SLIP, or MANUAL.

      • description string
      • amount string
      • requestedAmount string
      • counterPartyAccountId integer
      • amountInCurrency string
      • entityContactId integer
      • currencyId integer
      • purchasePaymentId integer
      • salesPaymentId integer
      • payrollPaymentId integer
      • departmentId integer
      • isSplitPayment boolean
      • bankCharges number
      • lossOnDebtors number
      • officeId integer
  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

GET /api-v1/reconciliation-lines/{id}
curl \
 --request GET 'https://wyzio.app/api-v1/reconciliation-lines/{id}' \
 --header "WEAL-TOKEN: string" \
 --header "TARGET-ORGANIZATION-ID: 42"
Response examples (200)
{
  "id": 42,
  "processDate": "2026-05-04T09:42:00Z",
  "movementDirection": "IN",
  "contactId": 42,
  "reference": "string",
  "valueDate": "2026-05-04T09:42:00Z",
  "paidCurrencyId": 42,
  "paidAmount": 42.0,
  "isReconciled": true,
  "mainAccountIban": "string",
  "mainAccountId": 42,
  "isInternalContact": true,
  "manualEntries": [
    {
      "id": 42,
      "paymentType": "SALES_INVOICE",
      "description": "string",
      "amount": "string",
      "requestedAmount": "string",
      "counterPartyAccountId": 42,
      "amountInCurrency": "string",
      "entityContactId": 42,
      "currencyId": 42,
      "purchasePaymentId": 42,
      "salesPaymentId": 42,
      "payrollPaymentId": 42,
      "departmentId": 42,
      "isSplitPayment": true,
      "bankCharges": 42.0,
      "lossOnDebtors": 42.0,
      "officeId": 42
    }
  ]
}