secrets
List API keys
Customers
Invoices
Wallets
Entitlements
Environments
Events
Features
Payments
Integrations
Subscriptions
Tenants
Users
secrets
List API keys
Get a paginated list of API keys
GET
/
secrets
/
api
/
keys
curl --request GET \
--url https://api.cloud.flexprice.io/v1/secrets/api/keys
{
"items": [
{
"created_at": "<string>",
"display_id": "<string>",
"expires_at": "<string>",
"id": "<string>",
"last_used_at": "<string>",
"name": "<string>",
"permissions": [
"<string>"
],
"provider": "flexprice",
"status": "published",
"type": "private_key",
"updated_at": "<string>"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
Query Parameters
Limit
Offset
Status (published/archived)
Response
200
application/json
OK
Available options:
flexprice
, stripe
, razorpay
Available options:
published
, deleted
, archived
Available options:
private_key
, publishable_key
, integration
curl --request GET \
--url https://api.cloud.flexprice.io/v1/secrets/api/keys
{
"items": [
{
"created_at": "<string>",
"display_id": "<string>",
"expires_at": "<string>",
"id": "<string>",
"last_used_at": "<string>",
"name": "<string>",
"permissions": [
"<string>"
],
"provider": "flexprice",
"status": "published",
"type": "private_key",
"updated_at": "<string>"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}