Sha256: 2c665e15614b6b3a69d8347044dc23a0e1aba94290847be89109ccd95083a5e9

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 KB

Contents

# TalonOne::WebhookLogEntry

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **String** | UUID reference of the webhook request. | 
**integration_request_uuid** | **String** | UUID reference of the integration request linked to this webhook request. | 
**webhook_id** | **Integer** | ID of the webhook that triggered the request. | 
**application_id** | **Integer** | ID of the application that triggered the webhook. | [optional] 
**url** | **String** | The target URL of the request. | 
**request** | **String** | Request message | 
**response** | **String** | Response message | [optional] 
**status** | **Integer** | HTTP status code of response. | [optional] 
**request_time** | **DateTime** | Timestamp of request | 
**response_time** | **DateTime** | Timestamp of response | [optional] 

## Code Sample

```ruby
require 'TalonOne'

instance = TalonOne::WebhookLogEntry.new(id: 2,
                                 integration_request_uuid: 472075793,
                                 webhook_id: 5,
                                 application_id: 12,
                                 url: www.my-company.com/my-endpoint-name,
                                 request: {
  mydata: "somevalue"
}
,
                                 response: ,
                                 status: 204,
                                 request_time: 2021-07-20T22:00Z,
                                 response_time: 2021-07-20T22:00:50Z)
```


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
talon_one-7.0.0 docs/WebhookLogEntry.md