Get locations for location profile
This GET operation retrieves locations for a location profile.
GET /pcc/pcrf/locationProfiles/<name>
accept: application/JSON
permissions: PCRF_LOCATION_READ_PERMISSION
URL parameters
| There is one required parameter in this operation. | 
| Parameter | Description | Sample | 
|---|---|---|
| 
 | The name of the location profile. | 
 | 
Response
The response returns all location profiles and their associated parameters. An example is shown below:
{
	"id": 1,
	"name": "Austin",
	"whiteList": true,
	"description": "The home profile",
	"_links": {
		"self": {
			"href": "http://localhost:8080/pcrf-ws/pcc/pcrf/locationProfiles/Austin"
			},
		"location": {
			"href": "http://localhost:8080/pcrf-ws/pcc/pcrf/locationProfiles/Austin/locations"
			}
		}
}