Use this API to get a paginated list of self-registration profiles in a OneLogin account.
This call returns up to 50 profiles per page. Pagination is implemented using a standard set of querystring variables. Total profiles, pages and other pagination metadata is available via response headers. For more details see the pagination guide.
Resource URL
https://<subdomain>.onelogin.com/api/2/self_registration_profilesHeader Parameters
Authorization required string | Set to Set The access token must have been generated using an API credential pair created using the scope required to call this API. This API can be called using any one of the following scopes: |
Sample Responses
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 422 Unprocessable Entity
[{
"activated_at": null,
"distinguished_name": null,
"external_id": null,
"firstname": "Mike",
"last_login": null,
"lastname": "Tester",
"directory_id": null,
"invitation_sent_at": null,
"member_of": null,
"updated_at": "2019-08-22T18:43:55.188Z",
"created_at": "2019-08-22T18:43:55.188Z",
"id": 56781966,
"invalid_login_attempts": 0,
"locked_until": null,
"username": null,
"email": "mike.tester@onelogin.com",
"phone": null,
"state": 1,
"group_id": null,
"password_changed_at": "2019-08-22T18:43:55.172Z",
"status": 1,
"samaccountname": null
},
...
]With a limited set of fields
[{
"lastname": "Slater",
"last_login": "2020-06-03T19:59:21.382Z",
"id": 36216766,
"profile_picture_url": null,
"firstname": "Kelly"
},
...
]An invalid search parameter was used.
{
"message": "query parameter(s) not allowed: custom_attributes.date_of_birth",
"name": "BadRequestError",
"statusCode": 400
}{
"message": "query parameter(s) not allowed: first_login",
"name": "BadRequestError",
"statusCode": 400
}Typically, this error means that your access token value is invalid.
{
"message": "Unauthorized",
"statusCode": 401,
"name": "UnauthorizedError"
}You cant sort on this field.
{
"message": "Invalid sort field: created_at",
"field": "created_at",
"name": "UnprocessableEntityFieldError",
"statusCode": 422
}Postman Collection
Sample Code
cURL
Replace sample values indicated by < > with your actual values.
List Users
curl 'https://<subdomain>.onelogin.com/api/2/self_registration_profiles' \
-X GET \
-H "Authorization: bearer <access_token>"Have a Question?
Found a problem or a bug? Submit a support ticket.
Looking for walkthroughs or how-to guides? Check out our Knowledge Base.
Have a product idea or request? Share it in our Ideas Portal.