HooksApi

interface HooksApi

Functions

Link copied to clipboard
abstract suspend fun createHook(postHookRequest: PostHookRequest): PostHookResponse

Create a Hook The following parameters can be passed for the creation of a hook :- name - string - Required. The name of the template that is being called. (See /hooks/template for the list of valid hook names.) isActive - boolean - Determines whether the hook is actually triggered. events - array - Determines what events the hook is triggered for. config - hash - Required. Key/value pairs to provide settings for this hook. These settings vary between the templates. templateId - Optional. The UGD template ID associated with the same entity (client or loan). Responses:

Link copied to clipboard
abstract suspend fun deleteHook(hookId: Long): DeleteHookResponse

Delete a Hook Deletes a hook. Responses:

Link copied to clipboard
abstract suspend fun retrieveHook(hookId: Long): GetHookResponse

Retrieve a Hook Returns the details of a Hook. Example Requests: hooks/1 Responses:

Link copied to clipboard
abstract suspend fun retrieveHooks(): List<GetHookResponse>

Retrieve Hooks Returns the list of hooks. Example Requests: hooks Responses:

Link copied to clipboard
abstract suspend fun template3(): GetHookTemplateResponse

Retrieve Hooks Template This is a convenience resource. It can be useful when building maintenance user interface screens for client applications. The template data returned consists of any or all of: Field Defaults Allowed description Lists Example Request: hooks/template Responses:

Link copied to clipboard
abstract suspend fun updateHook(hookId: Long, putHookRequest: PutHookRequest): PutHookResponse

Update a Hook Updates the details of a hook. Responses: