Retrieve what services (if any) the supplier has available for a given address.
This follows the concepts in TMF645 - Service Qualification API and TMF673 - Address Management API.
The Fibre Cafe is a scalable, unified platform to support L2C provisioning, in-life modification/cease and T2R trouble resolution between communication providers (CP) and network operators or aggregators.
CPs are known as 'tenants' on the Fibre Cafe and communicate with the Fibre Cafe's Tenant API. The network operators and aggregators providing the underlying services are known as 'suppliers' and provide the Supplier API.
Each supplier is responsible for implementing this southbound API specification for the Fibre Cafe to retrieve available services and support appointing and order management.
Note: Order updates (KCIs) must be sent to the Supplier Updates API hosted by the Fibre Cafe. __
© 2022-2026 Strategic Imperatives
Address identifier of provided type e.g. UPRN to check for service availability
curl -i -X GET \
'https://api.provided_by_supplier.net/service-availability?address={%22id%22%3A%22200004033694%22%2C%22type%22%3A%22UPRN%22}&serviceTypes=BROADBAND%2CETHERNET' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Tenant: TENANT1' \
-H 'X-Conversation-ID: string' \
-H 'X-Request-ID: string'Request successful - zero or more services were returned
Unique identifier to identify request and response events across the Fibre Cafe gateway
Address for location associated with the service order.
Address identifier for location including type of identifier.
Identifying name of the sub unit
Discriminator used to identify the property on a street
Name used to identify the street
Name used to identify the town or city
Name used to identify the country
List of services that are available at this address
Unique identifier for this service specification (if available)
Name of the service
Describes site installation details and any constraints that may apply, along with any existing lines.
{ "address": { "identifier": { … }, "name": "TWENTY", "streetNumber": "20", "streetName": "Kingston Road", "locality": "string", "city": "Staines-Upon-Thames", "postcode": "TW184LG", "country": "UK", "subAddress": { … } }, "serviceSpecifications": [ { … } ], "siteInformation": { "newLine": true, "installationType": "STANDARD", "constraints": [ … ], "serviceReadyDate": "2022-01-01", "enniId": "S1889", "siteName": "string", "siteLocation": "string", "lineCharacteristics": [ … ], "existingLines": [ … ] }, "unavailabilityReasons": [ { … } ] }