Categorygithub.com/hookdeck/hookdeck-go-sdk
modulepackage
0.5.0
Repository: https://github.com/hookdeck/hookdeck-go-sdk.git
Documentation: pkg.go.dev

# README

HookDeck Go Library

The HookDeck Go library provides convenient access to the HookDeck API from Go.

fern shield go shield

Requirements

This module requires Go version >= 1.19.

Installation

Run the following command to use the HookDeck Go library in your Go module:

go get github.com/hookdeck/hookdeck-go-sdk

This module requires Go version >= 1.19.

Instantiation

import (
  hookdeck "github.com/hookdeck/hookdeck-go-sdk"
  hookdeckclient "github.com/hookdeck/hookdeck-go-sdk/client"
)

client := hookdeckclient.NewClient(
  hookdeckclient.ClientWithAuthToken("<YOUR_AUTH_TOKEN>"),
)

Usage

package main

import (
  "context"
  "fmt"

  hookdeck "github.com/hookdeck/hookdeck-go-sdk"
  hookdeckclient "github.com/hookdeck/hookdeck-go-sdk/client"
)

client := hookdeckclient.NewClient(
  hookdeckclient.ClientWithAuthToken("<YOUR_API_KEY>"),
)
attempts, err := client.Attempts().GetAttempts(
  context.TODO(),
  &hookdeck.GetAttemptsRequest{
    EventId: hookdeck.String("<EVENT_ID>"),
  },
)
if err != nil {
  return err
}
fmt.Printf("Got %d attempts\n", *attempts.Count)

Timeouts

Setting a timeout for each individual request is as simple as using the standard context library. Setting a one second timeout for an individual API call looks like the following:

ctx, cancel := context.WithTimeout(context.TODO(), time.Second)
defer cancel()
attempts, err := client.Attempts().GetAttempts(
  context.TODO(),
  &hookdeck.GetAttemptsRequest{
    EventId: hookdeck.String("<EVENT_ID>"),
  },
)
if err != nil {
  return err
}

Client Options

A variety of client options are included to adapt the behavior of the library, which includes configuring authorization tokens to be sent on every request, or providing your own instrumented *http.Client. Both of these options are shown below:

client := hookdeckclient.NewClient(
  hookdeckclient.ClientWithAuthToken("<YOUR_AUTH_TOKEN>"),
  hookdeckclient.ClientWithHTTPClient(
    &http.Client{
      Timeout: 5 * time.Second,
    },
  ),
)

Providing your own *http.Client is recommended. Otherwise, the http.DefaultClient will be used, and your client will wait indefinitely for a response (unless the per-request, context-based timeout is used).

Errors

Structured error types are returned from API calls that return non-success status codes. For example, you can check if the error was due to a bad request (i.e. status code 400) with the following:

attempts, err := client.Attempts().GetAttempts(
  context.TODO(),
  &hookdeck.GetAttemptsRequest{
    EventId: hookdeck.String("<EVENT_ID>"),
  },
)
if err != nil {
  if badRequestErr, ok := err.(*hookdeck.BadRequestError);
    // Do something with the bad request ...
  }
  return err
}

These errors are also compatible with the errors.Is and errors.As APIs, so you can access the error like so:

attempts, err := client.Attempts().GetAttempts(
  context.TODO(),
  &hookdeck.GetAttemptsRequest{
    EventId: hookdeck.String("<EVENT_ID>"),
  },
)
if err != nil {
  var badRequestErr *hookdeck.BadRequestError
  if errors.As(err, badRequestErr); ok {
    // Do something with the bad request ...
  }
  return err
}

If you'd like to wrap the errors with additional information and still retain the ability to access the type with errors.Is and errors.As, you can use the %w directive:

attempts, err := client.Attempts().GetAttempts(
  context.TODO(),
  &hookdeck.GetAttemptsRequest{
    EventId: hookdeck.String("<EVENT_ID>"),
  },
)
if err != nil {
  return fmt.Errorf("failed to get attempts: %w", err)
}

Beta status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version in your go.mod file. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Functions

Bool returns a pointer to the given bool value.
Byte returns a pointer to the given byte value.
Complex128 returns a pointer to the given complex128 value.
Complex64 returns a pointer to the given complex64 value.
Float32 returns a pointer to the given float32 value.
Float64 returns a pointer to the given float64 value.
Int returns a pointer to the given int value.
Int16 returns a pointer to the given int16 value.
Int32 returns a pointer to the given int32 value.
Int64 returns a pointer to the given int64 value.
Int8 returns a pointer to the given int8 value.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Null initializes an optional field that will be sent as an explicit null value.
Optional initializes an optional field.
OptionalOrNull initializes an optional field, setting the value to an explicit null if the value is nil.
Rune returns a pointer to the given rune value.
String returns a pointer to the given string value.
Time returns a pointer to the given time.Time value.
Uint returns a pointer to the given uint value.
Uint16 returns a pointer to the given uint16 value.
Uint32 returns a pointer to the given uint32 value.
Uint64 returns a pointer to the given uint64 value.
Uint8 returns a pointer to the given uint8 value.
Uintptr returns a pointer to the given uintptr value.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

Environments defines all of the API environments.

# Structs

No description provided by the author
Error response model.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
API Key.
AWS Signature.
Basic Auth.
Bearer Token.
Custom Signature.
Hookdeck Signature.
OAuth2 Authorization Code.
OAuth2 Client Credentials.
Bad Request.
No description provided by the author
No description provided by the author
No description provided by the author
Query object to filter records.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Destination input object.
Source input object.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Destination input object.
Source input object.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Delivery issue.
Keys used as the aggregation keys a 'delivery' type issue.
Delivery issue data.
Reference to the event and attempt an issue is being created for.
Delivery issue.
Associated [Destination](#destination-object) object.
API key config for the destination's auth method.
AWS Signature config for the destination's auth method.
Basic auth config for the destination's auth method.
Bearer token config for the destination's auth method.
Config for the destination's auth method.
Custom signature config for the destination's auth method.
OAuth2 Authorization Code config for the destination's auth method.
OAuth2 Client Credentials config for the destination's auth method.
Empty config for the destination's auth method.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Response body from the destination.
No description provided by the author
No description provided by the author
Filter properties for the events to be included in the bulk retry.
Filter by number of attempts.
No description provided by the author
URL Encoded string of the JSON to match to the data body.
No description provided by the author
No description provided by the author
Filter by CLI IDs.
No description provided by the author
No description provided by the author
Filter by `created_at` date using a date operator.
No description provided by the author
Filter by destination IDs.
Filter by error code code.
No description provided by the author
URL Encoded string of the JSON to match to the data headers.
No description provided by the author
Filter by event IDs.
No description provided by the author
Filter by `last_attempt_at` date using a date operator.
No description provided by the author
URL Encoded string of the JSON to match to the parsed query (JSON representation of the query).
No description provided by the author
Filter by HTTP response status code.
No description provided by the author
Filter by source IDs.
Lifecyle status of the event.
Filter by `successful_at` date using a date operator.
No description provided by the author
Filter by webhook connection IDs.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
JSON using our filter syntax to filter on request headers.
Gone.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Filter by the bulk retry ignored event query object.
The cause of the ignored event.
Connection ID of the ignored event.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Decrypted Key/Value object of the associated configuration for that provider.
No description provided by the author
No description provided by the author
Issue.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Configurations for a 'Backpressure' issue trigger.
A pattern to match on the destination name or array of destination IDs.
Notification channels object for the specific channel type.
No description provided by the author
Configuration object for the specific issue type selected.
Configurations for a 'delivery' issue trigger.
A pattern to match on the connection name or array of connection IDs.
Email channel for an issue trigger.
Integration channel for an issue trigger.
No description provided by the author
No description provided by the author
Configuration object for the specific issue type selected.
Slack channel for an issue trigger.
Configurations for a 'Transformation' issue trigger.
A pattern to match on the transformation name or array of transformation IDs.
No description provided by the author
Configuration object for the specific issue type selected.
No description provided by the author
Configuration object for the specific issue type selected.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Not Found.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Filter properties for the events to be included in the bulk retry, use query parameters of [Requests](#requests).
URL Encoded string of the JSON to match to the data body.
No description provided by the author
No description provided by the author
Filter by count of events.
No description provided by the author
URL Encoded string of the JSON to match to the data headers.
No description provided by the author
Filter by requests IDs.
Filter by count of ignored events.
No description provided by the author
Filter by event ingested date.
No description provided by the author
URL Encoded string of the JSON to match to the parsed query (JSON representation of the query).
No description provided by the author
Filter by rejection cause.
Filter by source IDs.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Request data.
JSON or string representation of the body.
No description provided by the author
JSON representation of the headers.
JSON representation of query params.
No description provided by the author
Associated [Source](#source-object) object.
No description provided by the author
Custom response object.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Transformation issue.
Keys used as the aggregation keys a 'transformation' type issue.
Transformation issue data.
Reference to the event request transformation an issue is being created for.
Transformation issue.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Request input to use for the transformation execution.
Body of the request.
No description provided by the author
JSON representation of the query params.
No description provided by the author
No description provided by the author
No description provided by the author
You can optionally define a new transformation while creating a transform rule.
Unprocessable Entity.
No description provided by the author
No description provided by the author
The verification configs for 3dEye.
No description provided by the author
The verification configs for Adyen.
No description provided by the author
The verification configs for Akeneo.
No description provided by the author
The verification configs for API Key.
No description provided by the author
The verification configs for AWS SNS.
No description provided by the author
The verification configs for Basic Auth.
No description provided by the author
The verification configs for Bondsmith.
No description provided by the author
The verification configs for Cloud Signal.
No description provided by the author
The verification configs for Commercelayer.
The verification configs for the specified verification type.
No description provided by the author
The verification configs for Courier.
No description provided by the author
The verification configs for Discord.
No description provided by the author
The verification configs for Ebay.
No description provided by the author
The verification configs for Enode.
No description provided by the author
The verification configs for Favro.
No description provided by the author
The verification configs for Fiserv.
No description provided by the author
The verification configs for FrontApp.
No description provided by the author
The verification configs for GitHub.
No description provided by the author
The verification configs for GitLab.
No description provided by the author
The verification configs for HMAC.
No description provided by the author
The verification configs for Hubspot.
No description provided by the author
The verification configs for Linear.
No description provided by the author
The verification configs for Mailchimp.
No description provided by the author
The verification configs for Mailgun.
No description provided by the author
The verification configs for NMI Payment Gateway.
No description provided by the author
The verification configs for Orb.
No description provided by the author
The verification configs for Oura.
No description provided by the author
The verification configs for Paddle.
No description provided by the author
The verification configs for Persona.
No description provided by the author
The verification configs for Pipedrive.
No description provided by the author
The verification configs for Postmark.
No description provided by the author
The verification configs for Property Finder.
No description provided by the author
The verification configs for Pylon.
No description provided by the author
The verification configs for Razorpay.
No description provided by the author
The verification configs for Recharge.
No description provided by the author
The verification configs for Repay.
No description provided by the author
The verification configs for Sanity.
No description provided by the author
The verification configs for SendGrid.
No description provided by the author
The verification configs for Shopify.
No description provided by the author
The verification configs for Shopline.
No description provided by the author
The verification configs for Slack.
No description provided by the author
The verification configs for SolidGate.
No description provided by the author
The verification configs for Square.
No description provided by the author
The verification configs for Stripe.
No description provided by the author
The verification configs for Svix.
No description provided by the author
The verification configs for Synctera.
No description provided by the author
The verification configs for Tebex.
No description provided by the author
The verification configs for Telnyx.
No description provided by the author
The verification configs for TokenIO.
No description provided by the author
The verification configs for Trello.
No description provided by the author
The verification configs for Twilio.
No description provided by the author
The verification configs for Twitch.
No description provided by the author
The verification configs for Twitter.
No description provided by the author
The verification configs for Typeform.
No description provided by the author
The verification configs for Vercel.
No description provided by the author
The verification configs for Vercel Log Drains.
No description provided by the author
The verification configs for Wix.
No description provided by the author
The verification configs for WooCommerce.
No description provided by the author
The verification configs for WorkOS.
No description provided by the author
The verification configs for Xero.
No description provided by the author
The verification configs for Zoom.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

Error code of the delivery attempt.
No description provided by the author
No description provided by the author
No description provided by the author
Attempt status.
How the attempt was triggered.
No description provided by the author
No description provided by the author
Bookmark target.
Period to rate limit attempts.
No description provided by the author
No description provided by the author
Period to rate limit attempts.
No description provided by the author
Whether the API key should be sent as a header or a query parameter.
Basic (default) or Bearer Authentication.
Period to rate limit attempts.
HTTP method used on requests sent to the destination, overrides the method used on requests sent to the source.
No description provided by the author
No description provided by the author
Period to rate limit attempts.
Period to rate limit attempts.
Period to rate limit attempts.
No description provided by the author
HTTP method used to deliver the attempt.
No description provided by the author
No description provided by the author
Sort direction.
Sort key.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Issue status.
The minimum delay (backpressure) to open the issue for min of 1 minute (60000) and max of 1 day (86400000).
No description provided by the author
No description provided by the author
The strategy uses to open the issue.
Issue type.
New status.
No description provided by the author
No description provided by the author
Filter by status.
No description provided by the author
No description provided by the author
The priority attributed to the request when received.
Sort direction.
Sort key.
No description provided by the author
No description provided by the author
Sort direction.
Sort key.
Filter by status.
No description provided by the author
Algorithm to use when calculating delay between retries.
No description provided by the author
List of allowed HTTP methods.
No description provided by the author
Content type of the custom response.
No description provided by the author
No description provided by the author
Supported topics.
The minimum log level to open the issue on.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author