curl --request GET \
--url https://api.cloud.flexprice.io/v1/integration/providers \
--header 'x-api-key: <api-key>'
{
"connections": [
{
"created_at": "<string>",
"created_by": "<string>",
"environment_id": "<string>",
"id": "<string>",
"name": "<string>",
"provider_type": "flexprice",
"status": "published",
"tenant_id": "<string>",
"updated_at": "<string>",
"updated_by": "<string>"
}
],
"limit": 123,
"offset": 123,
"total": 123
}
Get all available payment providers for the current tenant
curl --request GET \
--url https://api.cloud.flexprice.io/v1/integration/providers \
--header 'x-api-key: <api-key>'
{
"connections": [
{
"created_at": "<string>",
"created_by": "<string>",
"environment_id": "<string>",
"id": "<string>",
"name": "<string>",
"provider_type": "flexprice",
"status": "published",
"tenant_id": "<string>",
"updated_at": "<string>",
"updated_by": "<string>"
}
],
"limit": 123,
"offset": 123,
"total": 123
}
Enter your API key in the format x-api-key <api-key>*
OK
The response is of type object
.