BoldSign Template API

The Template API from BoldSign — 16 operation(s) for template.

OpenAPI Specification

boldsign-template-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: BoldSign Branding Template API
  version: '1'
  description: BoldSign eSignature REST API for sending documents for electronic signature, managing reusable templates, tracking envelope status, embedding signing and requesting workflows into third-party applications. Supports API key and OAuth 2.0 authentication. Regional endpoints available for US, EU, CA, and AU.
  contact:
    name: BoldSign Support
    url: https://developers.boldsign.com/
    email: support@boldsign.com
  license:
    name: Proprietary
    url: https://boldsign.com/terms-of-use/
  termsOfService: https://boldsign.com/terms-of-use/
servers:
- url: https://api.boldsign.com
  description: US production
- url: https://eu.boldsign.com
  description: EU production
- url: https://ca.boldsign.com
  description: CA production
- url: https://au.boldsign.com
  description: AU production
security:
- Bearer: []
- X-API-KEY: []
tags:
- name: Template
paths:
  /v1/template/list:
    get:
      tags:
      - Template
      summary: List all the templates.
      operationId: ListTemplates
      parameters:
      - name: TemplateType
        in: query
        schema:
          title: TemplateType
          enum:
          - mytemplates
          - sharedtemplate
          - all
          type: string
      - name: PageSize
        in: query
        schema:
          title: Int32
          type: integer
          format: int32
          default: 10
      - name: Page
        in: query
        required: true
        schema:
          title: Int32
          type: integer
          format: int32
          default: 1
      - name: SearchKey
        in: query
        schema:
          title: String
          type: string
      - name: OnBehalfOf
        in: query
        description: The sender identity's email used to filter the templates returned in the API. The API will return templates that were sent on behalf of the specified email address.
        schema:
          title: List`1
          type: array
          items:
            title: String
            type: string
      - name: CreatedBy
        in: query
        description: The templates can be listed by the creator of the template.
        schema:
          title: List`1
          type: array
          items:
            title: String
            type: string
      - name: TemplateLabels
        in: query
        description: Labels of the template.
        schema:
          title: List`1
          type: array
          items:
            title: String
            type: string
      - name: StartDate
        in: query
        description: Start date of the template
        schema:
          title: Nullable`1
          type: string
          format: date-time
      - name: EndDate
        in: query
        description: End date of the template
        schema:
          title: Nullable`1
          type: string
          format: date-time
      - name: BrandIds
        in: query
        description: BrandId(s) of the template.
        schema:
          title: List`1
          type: array
          items:
            title: String
            type: string
      - name: SharedWithTeamId
        in: query
        description: The templates can be listed by the shared teams.
        schema:
          title: List`1
          type: array
          items:
            title: String
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplateRecords'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/create:
    post:
      tags:
      - Template
      summary: Creates a new template.
      operationId: CreateTemplate
      requestBody:
        description: The create template request body.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateTemplateRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreateTemplateRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CreateTemplateRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplateCreated'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/createEmbeddedTemplateUrl:
    post:
      tags:
      - Template
      summary: Generates a create URL to embeds template create process into your application.
      operationId: CreateEmbeddedTemplateUrl
      requestBody:
        description: The create embedded template request body.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmbeddedCreateTemplateRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/EmbeddedCreateTemplateRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/EmbeddedCreateTemplateRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmbeddedTemplateCreated'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/getEmbeddedTemplateEditUrl:
    post:
      tags:
      - Template
      summary: Generates a edit URL to embeds template edit process into your application.
      operationId: getEmbeddedTemplateEditUrl
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      requestBody:
        description: The embedded edit template request body.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmbeddedTemplateEditRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/EmbeddedTemplateEditRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/EmbeddedTemplateEditRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmbeddedTemplateEdited'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/delete:
    delete:
      tags:
      - Template
      summary: Deletes a template.
      operationId: DeleteTemplate
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      - name: onBehalfOf
        in: query
        schema:
          title: String
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/send:
    post:
      tags:
      - Template
      summary: Send a document for signature using a Template.
      operationId: SendUsingTemplate
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      requestBody:
        description: The send template details as JSON.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendForSignFromTemplateForm'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SendForSignFromTemplateForm'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SendForSignFromTemplateForm'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentCreated'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/mergeAndSend:
    post:
      tags:
      - Template
      summary: Send the document by merging multiple templates.
      operationId: MergeAndSend
      requestBody:
        description: The merge and send details as JSON.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MergeAndSendForSignForm'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/MergeAndSendForSignForm'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MergeAndSendForSignForm'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentCreated'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/createEmbeddedRequestUrl:
    post:
      tags:
      - Template
      summary: Generates a send URL using a template which embeds document sending process into your application.
      operationId: CreateEmbeddedRequestUrlTemplate
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      requestBody:
        description: Embedded send template json request.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmbeddedSendTemplateFormRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/EmbeddedSendTemplateFormRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/EmbeddedSendTemplateFormRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmbeddedSendCreated'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/mergeCreateEmbeddedRequestUrl:
    post:
      tags:
      - Template
      summary: Generates a merge request URL using a template that combines document merging and sending processes into your application.
      operationId: MergeCreateEmbeddedRequestUrlTemplate
      requestBody:
        description: Embedded merge and send template json request.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmbeddedMergeTemplateFormRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/EmbeddedMergeTemplateFormRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/EmbeddedMergeTemplateFormRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmbeddedSendCreated'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/properties:
    get:
      tags:
      - Template
      summary: Get summary of the template.
      operationId: GetTemplateProperties
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplateProperties'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
      x-operation-name: GetProperties
  /v1/template/download:
    get:
      tags:
      - Template
      summary: Download the template.
      operationId: Download
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      - name: onBehalfOf
        in: query
        schema:
          title: String
          type: string
      - name: includeFormFieldValues
        in: query
        schema:
          title: Boolean
          type: boolean
          default: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                title: FileStreamResult
                type: string
                format: binary
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/edit:
    put:
      tags:
      - Template
      summary: Edit and updates an existing template.
      operationId: EditTemplate
      parameters:
      - name: templateId
        in: query
        required: true
        schema:
          title: String
          type: string
      requestBody:
        description: The edit template request body.
        content:
          application/json;odata.metadata=minimal;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=minimal;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=full;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.metadata=none;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          text/plain:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EditTemplateRequest'
        required: true
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
  /v1/template/addTags:
    patch:
      tags:
      - Template
      summary: Add the Tags in Templates.
      operationId: AddTemplateTag
      requestBody:
        description: ContainsTemplateId and Label Names for AddingTags.
        content:
          application/json;odata.metadata=minimal;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.streaming=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.streaming=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=minimal;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=full;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.metadata=none;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.streaming=true;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.streaming=true;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.streaming=false;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;odata.streaming=false;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;IEEE754Compatible=false:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json;IEEE754Compatible=true:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/xml:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          text/plain:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          text/json:
            schema:
              $ref: '#/components/schemas/TemplateTag'
          application/*+json:
            schema:
              $ref: '#/components/schemas/TemplateTag'
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            application/json;odata.metadata=minimal;odata.streaming=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;odata.streaming=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;odata.streaming=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;odata.streaming=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=none;odata.streaming=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=none;odata.streaming=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=none:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.streaming=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.streaming=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;IEEE754Compatible=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=minimal;IEEE754Compatible=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true:
              schema:
                $ref: '#/components/schemas/ErrorResult'
            application/json;odata.metadata=full;IEEE754C

# --- truncated at 32 KB (159 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/boldsign/refs/heads/main/openapi/boldsign-template-api-openapi.yml