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
This endpoint is called to request a service test on an active line/service.
The supplier should validate and accept the request if the validation is successful or otherwise reject it. If the service test is rejected, a 422 code should be returned with reason(s) for the rejection in the response.
If the service test is accepted, the supplier should return a 201 created response with the service test reference and start the test. The result of the service test should be sent asynchronously via the Fibre Cafe - Supplier Updates API once the test has completed.
Unique identifier for this service test request (generated by the Fibre Cafe)
Identifier of an existing live service
Details of a service the supplier provides at the selected address.
curl -i -X POST \
https://api.provided_by_supplier.net/service-tests \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Tenant: TENANT1' \
-H 'X-Conversation-ID: string' \
-H 'X-Request-ID: string' \
-d '{
"id": 23467,
"serviceId": "SI2345432345",
"serviceSpecification": {
"id": "ftthl2r"
},
"problemType": "STABILITY"
}'Request was received by the supplier - result of service test will be sent via a KCI
Unique identifier to identify request and response events across the Fibre Cafe gateway
Unique reference identifying this service test (where applicable)
Unique identifier for this service test request (generated by the Fibre Cafe)
Identifier of an existing live service
Details of a service the supplier provides at the selected address.
{ "supplierReference": "A123X", "id": 23467, "serviceId": "SI2345432345", "serviceSpecification": { "id": "ftthl2r", "name": "FTTH" }, "problemType": "STABILITY" }