> For the complete documentation index, see [llms.txt](https://docs.telm.ai/telmai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.telm.ai/telmai/upload-data-api/redshift-request-data.md).

# RedShift Request data

### Request Body for Red Shift

```
{
     "type":string,
     "id_attribute": string,
     "payload": {
         "endpoint_prefix": string,
         "database": string,
         "schema": string,
         "table": string,
         "security": {
             "user": string,
             "password": string
         }
         "read_options": {
           "separator": string
         }
     }
 }
```

| Field            | Type   | Value                                                                                                                                 |
| ---------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------- |
| type             | string | Required. "REDSHIFT"                                                                                                                  |
| id\_attribute    | string | Optional. Name of the column in data that represents the identifier of the row. Read more [here](broken://pages/-MkctvuxvvtTvQH_pk0j) |
| endpoint\_prefix | string | Required. Name of the endpoint\_prefix                                                                                                |
| database         | string | Required. Name of database                                                                                                            |
| schema           | string | Optional. Name of schema                                                                                                              |
| table            | string | Required. Name of table                                                                                                               |
| user             | string | Required. User name                                                                                                                   |
| password         | string | Required. Password                                                                                                                    |
