Skip to content

Transaction Report

APIs for retrieving transaction reports related to funds, shipments, and stamps.

Get Funds Transaction Report

Request

This Operation returns the report of funds transactions within the specified date range.

Security
bearerAuth
Query
startDatestring, (date-time)

Start date for the transaction report, in UTC format (e.g., 2025-08-01T00:00:00Z).

endDatestring, (date-time)

End date for the transaction report, in UTC format (e.g., 2025-08-15T23:59:59Z).

sizenumber

Maximum number of records to return per page.

Default:20
Example:size=10
pagenumber

Page number to fetch in paginated results.

Default:20
Example:page=1
curl -i -X GET \
  'https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/funds?startDate=2019-08-24T14%3A15%3A22Z&endDate=2019-08-24T14%3A15%3A22Z&size=10&page=1' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successfully retrived the Fund Transaction Report.

Bodyapplication/json
dataArray of objects

List of funds transaction records.

pageInfoobject

Pagination details for the transaction report.

Response
{ "data": [ { "transactionCreatedDate": "2025-07-01T10:21:59.281Z", "transactionId": "T6TjUuWc7SKtluqMDCEPw", "amount": 10, "currency": "USD", "status": "SUCCESS", "previousBalance": {}, "fundingType": "MANUAL", "subCarrierId": "EQ7Ar2dmDoM", "userDetails": {}, "dispenseClient": "PB" } ], "pageInfo": { "total": 2, "pages": 1, "page": 1, "pageSize": 10 } }