Skip to main content
GET
/
api
/
public
/
v1
/
payment-flows
/
with-processors
List payment flows with processor details
curl --request GET \
  --url https://app.tagadapay.com/api/public/v1/payment-flows/with-processors \
  --header 'Authorization: Bearer <token>'
{
  "flows": [
    {
      "id": "flow_abc123",
      "name": "Default Flow",
      "strategy": "cascade",
      "processorConfigs": [
        {
          "processorId": "proc_stripe",
          "weight": 70,
          "disabled": false,
          "nonStickable": false,
          "processor": {
            "id": "proc_stripe",
            "name": "Stripe US",
            "type": "stripe"
          }
        }
      ]
    }
  ],
  "allProcessors": [
    {
      "id": "proc_stripe",
      "name": "Stripe US",
      "type": "stripe"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your-api-key

Response

Successful response