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

# Obtain a pre-signed URL

> POST request to generate a presigned post 



## OpenAPI

````yaml /api-reference/job-management.json post /job/getPresignedPost
openapi: 3.0.1
info:
  title: Job Management API
  description: Jobs - API Documentation
  contact:
    url: http://www.masternaut.com
  version: 1.0.0
servers:
  - url: https://ontime-api.masternautconnect.com/jobs
security: []
paths:
  /job/getPresignedPost:
    post:
      tags:
        - /job
      summary: Obtain a pre-signed URL
      description: 'POST request to generate a presigned post '
      operationId: getPresignedPost
      parameters:
        - name: x-connect-token
          in: header
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetPresignedPostInputDto'
        required: true
      responses:
        '200':
          description: getPresignedPost 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresignedPostDto'
components:
  schemas:
    GetPresignedPostInputDto:
      type: object
      properties:
        jobId:
          type: string
        resource:
          type: string
    PresignedPostDto:
      type: object
      properties:
        url:
          type: string
          description: Url needed to upload file.
        fields:
          type: array
          description: Information required to copy into the body of the Post call
          items:
            $ref: '#/components/schemas/PresignedPostFieldsDto'
    PresignedPostFieldsDto:
      type: object
      properties:
        key:
          type: string
        value:
          type: string

````