{ "opencollection": "1.0.0", "info": { "name": "Okta Application InlineHook API", "version": "2.16.0" }, "items": [ { "info": { "name": "InlineHook", "type": "folder" }, "items": [ { "info": { "name": "listInlineHooks", "type": "http" }, "http": { "method": "GET", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks", "params": [ { "name": "type", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Success" }, { "info": { "name": "createInlineHook", "type": "http" }, "http": { "method": "POST", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Success" }, { "info": { "name": "getInlineHook", "type": "http" }, "http": { "method": "GET", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks/:inlineHookId", "params": [ { "name": "inlineHookId", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Gets an inline hook by ID" }, { "info": { "name": "updateInlineHook", "type": "http" }, "http": { "method": "PUT", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks/:inlineHookId", "params": [ { "name": "inlineHookId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Updates an inline hook by ID" }, { "info": { "name": "deleteInlineHook", "type": "http" }, "http": { "method": "DELETE", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks/:inlineHookId", "params": [ { "name": "inlineHookId", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Deletes the Inline Hook matching the provided id. Once deleted, the Inline Hook is unrecoverable. As a safety precaution, only Inline Hooks with a status of INACTIVE are eligible for deletion." }, { "info": { "name": "executeInlineHook", "type": "http" }, "http": { "method": "POST", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks/:inlineHookId/execute", "params": [ { "name": "inlineHookId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Executes the Inline Hook matching the provided inlineHookId using the request body as the input. This will send the provided data through the Channel and return a response if it matches the correct data contract. This execution endpoint should only be used for testing purposes." }, { "info": { "name": "activateInlineHook", "type": "http" }, "http": { "method": "POST", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks/:inlineHookId/lifecycle/activate", "params": [ { "name": "inlineHookId", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Activates the Inline Hook matching the provided id" }, { "info": { "name": "deactivateInlineHook", "type": "http" }, "http": { "method": "POST", "url": "https://your-subdomain.okta.com/api/v1/inlineHooks/:inlineHookId/lifecycle/deactivate", "params": [ { "name": "inlineHookId", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Deactivates the Inline Hook matching the provided id" } ] } ], "bundled": true }