# RequestConfig

**Kind:** Interface

**Source:** [`atloria-monorepo/packages/api-client/src/types/config.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/api-client/src/types/config.ts#L58)

Request configuration for individual API calls

## Properties

| Property | Type |
|---|---|
| `method` | `'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'` |
| `path` | `string` |
| `params` | `Record<string, string | number | boolean | undefined>` |
| `body` | `unknown` |
| `headers` | `Record<string, string>` |
| `signal` | `AbortSignal` |
| `skipRetry` | `boolean` |
| `skipAuth` | `boolean` |
