List Hooks
Use this API to return a list of all Smart Hooks that have been created in a OneLogin account.
Resource URL
https://<subdomain>/api/2/hooks
Header 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: In order to use Smart Hooks your API Credentials must be created after 21st October 2020. |
Query Parameters
Standard pagination is supported. Max page limit is 1000. See Pagination for detail on how this works.
Many of the search tools described in our Getting Started documentation can be applied to your parameters, allowing you to fine-tune your results.
Sample Responses
- 200 OK
- 401 Unauthorized
[
{
"id": "d360aded-6063-4c60-8add-45f32772ff71",
"type": "pre-authentication",
"packages": {
"ua-parser-js": "0.7.21"
},
"runtime": "nodejs18.x",
"context_version": ">= 1.0.0",
"retries": 0,
"timeout": 1,
"disabled": false,
"status": "ready",
"env_vars": [
"MY_API_KEY"
],
"options": {
"location_enabled": false,
"risk_enabled": false,
"mfa_device_info_enabled": false
},
"created_at": "2020-10-14T01:54:59.976Z",
"updated_at": "2020-10-16T17:28:45.970Z"
}
]
Typically, this error means that your access token value is invalid.
{
"name": "UnauthorizedError",
"message": "The request requires user authentication."
}
Response Elements
id |
The Hook unique ID in OneLogin. |
type |
A string describing the type of hook. e.g. `pre-authentication` |
packages |
An object containing NPM packages that are bundled with the hook function. |
runtime |
The Smart Hooks supported Node.js version to execute this hook with. |
context_version |
The semantic version of the content that will be injected into this hook. |
retries |
Default 0. Max 4. Number of retries if execution fails. |
timeout |
Default 1. The number of seconds to allow the hook function to run before before timing out. Maximum timeout varies based on the type of hook. See overview for more details. |
disabled |
Boolean to enable or disable the hook. Disabled hooks will not run. |
status |
String describing the state of the hook function. When a hook is ready and disabled is false it will be executed.
|
env_vars |
Array of Environment Variable objects that will be available via process.env.ENV_VAR_NAME in the hook code. |
options |
A set of attributes allow control over the information that is included in the hook context. See the docs for each hook type to learn about which config options are available. |
created_at |
ISO8601 format date that they hook function was created. |
created_at |
ISO8601 format date that they hook function was last updated. |
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.
List Smart Hooks
curl 'https://<subdomain>/api/2/hooks' \
-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 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.