List Package Configs
GET /api/package-configs
List Package Configs
GET /api/package-configs
Returns all package configurations for the organization in your authenticated session. Each config also includes a usedByCustomerCount field.
Example (cURL)
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"
curl -X GET "$BASE_URL/api/package-configs" \
-H "Authorization: Bearer $TOKEN" \
-H "Accept: application/json"
Notes:
- The organization is derived automatically from your authenticated session or API token.
- The legacy route
GET /api/organizations/:organizationPublicId/package-configsremains supported for compatibility. - Global admins need an active organization context in the authenticated session for the org-less route.
Response
[
{
"id": 10,
"packageType": "pro",
"maxUrls": 100,
"dataRetentionMonths": 12,
"checkIntervalMinutes": 1,
"checkLocations": 3,
"notificationDelayMinutes": 0,
"reminderDelayMinutes": 10,
"alertConsecutiveChecks": 3,
"alertLocationThreshold": "majority",
"alertLocationThresholdCount": 2,
"alertReminderInterval": 60,
"enableSslCheck": true,
"enableHttpsCheck": true,
"enableStatusCheck": true,
"enableSizeCheck": true,
"enableResponseTimeCheck": true,
"enableKeywordCheck": false,
"enableEmailAlerts": true,
"enableSmsAlerts": true,
"enableWebhookAlerts": true,
"enableIntegrationAlerts": true,
"enablePostRequestEscalation": false,
"enableMaintenanceWindows": true,
"enablePdfReports": true,
"notes": null,
"createdAt": "2026-02-26T12:00:00.000Z",
"updatedAt": "2026-02-26T12:00:00.000Z",
"usedByCustomerCount": 4
}
]
Common errors
400 Organization ID is required in the authenticated sessionwhen no organization can be derived from the current session/token401 Unauthorizedwhen you are not logged in403 Forbiddenwhen you cannot access the organization