Inline hooks

Inline hooks are outbound calls from Okta to your own custom code, triggered at specific points in Okta process flows. They allow you to integrate custom functionality into those flows. You implement your custom code as a web service with an Internet-accessible endpoint. It's your responsibility to arrange hosting of your code on a system external to Okta. Okta defines the REST API contract for the requests it sends to your custom code, as well as for the responses your custom code can send back. The outbound call from Okta is called a hook. Your code, which receives the call, is referred to as your external service.

Inline hooks use synchronous calls, which means that the Okta process that triggered the hook is paused until a response from your external service is received.

Inline hooks can be configured with OAuth2 support when making calls to your inline hook API endpoint. OAuth2 provides a stronger security mechanism to authorize calls to your inline hook API endpoint. See Add an inline hook .

Additional resources

There are several resources available to help you with inline hooks.

Topics

See also

Event hooks