cURL
curl --request GET \ --url https://api.usezentra.com/api/v1/cards/{card_id}/security \ --header 'Authorization: Bearer <token>'
GET and PUT /api/v1/cards//security - Read or update card security controls
GET /api/v1/cards/{card_id}/security PUT /api/v1/cards/{card_id}/security
curl -X PUT https://api.usezentra.com/api/v1/cards/card_123/security \ -H "Authorization: Bearer YOUR_SECRET_KEY" \ -H "Content-Type: application/json" \ -d '{ "spending_limits": { "daily_minor": 2500000, "monthly_minor": 10000000 }, "merchant_controls": { "blocked_categories": ["gambling"] } }'
GET
PUT
Was this page helpful?