/
⚙️ Set usage limits for a...
Set or update usage limits for a specific company endpoint.
Security
APIKeyHeader
- Dev serverhttps://pdp.seqino.dev/api/usage/limits
- Production serverhttps://pa.seqino.com/api/usage/limits
curl -i -X POST \
https://pdp.seqino.dev/api/usage/limits \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'X-PDP-Client-Id: client_abc123' \
-d '{
"company_id": "string",
"endpoint": "string",
"method": "string",
"limit_per_minute": 1,
"limit_per_hour": 1,
"limit_per_day": 1,
"limit_per_month": 1,
"current_usage_minute": 0,
"current_usage_hour": 0,
"current_usage_day": 0,
"current_usage_month": 0
}'Successful Response
Response
{ "company_id": "string", "endpoint": "string", "method": "string", "limit_per_minute": 1, "limit_per_hour": 1, "limit_per_day": 1, "limit_per_month": 1, "current_usage_minute": 0, "current_usage_hour": 0, "current_usage_day": 0, "current_usage_month": 0 }