Categories
This Lookup API retrieves all the Categories in PressGaney’s Reputation. Categories are the proprietary classification system we have derived for topical analysis of patient feedback on various aspects of your organization.
Categories are represented in a hierarchical manner in the Reputation product, however the API returns this data as a flat list. If needed, you can use the parentId
field to create the hierarchy in your warehouse.
Endpoint
GEThttps://api1.consumerism.pressganey.com/api/reputation/v1/categories
Header Parameters
Property | Type | Description | Required/Optional |
---|---|---|---|
accessToken | String | Access token for authentication. This access token is valid until the expiry time indicated in the response. | Required |
JSON Response
A JSON object which contains all the category details which are mapped to client.
[
{
"id": 51071,
"name": "General Feedback",
"parentId": 50301
}
]
JSON Response Tags
Property | Type | Description |
---|---|---|
id | Integer | Unique Id of the category |
name | String | Name of the category |
parentId | Integer | Parent category Id |