> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tolmo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Proxy a raw AWS request

> Re-sign and forward raw AWS HTTP requests from the CLI local proxy



## OpenAPI

````yaml /api-reference/openapi.json patch /api/v1/orgs/{orgSlug}/connected-services/provider/aws/raw-proxy/{*}
openapi: 3.0.3
info:
  title: Tolmo API
  version: 1.0.0
  description: >-
    The Tolmo REST API. Every endpoint is scoped to one organization and
    authenticated with an API token.
servers:
  - url: https://api.tolmo.com
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v1/orgs/{orgSlug}/connected-services/provider/aws/raw-proxy/{*}:
    patch:
      tags:
        - connected-services
      summary: Proxy a raw AWS request
      description: Re-sign and forward raw AWS HTTP requests from the CLI local proxy
      operationId: awsRawProxy
      parameters:
        - schema:
            type: string
          in: path
          name: orgSlug
          required: true
        - schema:
            type: string
          in: path
          name: '*'
          required: true
        - schema:
            type: string
          in: header
          name: x-aws-host
          required: false
        - schema:
            type: string
          in: header
          name: x-aws-service
          required: false
        - schema:
            type: string
          in: header
          name: x-aws-region
          required: false
        - schema:
            type: string
          in: header
          name: x-repo1-integration-id
          required: false
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Tolmo API token, sent as `Authorization: Bearer <token>`. Either a
        user token (`usr_tok.*`, minted by `tolmo auth login`, scoped to your
        own permissions) or an org API token created in the Tolmo app, for CI
        and automation.

````