Get a user by ID
GET /api/2.0/portal/users/{userid}
Request
Returns a user with the ID specified in the request from the current portal.
Authorization
An API key is a token that you provide when making API calls. Include the token in a cookie parameter called asc_auth_key
.
Example: asc_auth_key=864FE52C-1C1C-469F-9308-51DAFEFE7436
.
Headers
- Accept
enum of string
Can be one of:
application/json
,text/json
,text/plain
.
Path
- userID
string
uuidrequired User ID
Examples
GET /api/2.0/portal/users/%7Buserid%7D HTTP/1.1
Accept: application/json
Host: example.com
curl --request GET \
--url https://example.com/api/2.0/portal/users/%7Buserid%7D \
--header 'Accept: application/json'
Responses
200
User information
- id
string
uuid ID
- firstName
string
First name
- lastName
string
Last name
- userName
string
Username
- birthDate
string
date-time Birthday
- sex
boolean
Sex (male or female)
- status
one of
- .
enum of string
[Active - Active, Terminated - Terminated, Pending - Pending, Default - Default, All - All]
Can be one of:
Active
,Terminated
,Pending
,Default
,All
.- .
enum of integer
[1 - Active, 2 - Terminated, 4 - Pending, 5 - Default, 7 - All]
Can be one of:
1
,2
,4
,5
,7
.
- activationStatus
one of
- .
enum of string
[NotActivated - Not activated, Activated - Activated, Pending - Pending, AutoGenerated - Auto generated]
Can be one of:
NotActivated
,Activated
,Pending
,AutoGenerated
.- .
enum of integer
[0 - Not activated, 1 - Activated, 2 - Pending, 4 - Auto generated]
Can be one of:
0
,1
,2
,4
.
- terminatedDate
string
date-time The date and time when the user account was terminated
- title
string
Title
- workFromDate
string
date-time Registration date
- email
string
email Email
- contacts
string
List of contacts in the string format
- contactsList
array of string
List of contacts
- location
string
Location
- notes
string
Notes
- removed
boolean
Specifies if the user account was removed or not
- lastModified
string
date-time Last modified date
- tenantId
integer
int32 Tenant ID
- isActive
boolean
Spceifies if the user is active or not
- cultureName
string
Language
- mobilePhone
string
Mobile phone
- mobilePhoneActivationStatus
one of
- .
enum of string
[NotActivated - Not activated, Activated - Activated]
Can be one of:
NotActivated
,Activated
.- .
enum of integer
[0 - Not activated, 1 - Activated]
Can be one of:
0
,1
.
- sid
string
LDAP user identificator
- ldapQouta
integer
int64 LDAP user quota attribute
- ssoNameId
string
SSO SAML user identificator
- ssoSessionId
string
SSO SAML user session identificator
- createDate
string
date-time Creation date
- createdBy
string
uuid - spam
boolean
- checkActivation
boolean
401
Unauthorized