POST /v2/terminals/refunds/search

Retrieves a filtered list of Interac Terminal refund requests created by the seller making the request.

Servers

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
query Object No
query.filter Object No
query.filter.device_id String No

TerminalRefund objects associated with a specific device. If no device is specified, then all TerminalRefund objects for the signed-in account are displayed.

query.filter.status String No

Filtered results with the desired status of the TerminalRefund. Options: PENDING, IN_PROGRESS, CANCEL_REQUESTED, CANCELED, or COMPLETED.

query.filter.created_at Object No

Represents a generic time range. The start and end values are represented in RFC 3339 format. Time ranges are customized to be inclusive or exclusive based on the needs of a particular endpoint. Refer to the relevant endpoint-specific documentation to determine how time ranges are handled.

query.filter.created_at.start_at String No

A datetime value in RFC 3339 format indicating when the time range starts.

query.filter.created_at.end_at String No

A datetime value in RFC 3339 format indicating when the time range ends.

query.sort Object No
query.sort.sort_order String No

The order in which results are listed.

  • ASC - Oldest to newest.
  • DESC - Newest to oldest (default).
limit Integer No

Limits the number of results returned for a single request.

cursor String No

A pagination cursor returned by a previous call to this endpoint. Provide this cursor to retrieve the next set of results for the original query.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.