Sha256: 2f54b784f28475ff9afa24b8ae23b9ea84b24b8b78c80de6989af5332ae20961

Contents?: true

Size: 1.27 KB

Versions: 51

Compression:

Stored size: 1.27 KB

Contents

# OpenapiClient::ClientRequest

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **client_secret** | **Array<String>** | The client secret(s). It is an array datatype to allow for rotation of secrets without downtime for your customers  |  |
| **redirect_uris** | **Array<String>** | Indicates the URI to return the user to after authorization is complete, which is the endpoint on your server to receive the authorization_code.  Must be identical to the redirect URI provided in the original link.  Please email me after signup and I will set both your client secret and redirect_uri (required) when you reach out.  |  |
| **name** | **String** | Name of your app that shows up in the Affix Connect application  |  |
| **webhook_uri** | **String** | If enabled, webhooks will be sent to this endpoint  | [optional] |

## Example

```ruby
require 'openapi_client'

instance = OpenapiClient::ClientRequest.new(
  client_secret: ["ffffffff-ffffffff-ffffffff-ffffffff","aaaaaaaa-aaaaaaaa-aaaaaaaa-aaaaaaaa"],
  redirect_uris: ["https://app.your-company.com","https://dev.app.your-company.com"],
  name: Your App,
  webhook_uri: https://webhooks.your-company.com/aaaaaaaa-aaaaaaaa-aaaaaaaa-aaaaaaaa
)
```

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
affixapi-1.1.40 docs/ClientRequest.md
affixapi-1.1.39 docs/ClientRequest.md
affixapi-1.1.38 docs/ClientRequest.md
affixapi-1.1.37 docs/ClientRequest.md
affixapi-1.1.36 docs/ClientRequest.md
affixapi-1.1.35 docs/ClientRequest.md
affixapi-1.1.34 docs/ClientRequest.md
affixapi-0.0.4 docs/ClientRequest.md
affixapi-0.0.3 docs/ClientRequest.md
affixapi-0.0.2 docs/ClientRequest.md
affixapi-0.0.1 docs/ClientRequest.md