This endpoint can be called to find what appointments a supplier has available to install or maintain service(s) at a given address.
An address query parameter must be supplied specifying address ID and type along with the required service specification as returned by the /service-availability endpoint.
The next available appointments after the appointmentStartDate will be returned - a suitable date should be chosen based on installationLeadTime if this was provided during availability check.
Appointment slots are classified based on day as weekday or saturday/sunday and by time to day, AM/PM or early morning/evening. Based on the tenant-supplier agreement, some of these classifications will be considered premium.
This request will be routed to a particular supplier which must be specified.
Request successful - zero or more available appointments were returned
Bad request - supplied parameters were malformed or missing mandatory parameters
Unauthorised access
The client is not permitted to access this resource.
Unprocessable entity - invalid data was provided
Unexpected Fibre Gateway error
Invalid response from the supplier
Fibre Gateway is temporarily unavailable
Timeout or no response from the supplier
{- "supplier": "SUPPLIER1",
- "address": {
- "id": "A00000031882",
- "type": "NAD",
- "additionalIdentifiers": [
- {
- "id": "A00000031882",
- "type": "NAD"
}
]
}, - "serviceSpecification": {
- "id": "ftthl2r",
- "name": "FTTH"
}, - "availableTimeslots": [
- {
- "timeslotStartDateTime": "2022-01-10T09:00:00.000Z",
- "timeslotEndDateTime": "2022-01-10T13:00:00.000Z",
- "classification": "SATURDAY_AM",
- "standard": true
}
]
}