Hello, world!
+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + type: channel + title: WorkflowStep + type: object + PaginatedVariableResponse: + description: A paginated list of Variable. Contains a list of entries and page information. + example: + entries: + - description: This is a description of my variable. + inserted_at: "2021-01-01T00:00:00Z" + key: my_variable + type: public + updated_at: "2021-01-01T00:00:00Z" + value: my_value + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Variable" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedVariableResponse + type: object + PreviewWorkflowTemplateResponse: + description: A response to a preview workflow template request. + example: + content_type: email + result: success + template: + html_body:Hello, world!
+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + properties: + content_type: + description: The content type of the preview. + enum: + - email + - in_app_feed + - push + - chat + - sms + - http + type: string + result: + description: The result of the preview. + enum: + - success + - error + type: string + template: + anyOf: + - $ref: "#/components/schemas/EmailTemplate" + - $ref: "#/components/schemas/InAppFeedTemplate" + - $ref: "#/components/schemas/PushTemplate" + - $ref: "#/components/schemas/ChatTemplate" + - $ref: "#/components/schemas/SmsTemplate" + - $ref: "#/components/schemas/RequestTemplate" + description: The rendered template, ready to be previewed. + type: object + required: + - result + - content_type + - template + title: PreviewWorkflowTemplateResponse + type: object + WorkflowDelayStep: + description: A delay step within a workflow. + example: + conditions: {} + description: Delay for 10 seconds + name: Delay + ref: delay_step + settings: + delay_for: + unit: seconds + value: 10 + type: delay + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this delay step. + type: object + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Delay for 10 seconds + nullable: true + type: string + name: + description: A name for the workflow step. + example: Delay + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: delay_step + type: string + settings: + description: >- + The settings for the delay step. Both fields can be set to compute a delay where `delay_for` is an + offset from the `delay_until_field_path`. + properties: + delay_for: + anyOf: + - $ref: "#/components/schemas/Duration" + - nullable: true + description: A duration object that describes how long to wait before proceeding to the next step. + type: object + delay_until_field_path: + description: When set will use the path to resolve the delay into a timestamp from the property referenced + example: recipient.delay_until + type: string + type: object + type: + description: The type of the workflow step. + enum: + - delay + example: delay + type: string + required: + - type + - ref + - name + - description + - conditions + - settings + title: WorkflowDelayStep + type: object + RequestTemplate: + description: A request template. + example: + body: null + headers: + - key: X-API-Key + value: "1234567890" + method: get + query_params: + - key: key + value: value + url: https://example.com + properties: + body: + description: A body of the request. Only used for POST or PUT requests. + example: '{"key": "value"}' + nullable: true + type: string + headers: + description: >- + A list of key-value pairs for the request headers. Each object should contain key and value fields + with string values. + items: + properties: + key: + description: The key of the header. + example: X-API-Key + type: string + value: + description: The value of the header. + example: "1234567890" + type: string + required: + - key + - value + type: object + type: array + method: + description: The HTTP method of the request. + enum: + - get + - post + - put + - delete + - patch + example: post + type: string + query_params: + description: >- + A list of key-value pairs for the request query params. Each object should contain key and value + fields with string values. + items: + properties: + key: + description: The key of the query param. + example: key + type: string + value: + description: The value of the query param. + example: value + type: string + required: + - key + - value + type: object + type: array + url: + description: The URL of the request. + example: https://example.com + type: string + required: + - url + - method + title: RequestTemplate + type: object + WrappedPartialResponse: + description: Wraps the Partial response under the `partial` key. + example: + partial: + content:Hello, world!
+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + partial: + $ref: "#/components/schemas/Partial" + required: + - partial + title: WrappedPartialResponse + type: object + WrappedPartialRequestRequest: + description: Wraps the PartialRequest request under the partial key. + example: + partial: + content:Hello, world!
+ name: My Partial + type: html + properties: + partial: + $ref: "#/components/schemas/PartialRequest" + required: + - partial + title: WrappedPartialRequestRequest + type: object + MessageTypeMultiSelectField: + description: A multi-select field used in a message type. + example: + key: multi_select_field + label: Multi-Select Field + settings: + default: + - option1 + - option3 + description: A description of the multi-select field + options: + - label: Option 1 + value: option1 + - label: Option 2 + value: option2 + - label: Option 3 + value: option3 + required: true + type: multi_select + value: + - option1 + - option3 + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the multi_select field. + properties: + default: + description: The default values for the multi-select field. + example: + - option1 + - option3 + items: + type: string + nullable: true + type: array + description: + example: A description of the field, used in the UI + type: string + options: + description: The available options for the multi-select field. + items: + properties: + label: + description: The display label for the option. + example: Option 1 + type: string + value: + description: The value for the option. + example: option1 + type: string + required: + - value + type: object + type: array + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - multi_select + example: multi_select + type: string + value: + description: The selected values. + example: + - option1 + - option3 + items: + type: string + nullable: true + type: array + required: + - type + - key + - settings + title: MessageTypeMultiSelectField + type: object + MessageTypeBooleanField: + description: A boolean field used in a message type. + example: + key: boolean_field + label: Boolean Field + settings: + default: false + description: A description of the boolean field + required: true + type: boolean + value: true + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the boolean field. + properties: + default: + description: The default value of the boolean field. + example: true + type: boolean + description: + example: A description of the field, used in the UI + type: string + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - boolean + example: boolean + type: string + value: + description: The value of the boolean field. + example: true + type: boolean + required: + - type + - key + - value + title: MessageTypeBooleanField + type: object + Translation: + description: A translation object. + example: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + content: + description: >- + A JSON encoded string containing the key-value pairs of translation references and translation + strings. + type: string + format: + description: Indicates whether content is a JSON encoded object string or a string in the PO format. + enum: + - json + - po + type: string + inserted_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + locale_code: + description: The locale code for the translation object. + type: string + namespace: + description: An optional namespace for the translation to help categorize your translations. + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - locale_code + - namespace + - content + - format + - inserted_at + - updated_at + title: Translation + type: object + Commit: + description: A commit is a change to a resource within an environment, made by an author. + example: + commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + properties: + commit_author: + description: The author of the commit. + example: + email: john.doe@example.com + name: John Doe + properties: + email: + description: The email address of the commit author. + type: string + name: + description: The name of the commit author. + nullable: true + type: string + required: + - email + title: CommitAuthor + type: object + commit_message: + description: The optional message about the commit. + type: string + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + environment: + description: The environment of the commit. + example: development + type: string + id: + description: The unique identifier for the commit. + format: uuid + type: string + resource: + description: The resource object associated with the commit. + example: + identifier: my-email-layout + type: email_layout + properties: + identifier: + description: The unique identifier for the resource. + type: string + type: + description: The type of the resource object. + enum: + - email_layout + - workflow + - translation + - partial + - message_type + example: workflow + type: string + required: + - identifier + - type + title: CommitResource + type: object + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - id + - resource + - commit_author + - environment + - commit_message + - created_at + - updated_at + title: Commit + type: object + MessageTypeRequest: + description: A request to create a message type. + example: + description: This is a message type + name: My Message Type + preview:Hello, world!
+ name: My Partial + type: html + properties: + content: + description: The content of the partial. + type: string + description: + description: The description of the partial. + nullable: true + type: string + icon_name: + description: >- + The name of the icon to be used in the visual editor. Only relevant when `visual_block_enabled` is + `true`. + nullable: true + type: string + name: + description: The name of the partial. + type: string + type: + description: The type of the partial. + enum: + - html + - text + - json + - markdown + type: string + visual_block_enabled: + description: Indicates whether the partial can be used in the visual editor. Only applies to HTML partials. + example: false + nullable: true + type: boolean + required: + - type + - name + - content + title: PartialRequest + type: object + ConditionGroup: + anyOf: + - $ref: "#/components/schemas/ConditionGroupAllMatch" + - $ref: "#/components/schemas/ConditionGroupAnyMatch" + description: A group of conditions to be evaluated. + example: + all: + - argument: some_property + operator: equal_to + variable: recipient.property + title: ConditionGroup + type: object + WorkflowRequest: + description: A workflow request for upserting a workflow. + example: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + categories: + description: A list of categories that the workflow belongs to. + items: + type: string + type: array + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: >- + A conditions object that describes one or more conditions to be met for the workflow to be + executed. (optional). + type: object + description: + description: >- + An arbitrary string attached to a workflow object. Useful for adding notes about the workflow for + internal purposes. Maximum of 280 characters allowed. + type: string + name: + description: A name for the workflow. Must be at maximum 255 characters in length. + type: string + settings: + description: A map of workflow settings. + properties: + is_commercial: + description: Whether the workflow is commercial. Defaults to false. + example: false + type: boolean + override_preferences: + description: >- + Whether to ignore recipient preferences for a given type of notification. If true, will send + for every channel in the workflow even if the recipient has opted out of a certain kind. + Defaults to false. + example: false + type: boolean + type: object + steps: + description: >- + A list of workflow step objects in the workflow, which may contain any of: channel step, delay + step, batch step, fetch step. + items: + $ref: "#/components/schemas/WorkflowStep" + type: array + trigger_data_json_schema: + additionalProperties: true + description: >- + A JSON schema for the expected structure of the workflow trigger's data payload. Used to validate + trigger requests. (optional). + type: object + trigger_frequency: + description: >- + The frequency at which the workflow should be triggered. One of: `once_per_recipient`, + `once_per_recipient_per_tenant`, `every_trigger`. Defaults to `every_trigger`. + enum: + - every_trigger + - once_per_recipient + - once_per_recipient_per_tenant + example: every_trigger + type: string + required: + - name + - steps + title: WorkflowRequest + type: object + EmailPartialBlock: + description: A partial block in an email template, used to render a reusable partial component. + example: + attrs: + foo: bar + id: 123e4567-e89b-12d3-a456-426614174000 + key: my_partial + layout_attrs: + padding_bottom: 8 + padding_left: 4 + padding_right: 4 + padding_top: 8 + name: my_partial + type: partial + version: 1 + properties: + attrs: + additionalProperties: true + description: The attributes to pass to the partial block. + type: object + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + key: + description: The key of the partial block to invoke. + type: string + layout_attrs: + description: The layout attributes of the block. + properties: + padding_bottom: + description: The padding_bottom layout attribute of the block. + type: integer + padding_left: + description: The padding_left layout attribute of the block. + type: integer + padding_right: + description: The padding_right layout attribute of the block. + type: integer + padding_top: + description: The padding_top layout attribute of the block. + type: integer + required: + - padding_top + - padding_right + - padding_bottom + - padding_left + type: object + name: + description: The name of the partial block. + type: string + type: + description: The type of the block. + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + - name + - key + - attrs + title: EmailPartialBlock + type: object + RecipientReference: + description: >- + A recipient reference, used when referencing a recipient by either their ID (for a user), or by a + reference for an object. + example: + collection: projects + id: project_1 + oneOf: + - description: A user ID. + nullable: false + type: string + - description: An object reference. + properties: + collection: + type: string + id: + type: string + required: + - id + - collection + type: object + title: RecipientReference + type: object + ConditionGroupAnyMatch: + description: A group of conditions that any must be met. Can contain nested alls. + example: + any: + - all: + - argument: some_property + operator: equal_to + variable: recipient.property + properties: + any: + description: An array of conditions or nested condition groups to evaluate. + items: + anyOf: + - $ref: "#/components/schemas/Condition" + - $ref: "#/components/schemas/ConditionGroupAllMatch" + type: object + type: array + required: + - any + title: ConditionGroupAnyMatch + type: object + MessageTypeTextField: + description: A text field used in a message type. + example: + key: text_field + label: Text Field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the text field. + properties: + default: + description: The default value of the text field. + example: A placeholder + nullable: true + type: string + description: + example: A description of the field, used in the UI + type: string + max_length: + example: 100 + type: integer + min_length: + example: 10 + type: integer + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - text + example: text + type: string + value: + description: The value of the text field. + example: Hello, world! + nullable: true + type: string + required: + - type + - key + title: MessageTypeTextField + type: object + EmailTemplate: + description: An email message template. + example: + html_body:Hello, world!
+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + properties: + html_body: + description: An HTML template for the email body. Either `html_body` or `visual_blocks` must be provided. + example:Hello, world!
+ type: string + settings: + anyOf: + - properties: + attachment_key: + description: The object path in the data payload (of the workflow trigger call) to resolve attachments. + example: attachments + nullable: true + type: string + layout_key: + description: The key of the email layout which the step is using. + example: default + nullable: true + type: string + pre_content: + description: >- + A liquid template that will be injected into the layout above the message template + content. + nullable: true + type: string + - nullable: true + description: The settings for the email template. Can be omitted. + type: object + subject: + description: The subject of the email. + example: Hello, world! + type: string + text_body: + description: >- + A text template for the email body. Only present if opted out from autogenerating it from the HTML + template. + example: Hello, world! + nullable: true + type: string + visual_blocks: + description: The visual blocks of the email. Either `html_body` or `visual_blocks` must be provided. + items: + anyOf: + - $ref: "#/components/schemas/EmailButtonSetBlock" + - $ref: "#/components/schemas/EmailDividerBlock" + - $ref: "#/components/schemas/EmailHtmlBlock" + - $ref: "#/components/schemas/EmailMarkdownBlock" + - $ref: "#/components/schemas/EmailPartialBlock" + type: object + type: array + required: + - subject + title: EmailTemplate + type: object + WorkflowChannelStep: + description: A channel step within a workflow. + example: + channel_group_key: null + channel_key: postmark + channel_overrides: null + conditions: null + description: This is a description of the channel step + name: Email channel step + ref: channel_step + send_windows: null + template: + html_body:Hello, world!
+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + type: channel + properties: + channel_group_key: + description: >- + The key of the channel group to which the channel step will be sending a notification. A channel + step can have either a channel key or a channel group key, but not both. + example: email + nullable: true + type: string + channel_key: + description: >- + The key of the channel to which the channel step will be sending a notification. A channel step + can have either a channel key or a channel group key, but not both. + example: postmark + nullable: true + type: string + channel_overrides: + anyOf: + - $ref: "#/components/schemas/EmailChannelSettings" + - $ref: "#/components/schemas/InAppFeedChannelSettings" + - $ref: "#/components/schemas/SmsChannelSettings" + - $ref: "#/components/schemas/PushChannelSettings" + - $ref: "#/components/schemas/ChatChannelSettings" + - nullable: true + description: A map of channel overrides for the channel step. + type: object + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this channel step. + type: object + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Delay for 10 seconds + nullable: true + type: string + name: + description: A name for the workflow step. + example: Delay + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: delay_step + type: string + send_windows: + description: A list of send window objects. Must include one send window object per day of the week. + items: + $ref: "#/components/schemas/SendWindow" + nullable: true + type: array + template: + anyOf: + - $ref: "#/components/schemas/EmailTemplate" + - $ref: "#/components/schemas/InAppFeedTemplate" + - $ref: "#/components/schemas/SmsTemplate" + - $ref: "#/components/schemas/PushTemplate" + - $ref: "#/components/schemas/ChatTemplate" + - $ref: "#/components/schemas/WebhookTemplate" + description: >- + The message template set up with the channel step. The shape of the template depends on the type + of the channel you'll be sending to. See below for definitions of each channel type template: + email, in-app, SMS, push, chat, and webhook. + type: object + type: + description: The type of the workflow step. + enum: + - channel + example: channel + type: string + required: + - type + - ref + - name + - template + title: WorkflowChannelStep + type: object + WrappedMessageTypeResponse: + description: Wraps the MessageType response under the `message_type` key. + example: + message_type: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:Hello, world!
+ id: 123e4567-e89b-12d3-a456-426614174000 + type: html + version: 1 + properties: + content: + description: The HTML content of the block. + type: string + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + type: + description: The type of the block. + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + - content + title: EmailHtmlBlock + type: object + PaginatedEmailLayoutResponse: + description: A paginated list of EmailLayout. Contains a list of entries and page information. + example: + entries: + - created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/EmailLayout" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEmailLayoutResponse + type: object + RunWorkflowResponse: + description: A response to a run workflow request. + example: + workflow_run_id: 123e4567-e89b-12d3-a456-426614174000 + properties: + workflow_run_id: + description: The ID of the workflow run. + format: uuid + type: string + required: + - workflow_run_id + title: RunWorkflowResponse + type: object + Partial: + description: A partial is a reusable piece of content that can be used in a template. + example: + content:Hello, world!
+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + content: + description: The partial content. + type: string + description: + description: >- + An arbitrary string attached to a partial object. Useful for adding notes about the partial for + internal purposes. Maximum of 280 characters allowed. + type: string + environment: + description: The slug of the environment in which the partial exists. + type: string + icon_name: + description: The name of the icon to be used in the visual editor. + type: string + inserted_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + key: + description: >- + The unique key string for the partial object. Must be at minimum 3 characters and at maximum 255 + characters in length. Must be in the format of ^[a-z0-9_-]+$. + type: string + name: + description: A name for the partial. Must be at maximum 255 characters in length. + type: string + type: + description: The partial type. One of 'html', 'json', 'markdown', 'text'. + enum: + - html + - text + - json + - markdown + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + valid: + description: Whether the partial and its content are in a valid state. + type: boolean + visual_block_enabled: + description: Indicates whether the partial can be used in the visual editor. Only applies to HTML partials. + type: boolean + required: + - key + - type + - name + - content + - inserted_at + - updated_at + - valid + title: Partial + type: object + MessageType: + description: A message type object. + example: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:Hello, world!
+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Partial" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedPartialResponse + type: object + WrappedTranslationResponse: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + MessageTypeSelectField: + description: A select field used in a message type. + example: + key: select_field + label: Select Field + settings: + default: option1 + description: A description of the select field + options: + - label: Option 1 + value: option1 + - label: Option 2 + value: option2 + - label: Option 3 + value: option3 + required: true + type: select + value: option1 + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the select field. + properties: + default: + description: The default value for the select field. + example: option1 + nullable: true + type: string + description: + example: A description of the field, used in the UI + type: string + options: + description: The available options for the select field. + items: + properties: + label: + description: The display label for the option. + example: Option 1 + type: string + value: + description: The value for the option. + example: option1 + type: string + required: + - value + type: object + type: array + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - select + example: select + type: string + value: + description: The selected value. + example: option1 + nullable: true + type: string + required: + - type + - key + - settings + title: MessageTypeSelectField + type: object + WorkflowTriggerWorkflowStep: + description: A workflow trigger workflow step. + example: + name: Trigger workflow step + ref: trigger_workflow_step + settings: + actor: "{{ actor.id }}" + cancellation_key: "{{ workflow.cancellation_key }}" + data: "{{ data | json }}" + recipients: "{{ recipient.id }}" + tenant: "{{ tenant.id }}" + workflow_key: dinosaurs-loose + type: trigger_workflow + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this trigger workflow step. + type: object + description: + description: A description for the workflow step. + example: Trigger workflow step description + type: string + name: + description: A name for the workflow step. + example: Trigger workflow step + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: trigger_workflow_step + type: string + settings: + description: The settings for the workflow trigger workflow step. + properties: + actor: + description: The actor to trigger the workflow with. Supports liquid. + example: "{{ actor.id }}" + type: string + cancellation_key: + description: The cancellation key to trigger the workflow with. Supports liquid. + example: "{{ workflow.cancellation_key }}" + type: string + data: + description: The data to be supplied to the workflow. Supports liquid. + example: "{{ data | json }}" + type: string + recipients: + description: The recipients or recipient to trigger the workflow for. Supports liquid. + example: "{{ recipient.id }}" + type: string + tenant: + description: The tenant to trigger the workflow with. Supports liquid. + example: "{{ tenant.id }}" + type: string + workflow_key: + description: The key of the workflow to trigger. Supports liquid. + example: dinosaurs-loose + type: string + type: object + type: + description: The type of the workflow step. + enum: + - trigger_workflow + example: trigger_workflow + type: string + required: + - type + - ref + - name + - settings + title: WorkflowTriggerWorkflowStep + type: object + Condition: + description: A condition to be evaluated. + example: + argument: some_property + operator: equal_to + variable: recipient.property + properties: + argument: + description: >- + The argument to be evaluated. Arguments can be either static values or dynamic properties. Static + values will always be JSON decoded so will support strings, lists, objects, numbers, and booleans. + Dynamic values should be path expressions. + example: some_property + nullable: true + type: string + operator: + description: The operator to use in the evaluation of the condition. + enum: + - equal_to + - not_equal_to + - greater_than + - less_than + - greater_than_or_equal_to + - less_than_or_equal_to + - contains + - not_contains + - contains_all + - empty + - not_empty + - is_audience_member + - is_not_audience_member + example: equal_to + type: string + variable: + description: >- + The variable to be evaluated. Variables can be either static values or dynamic properties. Static + values will always be JSON decoded so will support strings, lists, objects, numbers, and booleans. + Dynamic values should be path expressions. + example: recipient.property + type: string + required: + - variable + - operator + title: Condition + type: object + PushTemplate: + description: A push notification template. + example: + settings: + payload_overrides: '{"name": "John"}' + text_body: Hello, world! + title: Hello, world! + properties: + settings: + anyOf: + - properties: + delivery_type: + description: >- + The delivery type of the push notification. Defaults to `content`. Set as silent to send a + data-only notification. When set to `data`, no body will be sent. + enum: + - silent + - content + example: content + type: string + payload_overrides: + description: A JSON object overrides the payload sent to the push provider. + example: '{"name": "John"}' + type: string + type: object + - nullable: true + description: The settings for the push template. Can be omitted. + type: object + text_body: + description: The body of the push notification. + example: Hello, world! + type: string + title: + description: The title of the push notification. + example: Hello, world! + type: string + required: + - title + - text_body + title: PushTemplate + type: object + CommitAuthor: + description: The author of the commit. + example: + email: john.doe@example.com + name: John Doe + properties: + email: + description: The email address of the commit author. + type: string + name: + description: The name of the commit author. + nullable: true + type: string + required: + - email + title: CommitAuthor + type: object + CommitResource: + description: The resource object associated with the commit. + example: + identifier: my-email-layout + type: email_layout + properties: + identifier: + description: The unique identifier for the resource. + type: string + type: + description: The type of the resource object. + enum: + - email_layout + - workflow + - translation + - partial + - message_type + example: workflow + type: string + required: + - identifier + - type + title: CommitResource + type: object + securitySchemes: + BearerAuth: + bearerFormat: JWT + scheme: bearer + type: http +info: + title: Knock Management API (mAPI) + version: "1.0" +openapi: 3.0.0 +paths: + /v1/api_keys/exchange: + post: + callbacks: {} + description: >- + Given an authenticated service token and an environment, will exchange the service token for a secret + API key that can be used to make requests to the public API. + operationId: exchangeForApiKey + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + responses: + "200": + content: + application/json: + schema: + description: Returns an API key that can be used to make requests to the public API. + example: + api_key: sk_1234567890 + properties: + api_key: + description: The secret API key exchanged from the service token. + type: string + required: + - api_key + title: ExchangeForApiKeyResponse + type: object + description: OK + summary: Exchange for API key + tags: + - API keys + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.apiKeys.exchange(); + + console.log(response.api_key); + } + + main(); + /v1/channel_groups: + get: + callbacks: {} + description: >- + Returns a paginated list of channel groups. Note: the list of channel groups is across the entire + account, not scoped to an environment. + operationId: listChannelGroups + parameters: + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of ChannelGroup. Contains a list of entries and page information. + example: + entries: + - channel_rules: + - channel: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + created_at: "2021-01-01T00:00:00Z" + index: 0 + rule_type: always + updated_at: "2021-01-01T00:00:00Z" + channel_type: push + created_at: "2021-01-01T00:00:00Z" + key: push-group + name: Push Notification Group + operator: any + source: user + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/ChannelGroup" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedChannelGroupResponse + type: object + description: OK + summary: List channel groups + tags: + - Channel Groups + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const channelGroup of client.channelGroups.list()) { + console.log(channelGroup.channel_rules); + } + } + + main(); + /v1/channels: + get: + callbacks: {} + description: >- + Returns a paginated list of channels. Note: the list of channels is across the entire account, not + scoped to an environment. + operationId: listChannels + parameters: + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Channel. Contains a list of entries and page information. + example: + entries: + - archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Channel" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedChannelResponse + type: object + description: OK + summary: List channels + tags: + - Channels + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const channel of client.channels.list()) { + console.log(channel.provider); + } + } + + main(); + /v1/commits: + get: + callbacks: {} + description: >- + Returns a paginated list of commits in a given environment. The commits are ordered from most recent + first. + operationId: listCommits + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: >- + Whether to show only promoted or unpromoted changes between the given environment and the + subsequent environment. + in: query + name: promoted + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Commit. Contains a list of entries and page information. + example: + entries: + - commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Commit" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedCommitResponse + type: object + description: OK + summary: List commits + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const commit of client.commits.list()) { + console.log(commit.id); + } + } + + main(); + put: + callbacks: {} + description: Commit all changes across all resources in the development environment. + operationId: commitAllChanges + parameters: + - description: A slug of the environment in which to commit all changes. + in: query + name: environment + required: false + schema: + example: development + type: string + - description: An optional message to include in a commit. + in: query + name: commit_message + required: false + schema: + type: string + responses: + "200": + content: + application/json: + schema: + description: The result of the commit operation. + properties: + result: + example: success + type: string + required: + - result + type: object + description: OK + summary: Commit all changes + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.commits.commitAll(); + + console.log(response.result); + } + + main(); + /v1/commits/promote: + put: + callbacks: {} + description: Promote all changes across all resources to the target environment from its preceding environment. + operationId: promoteAllCommits + parameters: + - description: > + A slug of the target environment to which you want to promote all changes from its directly + preceding environment. + + + For example, if you have three environments “development”, “staging”, and “production” (in that + order), setting this param to “production” will promote all commits not currently in production + from staging. + + + Note: This must be a non-development environment. + in: query + name: to_environment + required: true + schema: + type: string + responses: + "200": + content: + application/json: + schema: + description: The result of the commit operation. + properties: + result: + example: success + type: string + required: + - result + type: object + description: OK + summary: Promote all changes + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.commits.promoteAll({ to_environment: 'to_environment' }); + + console.log(response.result); + } + + main(); + /v1/commits/{id}: + get: + callbacks: {} + description: Retrieve a single commit by its ID. + operationId: getCommit + parameters: + - description: The id of the commit to retrieve. + in: path + name: id + required: true + schema: + format: uuid + type: string + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Commit" + description: OK + summary: Get a commit + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const commit = await client.commits.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'); + + console.log(commit.id); + } + + main(); + /v1/commits/{id}/promote: + put: + callbacks: {} + description: Promotes one change to the subsequent environment. + operationId: promoteOneCommit + parameters: + - description: The target commit ID to promote to the subsequent environment. + in: path + name: id + required: true + schema: + type: string + responses: + "200": + content: + application/json: + schema: + description: Wraps the Commit response under the `commit` key. + example: + commit: + commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + properties: + commit: + $ref: "#/components/schemas/Commit" + required: + - commit + title: WrappedCommitResponse + type: object + description: OK + summary: Promote one commit + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.commits.promoteOne('id'); + + console.log(response.commit); + } + + main(); + /v1/email_layouts: + get: + callbacks: {} + description: Returns a paginated list of email layouts available in a given environment. + operationId: listEmailLayouts + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of EmailLayout. Contains a list of entries and page information. + example: + entries: + - created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/EmailLayout" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEmailLayoutResponse + type: object + description: OK + summary: List email layouts + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const emailLayout of client.emailLayouts.list()) { + console.log(emailLayout.created_at); + } + } + + main(); + /v1/email_layouts/{email_layout_key}: + get: + callbacks: {} + description: Retrieve an email layout by its key, in a given environment. + operationId: getEmailLayout + parameters: + - description: The key of the email layout to show. + in: path + name: email_layout_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/EmailLayout" + description: OK + summary: Get email layout + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const emailLayout = await client.emailLayouts.retrieve('email_layout_key'); + + console.log(emailLayout.created_at); + } + + main(); + put: + callbacks: {} + description: | + Updates an email layout, or creates a new one if it does not yet exist. + + Note: this endpoint only operates in the "development" environment. + operationId: upsertEmailLayout + parameters: + - description: The key of the email layout to upsert. + in: path + name: email_layout_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the EmailLayoutRequest request under the email_layout key. + example: + email_layout: + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + name: Transactional + text_layout: Hello, world! + properties: + email_layout: + $ref: "#/components/schemas/EmailLayoutRequest" + required: + - email_layout + title: WrappedEmailLayoutRequestRequest + type: object + description: Email layout + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the EmailLayout response under the `email_layout` key. + example: + email_layout: + created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + properties: + email_layout: + $ref: "#/components/schemas/EmailLayout" + required: + - email_layout + title: WrappedEmailLayoutResponse + type: object + description: OK + summary: Upsert email layout + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.emailLayouts.upsert('email_layout_key', { + email_layout: { + html_layout: 'Hello, world!', + name: 'Transactional', + text_layout: 'Hello, world!', + }, + }); + + console.log(response.email_layout); + } + + main(); + /v1/email_layouts/{email_layout_key}/validate: + put: + callbacks: {} + description: | + Validates an email layout payload without persisting it. + + Note: this endpoint only operates in the "development" environment. + operationId: validateEmailLayout + parameters: + - description: The key of the email layout to validate. + in: path + name: email_layout_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the EmailLayoutRequest request under the email_layout key. + example: + email_layout: + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + name: Transactional + text_layout: Hello, world! + properties: + email_layout: + $ref: "#/components/schemas/EmailLayoutRequest" + required: + - email_layout + title: WrappedEmailLayoutRequestRequest + type: object + description: Email layout + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the EmailLayout response under the `email_layout` key. + example: + email_layout: + created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + properties: + email_layout: + $ref: "#/components/schemas/EmailLayout" + required: + - email_layout + title: WrappedEmailLayoutResponse + type: object + description: OK + summary: Validate email layout + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.emailLayouts.validate('email_layout_key', { + email_layout: { + html_layout: 'Hello, world!', + name: 'Transactional', + text_layout: 'Hello, world!', + }, + }); + + console.log(response.email_layout); + } + + main(); + /v1/environments: + get: + callbacks: {} + description: >- + Returns a paginated list of environments. The environments will be returned in order of their index, + with the `development` environment first. + operationId: listEnvironments + parameters: + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Environment. Contains a list of entries and page information. + example: + entries: + - created_at: "2022-10-31T19:59:03Z" + deleted_at: null + hide_pii_data: false + label_color: "#000000" + last_commit_at: "2022-10-31T19:59:03Z" + name: Production + order: 0 + owner: system + slug: production + updated_at: "2022-10-31T19:59:03Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Environment" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEnvironmentResponse + type: object + description: OK + summary: List environments + tags: + - Environments + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const environment of client.environments.list()) { + console.log(environment.hide_pii_data); + } + } + + main(); + /v1/environments/{environment_slug}: + get: + callbacks: {} + description: Returns a single environment by its slug. + operationId: getEnvironment + parameters: + - description: The slug of the environment to retrieve. + in: path + name: environment_slug + required: true + schema: + example: development + type: string + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Environment" + description: OK + summary: Get an environment + tags: + - Environments + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const environment = await client.environments.retrieve('development'); + + console.log(environment.hide_pii_data); + } + + main(); + /v1/message_types: + get: + callbacks: {} + description: Returns a paginated list of message types available in a given environment. + operationId: listMessageTypes + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of MessageType. Contains a list of entries and page information. + example: + entries: + - archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:Hello, world!
+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Partial" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedPartialResponse + type: object + description: OK + summary: List partials + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const partial of client.partials.list({ environment: 'environment' })) { + console.log(partial.valid); + } + } + + main(); + /v1/partials/{partial_key}: + get: + callbacks: {} + description: Get a partial by its key. + operationId: getPartial + parameters: + - description: A slug of the environment from which to query the partial. + in: query + name: environment + required: true + schema: + type: string + - description: The key of the partial to retrieve. + in: path + name: partial_key + required: true + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Partial" + description: OK + summary: Get a partial + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const partial = await client.partials.retrieve('partial_key', { environment: 'environment' }); + + console.log(partial.valid); + } + + main(); + put: + callbacks: {} + description: | + Updates a partial of a given key, or creates a new one if it does not yet exist. + + Note: this endpoint only operates on partials in the “development” environment. + operationId: upsertPartial + parameters: + - description: A slug of the environment in which to upsert the partial. + in: query + name: environment + required: true + schema: + type: string + - description: The key of the partial to upsert. + in: path + name: partial_key + required: true + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the PartialRequest request under the partial key. + example: + partial: + content:Hello, world!
+ name: My Partial + type: html + properties: + partial: + $ref: "#/components/schemas/PartialRequest" + required: + - partial + title: WrappedPartialRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Partial response under the `partial` key. + example: + partial: + content:Hello, world!
+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + partial: + $ref: "#/components/schemas/Partial" + required: + - partial + title: WrappedPartialResponse + type: object + description: OK + summary: Upsert a partial + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.partials.upsert('partial_key', { + environment: 'environment', + partial: { content: 'Hello, world!
', name: 'My Partial', type: 'html' }, + }); + + console.log(response.partial); + } + + main(); + /v1/partials/{partial_key}/validate: + put: + callbacks: {} + description: | + Validates a partial payload without persisting it. + + Note: this endpoint only operates on partials in the “development” environment. + operationId: validatePartial + parameters: + - description: A slug of the environment in which to validate the partial. + in: query + name: environment + required: true + schema: + type: string + - description: The key of the partial to validate. + in: path + name: partial_key + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the PartialRequest request under the partial key. + example: + partial: + content:Hello, world!
+ name: My Partial + type: html + properties: + partial: + $ref: "#/components/schemas/PartialRequest" + required: + - partial + title: WrappedPartialRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Partial response under the `partial` key. + example: + partial: + content:Hello, world!
+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + partial: + $ref: "#/components/schemas/Partial" + required: + - partial + title: WrappedPartialResponse + type: object + description: OK + summary: Validate a partial + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.partials.validate('partial_key', { + environment: 'environment', + partial: { content: 'Hello, world!
', name: 'My Partial', type: 'html' }, + }); + + console.log(response.partial); + } + + main(); + /v1/translations: + get: + callbacks: {} + description: > + Returns a paginated list of translations available in a given environment. The translations are + returned in alpha-sorted order by locale code. + operationId: listTranslations + parameters: + - description: A specific locale code to filter translations for. + in: query + name: locale_code + required: false + schema: + type: string + - description: A specific namespace to filter translations for. + in: query + name: namespace + required: false + schema: + type: string + - description: Optionally specify the returned content format. Supports 'json' and 'po'. Defaults to 'json'. + in: query + name: format + required: false + schema: + enum: + - json + - po + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Translation. Contains a list of entries and page information. + example: + entries: + - content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Translation" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedTranslationResponse + type: object + description: OK + summary: List translations + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const translation of client.translations.list()) { + console.log(translation.content); + } + } + + main(); + /v1/translations/{locale_code}: + get: + callbacks: {} + description: Retrieve a translation by its locale and namespace, in a given environment. + operationId: getTranslation + parameters: + - description: A specific locale code to filter translations for. + in: path + name: locale_code + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Optionally specify the returned content format. Supports 'json' and 'po'. Defaults to 'json'. + in: query + name: format + required: false + schema: + enum: + - json + - po + type: string + - description: A specific namespace to filter translations for. + in: query + name: namespace + required: false + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + description: OK + summary: Get translation + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const translation = await client.translations.retrieve('locale_code'); + + console.log(translation.translation); + } + + main(); + put: + callbacks: {} + description: > + Updates a translation of a given locale code + namespace, or creates a new one if it does not yet + exist. + + + Note: this endpoint only operates on translations in the "development" environment. + operationId: upsertTranslation + parameters: + - description: A locale code of the translation. + in: path + name: locale_code + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: An optional namespace that identifies the translation. + in: query + name: namespace + required: true + schema: + type: string + - description: Optionally specify the returned content format. Supports 'json' and 'po'. Defaults to 'json'. + in: query + name: format + required: false + schema: + enum: + - json + - po + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the TranslationRequest request under the translation key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + properties: + translation: + $ref: "#/components/schemas/TranslationRequest" + required: + - translation + title: WrappedTranslationRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + description: OK + summary: Upsert translation + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.translations.upsert('locale_code', { + namespace: 'namespace', + translation: { content: '{"hello":"Hello, world!"}', format: 'json' }, + }); + + console.log(response.translation); + } + + main(); + /v1/translations/{locale_code}/validate: + put: + callbacks: {} + description: | + Validates a translation payload without persisting it. + + Note: this endpoint only operates on translations in the "development" environment. + operationId: validateTranslation + parameters: + - description: A locale code of the translation. + in: path + name: locale_code + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the TranslationRequest request under the translation key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + properties: + translation: + $ref: "#/components/schemas/TranslationRequest" + required: + - translation + title: WrappedTranslationRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + description: OK + summary: Validate translation + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.translations.validate('locale_code', { + translation: { content: '{"hello":"Hello, world!"}', format: 'json' }, + }); + + console.log(response.translation); + } + + main(); + /v1/variables: + get: + callbacks: {} + description: Returns a paginated list of variables for a given environment. + operationId: listVariables + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Variable. Contains a list of entries and page information. + example: + entries: + - description: This is a description of my variable. + inserted_at: "2021-01-01T00:00:00Z" + key: my_variable + type: public + updated_at: "2021-01-01T00:00:00Z" + value: my_value + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Variable" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedVariableResponse + type: object + description: OK + summary: List variables + tags: + - Variables + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const variable of client.variables.list({ environment: 'development' })) { + console.log(variable.inserted_at); + } + } + + main(); + /v1/whoami: + get: + callbacks: {} + description: Return information about the current service token. + operationId: getWhoami + parameters: [] + responses: + "200": + content: + application/json: + schema: + description: Information about the current service token. + example: + account_name: Acme, Inc. + account_slug: acme + service_token_name: My Service Token + properties: + account_name: + type: string + account_slug: + type: string + service_token_name: + type: string + required: + - account_name + - account_slug + - service_token_name + type: object + description: OK + summary: Verify scope + tags: + - Accounts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.auth.verify(); + + console.log(response.account_name); + } + + main(); + /v1/workflows: + get: + callbacks: {} + description: >- + Returns a paginated list of workflows available in a given environment. The workflows are returned in + alpha sorted order by its key. + operationId: listWorkflows + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Workflow. Contains a list of entries and page information. + example: + entries: + - active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Workflow" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedWorkflowResponse + type: object + description: OK + summary: List workflows + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const workflow of client.workflows.list({ environment: 'development' })) { + console.log(workflow.valid); + } + } + + main(); + /v1/workflows/{workflow_key}: + get: + callbacks: {} + description: Retrieve a workflow by its key and namespace, in a given environment. + operationId: getWorkflow + parameters: + - description: The key of the workflow to retrieve. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Workflow" + description: OK + summary: Get a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const workflow = await client.workflows.retrieve('workflow_key', { environment: 'development' }); + + console.log(workflow.valid); + } + + main(); + put: + callbacks: {} + description: | + Updates a workflow of a given key, or creates a new one if it does not yet exist. + + Note: this endpoint only operates on workflows in the `development` environment. + operationId: upsertWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: A slug of the environment in which to upsert the workflow. + in: query + name: environment + required: true + schema: + type: string + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the WorkflowRequest request under the workflow key. + example: + workflow: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + workflow: + $ref: "#/components/schemas/WorkflowRequest" + required: + - workflow + title: WrappedWorkflowRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + description: OK + summary: Upsert a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.upsert('workflow_key', { + environment: 'environment', + workflow: { + name: 'My Workflow', + steps: [ + { + name: 'Channel 1', + ref: 'channel_1', + template: { markdown_body: 'Hello **{{ recipient.name }}**' }, + type: 'channel', + }, + ], + }, + }); + + console.log(response.workflow); + } + + main(); + /v1/workflows/{workflow_key}/activate: + put: + callbacks: {} + description: > + Activates (or deactivates) a workflow in a given environment. + + + Note: This immediately enables or disables a workflow in a given environment without needing to go + through environment promotion. + operationId: activateWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + example: + status: true + properties: + status: + description: >- + Whether to activate or deactivate the workflow. Set to `true` by default, which will + activate the workflow. + example: true + type: boolean + required: + - status + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + description: OK + summary: Activate a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.activate('workflow_key', { + environment: 'development', + status: true, + }); + + console.log(response.workflow); + } + + main(); + /v1/workflows/{workflow_key}/run: + put: + callbacks: {} + description: Runs the latest version of a committed workflow in a given environment using the params provided. + operationId: runWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/RunWorkflowRequest" + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/RunWorkflowResponse" + description: OK + summary: Run a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.run('workflow_key', { + environment: 'development', + recipients: ['dnedry'], + }); + + console.log(response.workflow_run_id); + } + + main(); + /v1/workflows/{workflow_key}/steps/{step_ref}/preview_template: + post: + callbacks: {} + description: Generates a rendered template for a given channel step in a workflow. + operationId: previewWorkflowTemplate + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The reference key of the channel step in the workflow to preview. + in: path + name: step_ref + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/PreviewWorkflowTemplateRequest" + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/PreviewWorkflowTemplateResponse" + description: OK + summary: Preview a workflow template + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.steps.previewTemplate('step_ref', { + workflow_key: 'workflow_key', + environment: 'development', + recipient: 'dnedry', + }); + + console.log(response.content_type); + } + + main(); + /v1/workflows/{workflow_key}/validate: + put: + callbacks: {} + description: > + Validates a workflow payload without persisting it. Some read-only fields will be empty as they are + generated by the system when persisted. + + + Note: Validating a workflow is only done in the development environment context. + operationId: validateWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the WorkflowRequest request under the workflow key. + example: + workflow: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + workflow: + $ref: "#/components/schemas/WorkflowRequest" + required: + - workflow + title: WrappedWorkflowRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + description: OK + summary: Validate a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.validate('workflow_key', { + environment: 'development', + workflow: { + name: 'My Workflow', + steps: [ + { + name: 'Channel 1', + ref: 'channel_1', + template: { markdown_body: 'Hello **{{ recipient.name }}**' }, + type: 'channel', + }, + ], + }, + }); + + console.log(response.workflow); + } + + main(); +security: + - BearerAuth: [] +servers: + - url: https://control.knock.app + variables: {} +tags: + - description: Resources for managing your Knock account. + name: Accounts + - description: Workflows let you express your cross-channel notification logic. + name: Workflows + - description: Partials allow you to reuse content across templates. + name: Partials + - description: Commits are versioned changes to resources. + name: Commits + - description: Environments are isolated instances of your account that map to your infrastructure. + name: Environments + - description: Translations are per-locale string files that can be used in your templates. + name: Translations + - description: Email layouts wrap your email templates and provide a consistent look and feel. + name: Email layouts + - description: >- + A message type allows you to specify an in-app schema that defines the fields available for your in-app + notifications. + name: Message types diff --git a/data/specs/mapi/stainless.yml b/data/specs/mapi/stainless.yml new file mode 100644 index 000000000..2cf0bdf3b --- /dev/null +++ b/data/specs/mapi/stainless.yml @@ -0,0 +1,186 @@ +# yaml-language-server: $schema=https://app.stainless.com/config.schema.json + +organization: + name: knock + docs: https://docs.knock.app/mapi + contact: support@knock.app +targets: + typescript: + package_name: "@knocklabs/mgmt" + production_repo: null + publish: + npm: false +environments: + production: https://control.knock.app +resources: + $shared: + models: + page_info: "#/components/schemas/PageInfo" + templates: + models: + chat_template: "#/components/schemas/ChatTemplate" + email_template: "#/components/schemas/EmailTemplate" + push_template: "#/components/schemas/PushTemplate" + sms_template: "#/components/schemas/SmsTemplate" + in_app_feed_template: "#/components/schemas/InAppFeedTemplate" + request_template: "#/components/schemas/RequestTemplate" + webhook_template: "#/components/schemas/WebhookTemplate" + email_layouts: + models: + email_layout: "#/components/schemas/EmailLayout" + methods: + list: get /v1/email_layouts + retrieve: get /v1/email_layouts/{email_layout_key} + upsert: put /v1/email_layouts/{email_layout_key} + validate: put /v1/email_layouts/{email_layout_key}/validate + commits: + models: + commit: "#/components/schemas/Commit" + methods: + list: get /v1/commits + commit_all: put /v1/commits + retrieve: get /v1/commits/{id} + promote_all: put /v1/commits/promote + promote_one: put /v1/commits/{id}/promote + partials: + models: + partial: "#/components/schemas/Partial" + methods: + list: get /v1/partials + retrieve: get /v1/partials/{partial_key} + upsert: put /v1/partials/{partial_key} + validate: put /v1/partials/{partial_key}/validate + translations: + models: + translation: "#/components/schemas/Translation" + methods: + list: get /v1/translations + retrieve: get /v1/translations/{locale_code} + upsert: put /v1/translations/{locale_code} + validate: put /v1/translations/{locale_code}/validate + workflows: + models: + condition: "#/components/schemas/Condition" + condition_group: "#/components/schemas/ConditionGroup" + duration: "#/components/schemas/Duration" + send_window: "#/components/schemas/SendWindow" + workflow: "#/components/schemas/Workflow" + workflow_step: "#/components/schemas/WorkflowStep" + workflow_batch_step: "#/components/schemas/WorkflowBatchStep" + workflow_branch_step: "#/components/schemas/WorkflowBranchStep" + workflow_channel_step: "#/components/schemas/WorkflowChannelStep" + workflow_delay_step: "#/components/schemas/WorkflowDelayStep" + workflow_fetch_step: "#/components/schemas/WorkflowFetchStep" + workflow_throttle_step: "#/components/schemas/WorkflowThrottleStep" + workflow_trigger_workflow_step: "#/components/schemas/WorkflowTriggerWorkflowStep" + methods: + list: get /v1/workflows + retrieve: get /v1/workflows/{workflow_key} + upsert: put /v1/workflows/{workflow_key} + activate: put /v1/workflows/{workflow_key}/activate + run: put /v1/workflows/{workflow_key}/run + validate: put /v1/workflows/{workflow_key}/validate + subresources: + steps: + methods: + preview_template: post /v1/workflows/{workflow_key}/steps/{step_ref}/preview_template + message_types: + models: + message_type: "#/components/schemas/MessageType" + message_type_variant: "#/components/schemas/MessageTypeVariant" + message_type_text_field: "#/components/schemas/MessageTypeTextField" + methods: + list: get /v1/message_types + retrieve: get /v1/message_types/{message_type_key} + upsert: put /v1/message_types/{message_type_key} + validate: put /v1/message_types/{message_type_key}/validate + auth: + methods: + verify: get /v1/whoami + api_keys: + methods: + exchange: post /v1/api_keys/exchange + channel_groups: + models: + channel_group: "#/components/schemas/ChannelGroup" + channel_group_rule: "#/components/schemas/ChannelGroupRule" + methods: + list: get /v1/channel_groups + channels: + models: + channel: "#/components/schemas/Channel" + chat_channel_settings: "#/components/schemas/ChatChannelSettings" + email_channel_settings: "#/components/schemas/EmailChannelSettings" + push_channel_settings: "#/components/schemas/PushChannelSettings" + sms_channel_settings: "#/components/schemas/SmsChannelSettings" + in_app_feed_channel_settings: "#/components/schemas/InAppFeedChannelSettings" + methods: + list: get /v1/channels + environments: + models: + environment: "#/components/schemas/Environment" + methods: + list: get /v1/environments + retrieve: get /v1/environments/{environment_slug} + variables: + models: + variable: "#/components/schemas/Variable" + methods: + list: get /v1/variables +settings: + disable_mock_tests: true + license: Apache-2.0 +pagination: + - name: entries_cursor + type: cursor + request: + after: + type: string + x-stainless-pagination-property: + purpose: next_cursor_param + before: + type: string + x-stainless-pagination-property: + purpose: previous_cursor_param + limit: + type: integer + response: + entries: + type: array + items: + type: object + page_info: + type: object + properties: + after: + type: string + x-stainless-pagination-property: + purpose: next_cursor_field +client_settings: + opts: + service_token: + type: string + nullable: false + auth: + security_scheme: BearerAuth + read_env: KNOCK_SERVICE_TOKEN +openapi: + code_samples: + stainless: true +readme: + example_requests: + default: + type: request + endpoint: get /v1/workflows + params: + environment: development + headline: + type: request + endpoint: get /v1/workflows + params: + environment: development + pagination: + type: request + endpoint: get /v1/workflows + params: + environment: development diff --git a/lib/openApiSpec.ts b/lib/openApiSpec.ts new file mode 100644 index 000000000..2df957c84 --- /dev/null +++ b/lib/openApiSpec.ts @@ -0,0 +1,70 @@ +import { dereference } from "@scalar/openapi-parser"; +import deepmerge from "deepmerge"; +import { readFile } from "fs/promises"; +import safeStringify from "safe-stringify"; +import { parse } from "yaml"; + +type StainlessResourceMethod = + | string + | { + type: "http"; + endpoint: string; + positional_params?: string[]; + }; + +type StainlessResource = { + name?: string; + description?: string; + models?: Record