> ## 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 schema utils signed url

> Retrieve a signed URL for uploading a schema specification




## OpenAPI

````yaml get /organisations/{organisationId}/schema-utils/{schemaType}/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}/schema-utils/{schemaType}/signed-url:
    get:
      description: |
        Retrieve a signed URL for uploading a schema specification
      operationId: GetSchemaSignedURL
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
        - $ref: '#/components/parameters/SchemaType'
      responses:
        '200':
          $ref: '#/components/responses/SchemaSignedURLResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  parameters:
    SchemaType:
      name: schemaType
      description: >
        SchemaType is the type of schema which an App implements. The only
        supported values are currently "openapi", but

        is planned to be extended to include gRPC, GraphQL and SOAP.
      in: path
      required: true
      schema:
        type: string
  responses:
    SchemaSignedURLResponse:
      description: >-
        SignedURLResponse contains a URL which can be used to upload a file to
        object storage.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SchemaSignedURLResponseBody'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    SchemaSignedURLResponseBody:
      description: >
        SchemaSignedURLResponseBody is the response to allow user-agents upload
        a schema to our internal storage and

        provide a URL for use when creating the associated App.
      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 schema. This is not publicly accessible and
            is to be used when creating an App.
          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

````