# Plaid::ProcessorAuthGetRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **client_id** | **String** | Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body. | [optional] | | **secret** | **String** | Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body. | [optional] | | **processor_token** | **String** | The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>` | | ## Example ```ruby require 'plaid' instance = Plaid::ProcessorAuthGetRequest.new( client_id: null, secret: null, processor_token: null ) ```