Skip to main content

users

Paperspace Core API reference guide for users.

list

List information about all users available to either the current authenticated user or the team, if the user belongs to a team. The list method takes an optional first argument to limit the returned user objects.

Examples

paperspace users list \
--apiKey "edc20a51d9b2145..."

Parameters

NameTypeAttributesDescription
idstringoptionalOptional user id to match on
emailstringoptionalOptional email to match on
firstnamestringoptionalOptional firstname to match on
lastnamestringoptionalOptional lastname to match on
dtCreatedstringoptionalOptional datetime created value to match on
teamIdstringoptionalOptional teamId to match on

Response

Type array

[
{
"id": "u123abc",
"email": "jon@example.com",
"firstname": "Jon",
"lastname": "Snow",
"dtCreated": "2017-04-15T16:20:59.609Z",
"teamId": "te456def"
},
{
"id": "u789ghi",
"email": "jeff@example.com",
"firstname": "Jeff",
"lastname": "Green",
"dtCreated": "2016-12-07T15:59:09.769Z",
"teamId": "te456def"
}
]