public

List Transactions

Returns a list of all closed (fully captured, not just authorizations) transactions across all issued cards on the platform, regardless of the cards current status.

SecurityRemoteAuthentication or M2MAuthentication or BasicAuthentication or cookieAuth
Request
query Parameters
end_date
string <date-time>
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

reconciliation_status
integer

The reconciliation status of the transaction designated by accounts payable

  • reviewed - Reviewed
  • pending - Pending
Enum: "pending" "reviewed"
start_date
string <date-time>
Responses
200
Response Schema: application/json
object
Array of objects (Transaction)
get/api/public/v1/pay/transactions/
Response samples
application/json
{
  • "metadata": {
    },
  • "data": [
    ]
}

List Payments

SecurityRemoteAuthentication or M2MAuthentication or BasicAuthentication or cookieAuth
Request
query Parameters
bill_groups
Array of integers

Filter payments by a comma-separated list of bill group IDs.

created_at_after
string <date-time>

Filter payments created on or after this date.

created_at_before
string <date-time>

Filter payments created on or before this date.

currency
integer

Filter payments by currency ID.

ids
Array of integers

Filter payments by a comma-separated list of payment IDs.

invoice_number
string

Filter payments by exact bill invoice number.

order_by
string

Order results by field. Prefix with '-' for descending order.

Enum: "-created_at" "-updated_at" "created_at" "updated_at"
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

payment_amount
number

Filter payments with an amount equal to this value.

processing_date_after
string <date-time>

Filter payments with a processing date on or after this date.

processing_date_before
string <date-time>

Filter payments with a processing date on or before this date.

status
Array of strings

Filter payments by status. Accepts a comma-separated list of statuses.

  • draft - draft
  • pending_approval - pending_approval
  • approved - approved
  • denied - denied
  • paid - paid
  • processing - processing
  • failed - failed
  • scheduled - scheduled
Items Enum: "approved" "denied" "draft" "failed" "paid" "pending_approval" "processing" "scheduled"
updated_at_after
string <date-time>

Filter payments updated on or after this date.

updated_at_before
string <date-time>

Filter payments updated on or before this date.

vendor
integer

Filter payments by vendor ID.

Responses
200
Response Schema: application/json
object
Array of objects (PaymentResponse)
get/api/public/v1/payments/
Response samples
application/json
{
  • "metadata": {
    },
  • "data": [
    ]
}