# HttpPushCallbackUpdate

Configuration information about an HTTP target callback

## Example Usage

```typescript
import { HttpPushCallbackUpdate } from "@apexfintechsolutions/ascend-sdk/models/components";

let value: HttpPushCallbackUpdate = {};
```

## Fields

| Field                                                                                                                                                                                | Type                                                                                                                                                                                 | Required                                                                                                                                                                             | Description                                                                                                                                                                          | Example                                                                                                                                                                              |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `clientSecret`                                                                                                                                                                       | *string*                                                                                                                                                                             | :heavy_minus_sign:                                                                                                                                                                   | A string that will be used to generate a signature for each event push request; This value cannot be more than 64KiB                                                                 | mysecretkey                                                                                                                                                                          |
| `timeoutSeconds`                                                                                                                                                                     | *number*                                                                                                                                                                             | :heavy_minus_sign:                                                                                                                                                                   | The maximum amount of time, in seconds, the service will wait for an acknowledgement of a delivery; If a value of 0 or no value is specified, the timeout will default to 10 seconds | 30                                                                                                                                                                                   |
| `url`                                                                                                                                                                                | *string*                                                                                                                                                                             | :heavy_minus_sign:                                                                                                                                                                   | The URL address of the client HTTP server that will receive the events via POST; URLs must be in the form of https://{domain}[/{path}]                                               | https://webhook.example.com                                                                                                                                                          |