Get pcc profiles for a usage counter definition
This GET
operation retrieves all pcc profiles for a specific usage counter definition by passing both the planDefinitionId
and usageCounterDefinitionId
in the URL.
If successful, you receive an HTTP response code of 200
as well as a JSON
response body showing the requested usage counter definition and associated pcc profiles.
See HTTP response codes for other response codes. |
GET /pcc/spcm/planDefinitions/<planDefinitionId>/usageCounterDefinitions/<usageCounterDefinitionId>/pccProfiles
HEADER INFO
tenant: <tenantName>
authorisation: HTTP Basic Auth
accept: application/hal+JSON
permissions: SPCM_PLAN_DEFINITION_READ_PERMISSION
URL parameters
There are two mandatory parameters.
Parameter | Type | Description |
---|---|---|
|
integer |
A unique identifier for a plan definition which was assigned by the server upon creating the plan definition. |
|
integer |
A unique identifier for the usage counter. |
JSON response
The following example shows a JSON
response when requesting a usageCounterDefinitionId
of 714
which has two associated pcc profiles with ids of 755
and 756
.
{
"_links": {
"self": {
"href": "http://localhost:8080/spcm-rest-ws/pcc/spcm/planDefinitions/167/usageCounterDefinitions/714/pccProfiles"
}
},
"_embedded": {
"pccProfiles": [
{
"id": 755,
"alias": "DefaultProfile",
"qosProfileName": "QoS Default",
"serviceProfileName": "Service Default",
"networkProfileName": "NetworkProfile1",
"deviceProfileName": null,
"timeProfileName": "TimeProfile1",
"locationProfileName": "NorthMunster",
"chargingProfileName": null,
"subscriptionProfileName": null,
"threshold": false,
"meteringPercentage": null,
"precedence": 1,
"_links": {
"self": {
"href": "http://localhost:8080/spcm-rest-ws/pcc/spcm/
planDefinitions/167/pccProfiles/755"
}
}
},
{
"id": 756,
"alias": "DefaultProfile",
"qosProfileName": "QoS Default",
"serviceProfileName": "Service Default",
"networkProfileName": "NetworkProfile1",
"deviceProfileName": null,
"timeProfileName": "TimeProfile1",
"locationProfileName": null,
"chargingProfileName": null,
"subscriptionProfileName": null,
"threshold": false,
"meteringPercentage": null,
"precedence": 1,
"_links": {
"self": {
"href": "http://localhost:8080/spcm-rest-ws/pcc/spcm/
planDefinitions/167/pccProfiles/756"
}
}
}
]
}
}
Usage counter definition type descriptions
Field | Type | Description | ||
---|---|---|---|---|
|
integer |
The unique identifier for the usage counter. This is assigned by the server upon creation.
|
||
|
string |
The name of the usage counter.
|
||
|
string |
The timer unit being measured such as
|
||
|
string |
The type of usage being counted. This can be time (seconds), volume (bytes), or credit (lowest denomination of local currency, e.g, $1 = 100 units).
|
||
|
string |
The scope of this particular usage rule. options
|
||
|
string |
Specifies a specific time at which the counter should be reset. Format =
|
HTTP response codes
Code | Description | ||||
---|---|---|---|---|---|
|
success! |
||||
|
Multistatus response
|
||||
|
malformed request |
||||
|
unauthorised; bad username or password |
||||
|
forbidden; user does not have appropriate privileges |
||||
|
usage counter definition not found |
||||
|
conflict with target resource
|
||||
|
failed validation; this typically means that a property was not set or a value is out of range. example
|
||||
|
failed processing (after passing validation). example
|
||||
|
internal error |
||||
|
request rejected due to overload |