Skip to main content
POST
/
payouts
/
filter
Payouts - List available filters
curl --request POST \
  --url https://sandbox.hyperswitch.io/payouts/filter \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z"
}'
{
  "connector": [
    "adyen"
  ],
  "currency": [
    "AED"
  ],
  "status": [
    "success"
  ],
  "payout_method": [
    "card"
  ]
}

Authorizations

api-key
string
header
required

Use the API key created under your merchant account from the HyperSwitch dashboard. API key is used to authenticate API requests from your merchant server only. Don't expose this key on a website or embed it in a mobile application.

Body

application/json

A type representing a range of time for filtering, including a mandatory start time and an optional end time.

start_time
string<date-time>
required

The start time to filter payments list or to get list of filters. To get list of filters start time is needed to be passed

end_time
string<date-time> | null

The end time to filter payments list or to get list of filters. If not passed the default time is now

Response

200 - application/json

Filters listed

connector
enum<string>[]
required

The list of available connector filters

currency
enum<string>[]
required

The list of available currency filters

status
enum<string>[]
required

The list of available payout status filters

payout_method
enum<string>[]
required

The list of available payout method filters