SLA
Service level agreements.
GET/api/sla-files
List custom SLA files available for the authenticated partner
Returns the list of custom SLA descriptors (name + file identifier) fetched from Kairos for the authenticated partner's distribution hub. Soft-deleted SLAs are filtered out. Returns an empty list if the partner has no hub, the hub is not connected to Kairos, or Kairos is temporarily unreachable.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| page | query | integer | no | The collection page number |
Code samples
curl -X GET 'https://sandbox.partner.miete24.com/api/sla-files' \
-H 'X-Api-Key: YOUR_API_KEY'
const response = await fetch('https://sandbox.partner.miete24.com/api/sla-files', {
method: 'GET',
headers: {
'X-Api-Key': 'YOUR_API_KEY',
},
});
const data = await response.json();
Responses
| Status | Description | Schema |
|---|---|---|
| 200 | SlaFileListResource collection | array<SlaFileListResource.SlaFileResponse> |
| 403 | Forbidden | — |