Details
-
Type:
Bug
-
Status:
Rejected
(View Workflow)
-
Priority:
Normal
-
Resolution: Cancelled
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: SRD
-
Labels:
-
Customer:OMAN-Tel
-
Product:NEP
Description
Review SRD API getHQ
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns3:getHQ
xmlns:ns3="http://server.internal.api.srd.nep.mobinets.com/"
xmlns="">
<hqLat>23.620425499929308</hqLat>
<hqLong>58.21212000047893</hqLong>
<requestId>02102024</requestId>
<serviceName>1094301_FBB</serviceName>
</ns3:getHQ>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Activity
- All
- Comments
- Work Log
- History
- Activity
- Links Hierarchy
- Transitions
- Trace
The API is currently returning an empty response.
To retrieve data, please run the following SQL query to get valid request_id and service_name values:
SELECT
scd.request_id,
ssd.SERVICE_NAME,
scd.ACCOUNT_NAME
FROM
SRD_CUSTOMER_DETAILS scd
INNER JOIN
SRD_SERVICE_DETAILS ssd
ON scd.id = ssd.CUSTOMER_ID
INNER JOIN
SRD_HQ_NE_DETAILS_V shqnd
ON scd.ACCOUNT_NAME = shqnd.customer_name;
This query will help you identify valid data to use when testing the API.
Note: I attempted to test this on my local environment, but no valid data was available.