Knock.Objects (Knock v0.4.18)
View SourceKnock resources for accessing Objects
Summary
Functions
Adds subscriptions for all recipients passed as arguments
Builds an object reference, which can be used in workflow trigger calls.
Creates a bulk operation to create subscriptions for a set of recipients to a set of objects within the given collection.
Bulk deletes one or more objects in a collection.
Bulk upserts one or more objects in a collection.
Deletes the given object.
Delete subscriptions for recipients passed as arguments
Gets the given object.
Returns all of the users preference sets
Returns channel data for the given channel id.
Returns paginated messages for the given object
Returns the preference set for the user.
Returns paginated schedules for the given object
Returns paginated subscriptions for the given object as recipient
Returns paginated list of objects for a collection
Returns paginated subscriptions for the given object
Upserts the given object in the collection with the attrs provided.
Sets the category preferences for the user.
Sets the category preference for the user.
Upserts channel data for the given channel id.
Sets the channel type preference for the user.
Sets the channel type preferences for the user.
Sets an entire preference set for the user. Will overwrite any existing data.
Sets the workflow preference for the user.
Sets the workflow preferences for the user.
Unsets the channel data for the given channel id.
Types
Functions
@spec add_subscriptions(Knock.Client.t(), String.t(), String.t(), map()) :: Knock.Api.response()
Adds subscriptions for all recipients passed as arguments
Expected properties:
- recipients: list of recipients to create subscriptions for
- properties: data to be stored at the subscription level for each recipient
Builds an object reference, which can be used in workflow trigger calls.
@spec bulk_add_subscriptions(Knock.Client.t(), String.t(), [map()]) :: Knock.Api.response()
Creates a bulk operation to create subscriptions for a set of recipients to a set of objects within the given collection.
Each entry in the provided subscriptions list should have the properties:
- id: the id of an object for subscribing
- recipients: a list of recipients to subscribe to the object
- properties (optional): a map of properties to apply to each recipient subscription
@spec bulk_delete(Knock.Client.t(), String.t(), [String.t()]) :: Knock.Api.response()
Bulk deletes one or more objects in a collection.
@spec bulk_set(Knock.Client.t(), String.t(), [map()]) :: Knock.Api.response()
Bulk upserts one or more objects in a collection.
@spec delete(Knock.Client.t(), String.t(), String.t()) :: Knock.Api.response()
Deletes the given object.
@spec delete_subscriptions( Knock.Client.t(), String.t(), String.t(), %{recipients: [String.t() | map()]} ) :: Knock.Api.response()
Delete subscriptions for recipients passed as arguments
Expected properties:
- recipients: list of recipients to create subscriptions for
@spec get(Knock.Client.t(), String.t(), String.t()) :: Knock.Api.response()
Gets the given object.
@spec get_all_preferences(Knock.Client.t(), String.t(), String.t()) :: Knock.Api.response()
Returns all of the users preference sets
@spec get_channel_data(Knock.Client.t(), String.t(), String.t(), String.t()) :: Knock.Api.response()
Returns channel data for the given channel id.
@spec get_messages(Knock.Client.t(), String.t(), String.t(), Keyword.t()) :: Knock.Api.response()
Returns paginated messages for the given object
Available optional parameters:
#
- page_size: specify size of the page to be returned by the api. (max limit: 50)
- after: after cursor for pagination
- before: before cursor for pagination
- status: list of statuses to filter messages with
- tenant: tenant_id to filter messages with
- channel_id: channel_id to filter messages with
- source: workflow key to filter messages with
- trigger_data: trigger payload to filter messages with
@spec get_preferences(Knock.Client.t(), String.t(), String.t(), Keyword.t()) :: Knock.Api.response()
Returns the preference set for the user.
@spec get_schedules(Knock.Client.t(), String.t(), String.t(), Keyword.t()) :: Knock.Api.response()
Returns paginated schedules for the given object
Available optional parameters:
#
- page_size: specify size of the page to be returned by the api. (max limit: 50)
- after: after cursor for pagination
- before: before cursor for pagination
- tenant: tenant_id to filter messages with
- workflow: workflow key to filter messages with
@spec get_subscriptions(Knock.Client.t(), String.t(), String.t(), Keyword.t()) :: Knock.Api.response()
Returns paginated subscriptions for the given object as recipient
Available optional parameters:
#
- page_size: specify size of the page to be returned by the api. (max limit: 50)
- after: after cursor for pagination
- before: before cursor for pagination
@spec list(Knock.Client.t(), String.t(), Keyword.t()) :: Knock.Api.response()
Returns paginated list of objects for a collection
Available optional parameters:
#
- page_size: specify size of the page to be returned by the api. (max limit: 50)
- after: after cursor for pagination
- before: before cursor for pagination
@spec list_subscriptions(Knock.Client.t(), String.t(), String.t(), Keyword.t()) :: Knock.Api.response()
Returns paginated subscriptions for the given object
Available optional parameters:
#
- page_size: specify size of the page to be returned by the api. (max limit: 50)
- after: after cursor for pagination
- before: before cursor for pagination
- recipients: list of recipient identifiers to filter subscribers of the object
@spec set(Knock.Client.t(), String.t(), String.t(), map()) :: Knock.Api.response()
Upserts the given object in the collection with the attrs provided.
@spec set_categories_preferences( Knock.Client.t(), String.t(), String.t(), map(), Keyword.t() ) :: Knock.Api.response()
Sets the category preferences for the user.
@spec set_category_preferences( Knock.Client.t(), String.t(), String.t(), String.t(), map() | boolean(), Keyword.t() ) :: Knock.Api.response()
Sets the category preference for the user.
@spec set_channel_data(Knock.Client.t(), String.t(), String.t(), String.t(), map()) :: Knock.Api.response()
Upserts channel data for the given channel id.
@spec set_channel_type_preferences( Knock.Client.t(), String.t(), String.t(), String.t(), boolean(), Keyword.t() ) :: Knock.Api.response()
Sets the channel type preference for the user.
@spec set_channel_types_preferences( Knock.Client.t(), String.t(), String.t(), map(), Keyword.t() ) :: Knock.Api.response()
Sets the channel type preferences for the user.
@spec set_preferences(Knock.Client.t(), String.t(), String.t(), map(), Keyword.t()) :: Knock.Api.response()
Sets an entire preference set for the user. Will overwrite any existing data.
@spec set_workflow_preferences( Knock.Client.t(), String.t(), String.t(), String.t(), map() | boolean(), Keyword.t() ) :: Knock.Api.response()
Sets the workflow preference for the user.
@spec set_workflows_preferences( Knock.Client.t(), String.t(), String.t(), map(), Keyword.t() ) :: Knock.Api.response()
Sets the workflow preferences for the user.
@spec unset_channel_data(Knock.Client.t(), String.t(), String.t(), String.t()) :: Knock.Api.response()
Unsets the channel data for the given channel id.