Expense Reviews

Export Expense Review

Endpoint to export the ExpenseReview of a single User.

post/business/v2/expense-review/export-expenses/{userId}

Path parameters

userIdstring required

The User ID.

Example:XMPL1234-000001

Request body

transaction_idsstring[] required

An array of Transaction ID to be exported

exported_by_idstring

The ID of the User who exports the expense.

Example request

{
  "transaction_ids": [
    "7bf79328-a7ae-4222-aa54-091ff7f429a7",
    "2d65bd5e-3fdf-4002-b166-bde7fb8863fa"
  ],
  "exported_by_id": "XMPL1234-000003"
}

Response

The result is data containing ExpenseReview export.

expense_report_protocol_idsstring[]

The protocol IDs of the ExpenseReport.

Example response

{
  "expense_report_protocol_ids": [
    "7bf79328-a7ae-4222-aa54-091ff7f429a7",
    "2d65bd5e-3fdf-4002-b166-bde7fb8863fa"
  ]
}