Overview
This service provides an HTTP interface to the Sh
protocol (3GPP TS 29.328
& 29.329) for accessing cached subscriber data from the HSS.
Clients may read all Sh data references that the HSS allows.
Updates may only be performed on Repository Data (data reference 0).
Clients may only subscribe to UE Reachability for IP (data reference 25).
In addition to error codes described here, as required by the HTTP RFCs
the server may return 401 Unauthorized
if the necessary security context
not present, 403 Forbidden
if the provided security context is
insufficient for the requested operation, and appropriate 5xx
status
codes in the case of server errors. See RFC7231, RFC7235 and related RFCs
for details.
Contact information
Contact Email : api-support@metaswitch.com
License information
License : Proprietary
License URL : https://www.metaswitch.com
Terms of service : null
Tags
-
read : Operations for reading Sh user data. Cached data is used where available, otherwise the HSS will be contacted.
-
update : Operations for updating Sh user data. Updated values are propagated to the HSS and cached if successful.
-
subscribe : Operations that subscribe to changes in Sh user data.
-
management : Operations for managing the state of the Sh cache.
-
infrastructure : Infrastructure API for checking the health of the microservice.
Resources
Read
Operations for reading Sh user data. Cached data is used where available, otherwise the HSS will be contacted.
User Data Request
GET /{data_references}/{user_id}
Description
Retrieves one or more Sh data references for a single public identity.
The public identity, data references and other parameters are specified in the request URL.
The parameters required depend on the data references that are requested. See the parameter definitions for details, and also 3GPP TS 29.328 Table 7.6.1.
The server will retrieve the data reference values from its cache, querying the HSS if the data is not in the cache.
If successful, the response body will be an XML Sh-Data
document using
the schema ShDataType_Rel11.xsd
specified in 3GPP TS 29.328.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
data_references |
Standard Sh data references available in the HSS for reads. Excludes "UE Reachability for IP", this is handled separately by Subscribe to UE Reachability. See 3GPP TS 29.328 Table 7.6.1. |
< enum (repository_data, ims_public_identity, ims_user_state, scscf_name, initial_filter_criteria, location_information, user_state, charging_information, msisdn, psi_activation, dsai, service_level_trace_info, ip_address_secure_binding_info, service_priority_level, sms_registration_info, tads_information, stn_sr, ue_srvcc_capability, extended_priority, csrn, reference_location_information) > array |
Path |
user_id |
IMS Public User Identity, Public Service Identity, or MSISDN of the user for whom the data is required. |
string |
Query |
as_name |
Application server name, the SIP URI of the application server. Required by data references:
See 29.329 §6.3.9. |
string |
Query |
current_location |
Indicates whether an active location retrieval has to be initiated or not, when an AS requests location information.
Required by data references:
See 29.329 §6.3.8. |
integer |
Query |
dsai_tags |
The DSAI-Tags identifying the instance of the Dynamic Service Activation Information being accessed for the Public Identity. Required by data references:
See 29.329 §6.3.18. |
< string > array |
Query |
local_tz_indication |
Optional. Indicates that the Local Time Zone information (time zone and daylight saving time) of the visited network where the UE is attached is requested with or without other location information. Used by data references:
See 29.329 §6.3.27. |
enum (only_local_tz, local_tz_with_location_info) |
Query |
private_id |
The IMS Private User Identity (IMPI) of the user for whom the data is requested. See 23.003 §13.3. |
string |
Query |
requested_domain |
The access domain for which the data is requested. Required by data references:
See 29.329 §6.3.7. |
enum (cs, ps) |
Query |
requested_identity_set |
The requested set of IMS Public Identities. Used by data references:
See 29.329 §6.3.10. |
< enum (all, registered, implicit, alias) > array |
Query |
requested_nodes |
Optional. A bitmask specifying for which access node types the data is requested. Only applies when 'requested_domain' is 'ps'.
Used by data references:
See 29.329 §6.3.7A. |
integer |
Query |
service_ind |
Service indication(s) to retrieve. Identifies the sets of service-specific transparent data that is being requested. Required by data references:
See 29.329 §6.3.5. |
< string > array(csv) |
Query |
serving_node_indication |
If present it indicates that the sender does not require any location information other than the Serving Node Addresses/Identities requested (e.g. MME name, VLR number). Other location information (e.g. Global Cell ID, Tracking Area ID) may be absent. Used by data references:
See 29.329 §6.3.23. |
enum (only_serving_nodes_required) |
Query |
udr_flags |
Optional. A bitmask requesting additional information as part of a location information request.
Used by data references:
See 29.329 §6.3.28. |
integer |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Data was retrieved successfully.
Message body is Sh-Data XML using schema |
string (byte) |
400 |
Bad request. The information provided was invalid or not sufficient to complete
the request. |
|
403 |
Forbidden. The operation is not allowed to proceed with the parameters given. |
|
404 |
Not found. The data for the given public identity was not found.
Service received a 5001 or 5030 response from the HSS. |
|
424 |
Failed Dependency. An unrecoverable error was received from a dependent service, such as the HSS.
Technically a 5xx-class error, but we don’t want to trigger unwanted retries or blacklisting
from linkerd or other service meshes. |
Example HTTP response
Response 400
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 403
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 404
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 424
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Update
Operations for updating Sh user data. Updated values are propagated to the HSS and cached if successful.
Profile Update Request
PUT /{data_reference}/{user_id}
Description
Creates or updates a single data reference or service indication.
The request body is an XML Sh-Data
document using the schema
ShDataType_Rel11.xsd
specified in 3GPP TS 29.328.
The document must contain the correct Sh-Data XML for the data reference. In case the data reference is RepositoryData, the Sh-Data/RepositoryData`element has to contain the same`ServiceIndication`as specified as a parameter, and the correct`SequenceNumber`
The server will perform a Profile-Update-Request
operation with the HSS, and,
if successful, update the value stored in its cache.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
data_reference |
Standard Sh data references available in the HSS for updates. See 3GPP TS 29.328 Table 7.6.1. |
enum (repository_data, psi_activation, dsai, sms_registration_info, stn_sr) |
Path |
user_id |
IMS Public User Identity, Public Service Identity, or MSISDN of the user for whom the data is required. |
string |
Query |
service_ind |
Service indication to update. Identifies the service-specific transparent data that is being updated. Required by data references:
See 29.329 §6.3.5. |
string |
Body |
data |
string (byte) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Updated |
No Content |
201 |
Created |
No Content |
400 |
Bad Request |
|
403 |
Forbidden. The operation is not allowed to proceed with the parameters given. |
|
404 |
Not found. The user or service indication was not found.
Service received a 5001 or 5030 response from the HSS. |
|
409 |
Conflict. Transparent data out of sync.
Service received a 5105 experimental response from the HSS. |
|
424 |
Failed Dependency. An unrecoverable error was received from a dependent service, such as the HSS.
Technically a 5xx-class error, but we don’t want to trigger unwanted retries or blacklisting
from linkerd or other service meshes. |
Example HTTP response
Response 400
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 403
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 404
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 409
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 424
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Subscribe
Operations that subscribe to changes in Sh user data.
Subscribe to UE Reachability
POST /ue_reachability_for_ip/{user_id}
Description
Subscribe to be notified when the UE is reachable over IP. The client must provide a callback URL at which it will receive the notification.
The server will send a Subscribe-Notification-Request
to the HSS,
requesting to be notified when the UE becomes reachable over IP.
When the HSS notifies the Sh Cache server, the client will be notified at the callback URL it provided.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
user_id |
IMS Public User Identity, Public Service Identity, or MSISDN of the user for whom the data is required. |
string |
Query |
private_id |
The IMS Private User Identity (IMPI) of the user for whom the data is requested. See 23.003 §13.3. |
string |
Body |
body |
Specifies the subscription expiry and notification information. |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
No Content |
400 |
Bad request |
|
403 |
Forbidden. The operation is not allowed to proceed with the parameters given. |
|
404 |
Not found. The user was not found.
Service received a 5001 or 5030 response from the HSS. |
No Content |
424 |
Failed Dependency. An unrecoverable error was received from a dependent service, such as the HSS.
Technically a 5xx-class error, but we don’t want to trigger unwanted retries or blacklisting
from linkerd or other service meshes. |
Example HTTP response
Response 400
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 403
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Response 424
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Management
Operations for managing the state of the Sh cache.
Invalidate cached data for all data references
DELETE /management/cache
Description
Invalidates all cache entries for all data references, or all cache entries
for a particular user if user_id
is supplied.
Subsequent cache operations will repopulate the cache from the HSS.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
invalidate_subscriptions |
Specifies whether subscription data will be invalidated as well as the cached data. |
boolean |
Query |
user_id |
IMS Public User Identity, Public Service Identity, or MSISDN of the user for whom the data is required. |
string |
Example HTTP response
Response 400
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Invalidate all cached data for the data reference
DELETE /management/cache/{data_reference}
Description
Invalidates all cache entries for the given data reference. Subsequent cache operations will repopulate the cache from the HSS.
If data_reference
is repository_data
and service_ind
is specified,
just the repository data for that service indication is invalidated.
Otherwise, all repository data is invalidated.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
data_reference |
Standard Sh data references available in the HSS for updates. See 3GPP TS 29.328 Table 7.6.1. |
enum (repository_data, psi_activation, dsai, sms_registration_info, stn_sr) |
Query |
invalidate_subscriptions |
Specifies whether subscription data will be invalidated as well as the cached data. |
boolean |
Query |
service_ind |
Service indication to update. Identifies the service-specific transparent data that is being updated. Required by data references:
See 29.329 §6.3.5. |
string |
Example HTTP response
Response 400
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Invalidate all cached data for the data reference and user
DELETE /management/cache/{data_reference}/{user_id}
Description
Invalidates all cache entries for the given data reference and user. Subsequent cache operations will repopulate the cache from the HSS.
If data_reference
is repository_data
and service_ind
is specified,
just the user’s repository data for that service indication is invalidated.
Otherwise, all repository data for the user is invalidated.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
data_reference |
Standard Sh data references available in the HSS for updates. See 3GPP TS 29.328 Table 7.6.1. |
enum (repository_data, psi_activation, dsai, sms_registration_info, stn_sr) |
Path |
user_id |
IMS Public User Identity, Public Service Identity, or MSISDN of the user for whom the data is required. |
string |
Query |
invalidate_subscriptions |
Specifies whether subscription data will be invalidated as well as the cached data. |
boolean |
Query |
service_ind |
Service indication to update. Identifies the service-specific transparent data that is being updated. Required by data references:
See 29.329 §6.3.5. |
string |
Example HTTP response
Response 400
{
"origin" : "credentials",
"errorID" : "identityNotUnique",
"message" : "A credentials record with the specified identity (%1) already exists. The record with internal ID %2 has that identity.",
"variables" : [ "tel:+12025550171", "ca8a8a04-9257-4093-97f7-ff27b8503e4c" ],
"requestID" : "a9d432e4-42c4-43b8-8492-4be76840546b"
}
Infrastructure
Infrastructure API for checking the health of the microservice.
Check the microservice is working correctly.
GET /infra/up
Description
Check that the microservice is working correctly. Dependencies (e.g. other microservices and underlying datastores) are not checked, so a successful response from this API does not guarantee that the full stack is working.
This endpoint may be suitable for health-checking a microservice instance.
A 204 response indicates that the microservice is working correctly. Any 5xx response or no response at all indicates a problem.
Check that the microservice is in service and ready to receive requests on this API.
GET /infra/ready
Description
Check that the microservice is in service and ready to receive requests on this API. The microservice performs end-to-end checking of its function (typically by generating some synthetic transactions).
This check should fail if there is no possibility of a typical request succeeding - perhaps because the microservice has not yet received initial configuration, or because it is not currently connected to one or more dependencies.
This endpoint may be suitable for use by a load-balancer when determining whether to pass service requests to this instance.
A 204 response indicates that the microservice is working correctly and ready to provide service. Any 5xx response or no response at all indicates a problem.
Definitions
UEReachabilityRequest
Name | Description | Schema |
---|---|---|
expires |
Expiry time in seconds |
integer |
notification_data |
Opaque data that will be sent in the notification request. |
string |
notification_url |
URL no notify when UE becomes reachable. |
string |
error
Details of an error.
Name | Description | Schema |
---|---|---|
errorID |
A short ID which, when combined with |
string |
message |
A human readable explanation of the error - intended for API client writers. This can optionally contain %number text to refer to variables. There must be at least that many variables in the variables array. |
string |
origin |
The microservice from which the error originated. The combination of |
string |
requestID |
The internal ID of the request which caused the error. |
string |
variables |
The items inserted into %number placeholders in the |
< string > array |