planAdmins
PlanAdmins represent a list of Users that have special permissions to edit plan details and to create API keys.
For more information, see How to Add a Plan Admin.
Try it yourself!
xxxxxxxxxx
17
# Sample query
query {
planAdmins (first: 3) {
nodes {
psUserId
email
firstName
lastName
planId
planUserId
currentSsoIdentifier
createdOn
note
}
}
}
​
1
{}
{}
GraphiQL Tips:
Press [Ctrl] + [Space] to bring up auto-suggested fields[Ctrl] + [Click] on a field to bring up relevant documentationAvailable Fields
Name | Type | Description |
---|---|---|
psUserId | ID! | The UUID compliant unique identifier of the User. |
String | The primary email of the User. | |
firstName | String | First name of the User. |
lastName | String | Last name of the User. |
planId | String | The Pluralsight Plan for the given record. |
planUserId | String | The unique identifier for a Pluralsight user assigned to a specific plan. |
currentSsoIdentifier | String | The current SSO identifier for the User. If the user changes plans, then the SSO identifier will become null. NOTE: this field will be null if user was previously an ACG only user, and now has access to the skills platform as well. |
createdOn | DateTime | The date and time this entity was created. Dates are serialized in ISO-8601. (Ex: '2021-02-01T00:00:00.000Z') |
note | String | Free-text note associated with the user, editable by plan admins. Often this field is used by plan admins to store the external identifier or remoteID for this User. |
userId | String! | DEPRECATED: Pluralsight is transitioning to a UUID compliant identifier for users. Please use psUserId instead. Deprecated on: 2025-02-10, support ceases: 2025-08-10, and is removed: 2025-11-10 The unique identifier for the User. |
ArgumentsPagination HelpFiltering Help
Name | Type | Description |
---|---|---|
first | Int | Please see pagination documentation: https://developer.pluralsight.com/docs/getting-started/pagination |
after | String | Please see pagination documentation: https://developer.pluralsight.com/docs/getting-started/pagination |
Output
A type that describes the return type for the planAdmins query. PlanAdmin can then be accessed via nodes or edges
Name | Type | Description |
---|---|---|
totalCount | Int! | The total number of PlanAdmin records available given the constraints of the query. An important note: This number represents the total number of records across individual requests. i.e. if totalCount were 100 and the planAdmins query requested only 10 results via the 'first' argument in the query, then you could calculate that you would need to make 10 requests to get all 100 records available. |
edges | [PlanAdminEdge] | A list of PlanAdmin entities, with the addition of a cursor field that can be used to fetch subsequent pages. |
nodes | [PlanAdmin] | A list of PlanAdmin entities. |
pageInfo | PageInfo! | Information needed to fetch subsequent pages. |