curl --request POST \
--url https://app.tagadapay.com/api/public/v1/payments/processors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"processors": [
{
"id": "proc_stripe",
"name": "Stripe",
"type": "stripe"
},
{
"id": "proc_paypal",
"name": "PayPal",
"type": "paypal"
}
]
}Get all enabled payment processors for the authenticated account
curl --request POST \
--url https://app.tagadapay.com/api/public/v1/payments/processors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"processors": [
{
"id": "proc_stripe",
"name": "Stripe",
"type": "stripe"
},
{
"id": "proc_paypal",
"name": "PayPal",
"type": "paypal"
}
]
}Enter your API key as: Bearer your-api-key
The body is of type object.
Successful response