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

# Get organisations signed url

> Retrieve a signed URL for uploading assets




## OpenAPI

````yaml get /organisations/{organisationId}/signed-url
openapi: 3.0.3
info:
  title: Switchboard API
  description: >-
    The Switchboard API provides users the ability to manage their Apps,
    Integrations and Workflows
  version: 0.0.1-alpha.0
servers:
  - url: https://platform.versori.com/api/switchboard/v1alpha1/
    description: Production server
  - url: http://localhost:8080/v1alpha1/
    description: Localhost
security:
  - apiKey: []
paths:
  /organisations/{organisationId}/signed-url:
    get:
      description: |
        Retrieve a signed URL for uploading assets
      operationId: GetSignedURL
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
      responses:
        '200':
          $ref: '#/components/responses/SignedURLResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    SignedURLResponse:
      description: >-
        SignedURLResponse contains a URL which can be used to upload a file to
        object storage.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SignedURLResponseBody'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    SignedURLResponseBody:
      description: >
        SignedURLResponseBody is the response to allow user-agents to upload
        assets to our internal storage.
      type: object
      properties:
        uploadURL:
          description: >
            The URL used to upload the object, this includes parameters
            containing the signature of the ServiceAccount

            which authorised the upload
          type: string
        url:
          description: |
            The URL to identify the asset.
          type: string
      required:
        - uploadURL
        - url
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````