A target represents a user-defined goal for a metric for an individual or team.
This endpoint has the following methods:
-
GET https://flow.pluralsight.com/v3/customer/core/targets
: Gets a list of targets and their associated information. -
GET https://flow.pluralsight.com/v3/customer/core/targets/{id}
: Gets the information associated with a specific target by ID.
Parameters
Name | Type | Description |
---|---|---|
id | double | Unique identifier for a target. |
key | string | Key assigned to target. |
value | double | Value of the target. |
member_Id | double | Unique identifier for a member. |
team_id | double | Unique identifier for a team. |
apex_user | double | Filter-traversable object. |
apex_user_id | double | Unique identifier for the main user record for multiple user aliases that is associated with a target. |
apex_user_id__in | double | Multiple user_alias_id s in comma separated list. |
Example response
{
"id": 36796,
"key": "act:tgt",
"value": 2,
"apex_user_id": null,
"team_id": null
},
{
"id": 28821,
"key": "first:tgt",
"value": 8,
"apex_user_id": null,
"team_id": null
},
{
"id": 34165,
"key": "resolve:max",
"value": 75,
"apex_user_id": null,
"team_id": null
}