Skip to main content
GET
/
public
/
v2
/
inbox
/
transactions
/
{record_id}
Get transaction inbox details
curl --request GET \
  --url https://api.dualentry.com/public/v2/inbox/transactions/{record_id}/ \
  --header 'X-API-KEY: <api-key>'
{
  "transaction_type": "<string>",
  "number": "<string>",
  "date": "2023-12-25",
  "customer_vendor": "<string>",
  "company": "<string>",
  "company_id": 123,
  "memo": "<string>",
  "amount": "<string>",
  "approval_status": "<string>",
  "workflow_id": 123,
  "record_id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "approval_info": {
    "workflow_name": "<string>",
    "workflow_version": 123,
    "step_name": "<string>",
    "current_substep": 123,
    "substeps": [
      {
        "order": 123,
        "approvers": [
          {
            "id": 123,
            "first_name": "<string>",
            "last_name": "<string>",
            "email": "<string>",
            "full_name": "<string>"
          }
        ],
        "approved_by": [
          {
            "id": 123,
            "first_name": "<string>",
            "last_name": "<string>",
            "email": "<string>",
            "full_name": "<string>"
          }
        ],
        "rejected_by": [
          {
            "id": 123,
            "first_name": "<string>",
            "last_name": "<string>",
            "email": "<string>",
            "full_name": "<string>"
          }
        ]
      }
    ]
  },
  "initiator_id": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Path Parameters

record_id
integer
required

Query Parameters

transaction_type
string
required

Response

OK

Schema for transaction-based records in the inbox (monetary entities).

transaction_type
string
required
number
string
required
date
string<date>
required
customer_vendor
string | null
required
company
string
required
company_id
integer
required
memo
string
required
amount
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d{0,2}0*$
approval_status
string
required
workflow_id
integer
required
record_id
integer
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
approval_info
PublicApprovalInfoSchema · object
required

Schema for complete approval workflow information.

initiator_id
integer | null
Last modified on May 28, 2026