Get Details for a Service

get

/bcws/webresources/v1.0/services/{id}/serviceprofile

Gets the service details and profile details for the specified service. The service fields and profile fields are configured in the ServiceProfileConfigurations.xml file and mapped to a service type.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The details for the service were returned successfully.
Body ()
Root Schema : serviceProfile
Type: object
Show Source
Nested Schema : devices
Type: array
Show Source
Nested Schema : ProfileType
Type: object
Show Source
Nested Schema : ServiceType
Type: object
Show Source
Nested Schema : DeviceType
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : aliasList
Type: array
The list of aliases associated with the service.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : AliasList
Type: object
The list of aliases associated with the service.
Show Source

400 Response

The request isn't valid.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get the service profile for a given service by submitting a GET request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X GET 'http://hostname:port/bcws/webresources/version//services/0.0.0.1+-service-ip+156801/serviceprofile'

where:

  • hostname is the URL for the Billing Care REST server.
  • port is the port for the Billing Care REST server.
  • version is the version of the API you're using, such as v1.0.

Example of Response Body

This example shows the contents of the response body in JSON format.

{
    "service": {
        "extension": null,
        "id": {
            "id": "0.0.0.1+-service-ip+156801",
            "uri": null
        },
        "pendingDeferredActionsCount": null,
        "accountRef": {
            "id": "0.0.0.1+-account+57615",
            "uri": null
        },
        "aliasList": [],
        "balanceGroupRef": {
            "id": "0.0.0.1+-balance_group+61199",
            "uri": null
        },
        "creationDate": 1600943653000,
        "effectiveDate": null,
        "lastStatusComment": "",
        "lastStatusChange": 1601383372000,
        "login": "ip0",
        "lifeCycleState": null,
        "lastModified": 1608705956000,
        "name": "PIN Service Object",
        "password": null,
        "passwordExpiration": 0,
        "passwordStatus": 0,
        "status": 10100,
        "statusFlags": 0,
        "subscriptionServiceRef": {
            "id": "0.0.0.0++0",
            "uri": null
        },
        "serviceAccessLevel": "",
        "balGrpIndex": null,
        "args": [],
        "serviceIp": {
            "compression": 0,
            "ipaddr": null,
            "protocol": 0
        }
    },
    "profile": null,
    "devices": []
}
Back to Top