[I] ApiKeyAuth
An API key is a token that a client provides when making API calls. The key can be sent in the query string:
GET /something?api_key=abcdef12345or as a request header
GET /something HTTP/1.1X-API-Key: abcdef12345or as a cookie
GET /something HTTP/1.1Cookie: X-API-KEY=abcdef12345Extends
Section titled “Extends”Type Parameters
Section titled “Type Parameters”| Type Parameter | 
|---|
| TLocationextendsApiKeyLocation | 
| TNameextendsstring | 
Properties
Section titled “Properties”| Property | Modifier | Type | Description | Inherited from | 
|---|---|---|---|---|
| description? | public | string | Optional description. | HttpAuthBase.description | 
| id | public | string | Id of the authentication scheme. | HttpAuthBase.id | 
| in | public | TLocation | - | - | 
| model | readonly | Model | Model that defined the authentication | HttpAuthBase.model | 
| name | public | TName | - | - | 
| type | public | "apiKey" | - | - |