Get Custom Attributes
Returns a list of all custom attribute fields (also known as custom user fields) that have been defined for your account.
For details about defining custom user fields, see Custom User Fields.
Resource URL
https://<subdomain>/api/1/users/
custom_attributes
Header Parameter
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 Response
- 200 OK
- 400 Bad Request
- 401 Unauthorized
{
"status": {
"error": false,
"code": 200,
"type": "success",
"message": "Success"
},
"data": [
[
"alias",
"branch"
]
]
}
This is what a 200 OK
response looks like with no custom attribute results:
{
"data": [
[]
],
"status": {
"code": 200,
"error": false,
"message": "Success",
"type": "success"
}
}
Typically, this error means that your Authorization
header value is missing or incorrectly formatted. The Authorization
header value should use this format: bearer:<access_token>
.
{
"status": {
"error": true,
"code": 400,
"type": "bad request",
"message": "Authorization Information is incorrect"
}
}
Typically, this error means that your access token value is invalid.
{
"status": {
"error": true,
"code": 401,
"type": "Unauthorized",
"message": "Authentication Failure"
}
}
Response Elements
|
Provides a list of custom attribute fields (also known as custom user fields) that are available for your account. The values returned correspond to the values you provided in the Shortname field when you defined the custom user field. For details about defining custom user fields, see Custom User Fields. |
Postman Collection
- Clicking Run in Postman button navigates to the page where you can fork the collection to your workspace. Forking the collection into your workspace will enable you to contribute to the source collection using pull requests. You can also view the collection in a public workspace if you like and even import a copy of the collection using the links present on the screen.
Sample Code
cURL
Replace sample values indicated by < >
with your actual values.
curl 'https://<subdomain>/api/1/users/custom_attributes' \
-X GET \
-H "Authorization: bearer: <access_token>"
Python
See Work with OAuth 2.0 Tokens, Users, and Roles.
Have a Question?
Found a problem or a bug? Submit a support ticket.
Looking for walkthroughs or how-to guides on OneLogin's user and admin features? Check out the documentation in our Knowledge Base.
Have a product idea or request? Share it with us in our Ideas Portal.