# Submit Request Assets

> Submit assets for a specific request. - If you don't know what this is, you probably don't need this.

`POST /v1/request/{requestId}/assets/{assetId}`

import EUAPIWarning from "/snippets/eu-api-warning.mdx";

<EUAPIWarning />

If you don't know what this is, you probably don't need this.

## OpenAPI

````yaml swagger.json post /v1/request/{requestId}/assets/{assetId}
openapi: 3.0.0
info:
  title: helicone-api
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
  - url: https://api.helicone.ai/
  - url: http://localhost:8585/
paths:
  /v1/request/{requestId}/assets/{assetId}:
    post:
      operationId: GetRequestAssetById
      responses:
        "200":
          description: Ok
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Result_HeliconeRequestAsset.string_"
      tags:
        - Request
      security:
        - api_key: []
      parameters:
        - in: path
          name: requestId
          required: true
          schema:
            type: string
        - in: path
          name: assetId
          required: true
          schema:
            type: string
components:
  schemas:
    ResultError_string_:
      properties:
        data:
          type: number
          enum:
            - null
          nullable: true
        error:
          type: string
      required:
        - data
        - error
      type: object
      additionalProperties: false
    HeliconeRequestAsset:
      properties:
        assetUrl:
          type: string
      required:
        - assetUrl
      type: object
      additionalProperties: false
    ResultSuccess_HeliconeRequestAsset_:
      properties:
        data:
          $ref: "#/components/schemas/HeliconeRequestAsset"
        error:
          type: number
          enum:
            - null
          nullable: true
      required:
        - data
        - error
      type: object
      additionalProperties: false
    Result_HeliconeRequestAsset.string_:
      anyOf:
        - $ref: "#/components/schemas/ResultSuccess_HeliconeRequestAsset_"
        - $ref: "#/components/schemas/ResultError_string_"
````
